From 0b83432bf36743df31e8280d0d5bb50516ac8dc9 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 27 Apr 2014 15:08:21 +0200 Subject: [PATCH 01/30] better logger format, some comments --- include/session.php | 2 ++ include/template_processor.php | 5 +++++ include/text.php | 33 +++++++++++++++++++++++---------- 3 files changed, 30 insertions(+), 10 deletions(-) diff --git a/include/session.php b/include/session.php index df3871bd78..6632b7e89a 100644 --- a/include/session.php +++ b/include/session.php @@ -19,6 +19,8 @@ function ref_session_read ($id) { if(count($r)) { $session_exists = true; return $r[0]['data']; + } else { + logger("no data for session $id", LOGGER_TRACE); } return ''; }} diff --git a/include/template_processor.php b/include/template_processor.php index 49d37488f9..27271e2edb 100644 --- a/include/template_processor.php +++ b/include/template_processor.php @@ -1,4 +1,9 @@ replace) -// returns substituted string. -// WARNING: this is pretty basic, and doesn't properly handle search strings that are substrings of each other. -// For instance if 'test' => "foo" and 'testing' => "bar", testing could become either bar or fooing, -// depending on the order in which they were declared in the array. - require_once("include/template_processor.php"); require_once("include/friendica_smarty.php"); @@ -661,6 +653,9 @@ function attribute_contains($attr,$s) { }} if(! function_exists('logger')) { +/* setup int->string log level map */ +$LOGGER_LEVELS = array(); + /** * log levels: * LOGGER_NORMAL (default) @@ -678,9 +673,16 @@ function logger($msg,$level = 0) { // turn off logger in install mode global $a; global $db; - + global $LOGGER_LEVELS; + if(($a->module == 'install') || (! ($db && $db->connected))) return; + if (count($LOGGER_LEVEL)==0){ + foreach (get_defined_constants() as $k=>$v){ + if (substr($k,0,7)=="LOGGER_") $LOGGER_LEVELS[$v] = substr($k,7,7); + } + } + $debugging = get_config('system','debugging'); $loglevel = intval(get_config('system','loglevel')); $logfile = get_config('system','logfile'); @@ -688,8 +690,19 @@ function logger($msg,$level = 0) { if((! $debugging) || (! $logfile) || ($level > $loglevel)) return; + $callers = debug_backtrace(); + $logline = sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n", + datetime_convert(), + session_id(), + $LOGGER_LEVELS[$level], + basename($callers[0]['file']), + $callers[0]['line'], + $callers[1]['function'], + $msg + ); + $stamp1 = microtime(true); - @file_put_contents($logfile, datetime_convert() . ':' . session_id() . ' ' . $msg . "\n", FILE_APPEND); + @file_put_contents($logfile, $logline, FILE_APPEND); $a->save_timestamp($stamp1, "file"); return; }} From 487d5633660f61f357d320809a6d5d5f48b3a599 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 27 Apr 2014 15:13:05 +0200 Subject: [PATCH 02/30] add people in thread in autocomplete (issue #936) issues: tested only in quattro theme contacts in thread will appear twice in autocomplete popup --- include/acl_selectors.php | 41 ++++++++++++++++++++++++++++++++++++++- js/fk.autocomplete.js | 12 ++++++++++-- 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index ee74ccc16a..90c9a35d4f 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -382,7 +382,7 @@ function acl_lookup(&$a, $out_type = 'json') { $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); $type = (x($_REQUEST,'type')?$_REQUEST['type']:""); - + $conv_id = (x($_REQUEST,'conversation')?$_REQUEST['conversation']:null); // For use with jquery.autocomplete for private mail completion @@ -450,6 +450,7 @@ function acl_lookup(&$a, $out_type = 'json') { $contact_count = 0; } + $tot = $group_count+$contact_count; $groups = array(); @@ -553,6 +554,44 @@ function acl_lookup(&$a, $out_type = 'json') { $items = array_merge($groups, $contacts); + if ($conv_id) { + /* if $conv_id is set, get unknow contacts in thread */ + $unknow_contacts=array(); + $r = q("select + `author-avatar`,`author-name`,`author-link` + from item where parent=%d + and ( + `author-name` LIKE '%%%s%%' OR + `author-link` LIKE '%%%s%%' + )", + intval($conv_id), + dbesc($search), + dbesc($search) + ); + if (is_array($r) && count($r)){ + foreach($r as $row) { + // nickname.. + $up = parse_url($row['author-link']); + $nick = explode("/",$up['path']); + $nick = $nick[count($nick)-1]; + $nick .= "@".$up['host']; + // /nickname + $unknow_contacts[] = array( + "type" => "c", + "photo" => $row['author-avatar'], + "name" => $row['author-name'], + "id" => '', + "network" => "unknown", + "link" => $row['author-link'], + "nick" => $nick, + "forum" => false + ); + } + } + + $items = array_merge($items, $unknow_contacts); + $tot += count($unknow_contacts); + } if($out_type === 'html') { $o = array( diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js index 2334bb4a2c..cf6fd25cbc 100644 --- a/js/fk.autocomplete.js +++ b/js/fk.autocomplete.js @@ -14,6 +14,11 @@ function ACPopup(elm,backend_url){ this.kp_timer = false; this.url = backend_url; + this.conversation_id = null; + var conv_id = this.element.id.match(/\d+$/); + if (conv_id) this.conversation_id = conv_id[0]; + console.log("ACPopup elm id",this.element.id,"conversation",this.conversation_id); + var w = 530; var h = 130; @@ -67,6 +72,7 @@ ACPopup.prototype._search = function(){ count:100, search:this.searchText, type:'c', + conversation: this.conversation_id, } $.ajax({ @@ -79,8 +85,10 @@ ACPopup.prototype._search = function(){ if (data.tot>0){ that.cont.show(); $(data.items).each(function(){ - html = "{1} ({2})".format(this.photo, this.name, this.nick) - that.add(html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link); + var html = "{1} ({2})".format(this.photo, this.name, this.nick); + var nick = this.nick.replace(' ',''); + if (this.id!=='') nick += '+' + this.id; + that.add(html, nick + ' - ' + this.link); }); } else { that.cont.hide(); From 92035cdca42d61d07ffe41c325abb136eec2d771 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 30 Apr 2014 17:00:56 +0200 Subject: [PATCH 03/30] FR: update to the strings --- view/fr/messages.po | 2201 ++++++++++++++++++++++--------------------- view/fr/strings.php | 87 +- 2 files changed, 1191 insertions(+), 1097 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 59d15830a1..250407c168 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -7,14 +7,14 @@ # ltriay , 2013 # Marquis_de_Carabas , 2012 # Olivier , 2011-2012 -# Tubuntu, 2013-2014 +# Tubuntu , 2013-2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-31 18:07+0100\n" -"PO-Revision-Date: 2014-01-08 11:49+0000\n" -"Last-Translator: Tubuntu\n" +"POT-Creation-Date: 2014-04-26 09:22+0200\n" +"PO-Revision-Date: 2014-04-26 12:36+0000\n" +"Last-Translator: Tubuntu \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" @@ -27,24 +27,24 @@ msgid "This entry was edited" msgstr "" #: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../mod/photos.php:1355 msgid "Private Message" msgstr "Message privé" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:663 +#: ../../mod/content.php:727 ../../mod/settings.php:670 msgid "Edit" msgstr "Éditer" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../mod/content.php:739 ../../include/conversation.php:612 msgid "Select" msgstr "Sélectionner" -#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:695 -#: ../../mod/settings.php:664 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:703 +#: ../../mod/settings.php:671 ../../mod/group.php:171 +#: ../../mod/photos.php:1646 ../../include/conversation.php:613 msgid "Delete" msgstr "Supprimer" @@ -73,7 +73,7 @@ msgid "add tag" msgstr "ajouter un tag" #: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../mod/photos.php:1538 msgid "I like this (toggle)" msgstr "J'aime (bascule)" @@ -82,7 +82,7 @@ msgid "like" msgstr "aime" #: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" msgstr "Je n'aime pas (bascule)" @@ -98,199 +98,200 @@ msgstr "Partager" msgid "share" msgstr "partager" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "Catégories:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "Rangé sous:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "à" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "via" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "en Inter-mur:" -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 +#: ../../mod/content.php:708 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 msgid "Comment" msgstr "Commenter" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../include/conversation.php:690 ../../include/conversation.php:1102 msgid "Please wait" msgstr "Patientez" -#: ../../object/Item.php:345 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" -#: ../../object/Item.php:347 ../../object/Item.php:360 -#: ../../mod/content.php:604 ../../include/text.php:1928 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1946 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commentaire" -#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "montrer plus" -#: ../../object/Item.php:633 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/content.php:706 +#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 +#: ../../mod/photos.php:1685 msgid "This is you" msgstr "C'est vous" -#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 #: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" msgstr "Envoyer" -#: ../../object/Item.php:637 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "Gras" -#: ../../object/Item.php:638 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "Italique" -#: ../../object/Item.php:639 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "Souligné" -#: ../../object/Item.php:640 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "Citation" -#: ../../object/Item.php:641 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "Code" -#: ../../object/Item.php:642 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "Image" -#: ../../object/Item.php:643 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "Lien" -#: ../../object/Item.php:644 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "Vidéo" -#: ../../object/Item.php:645 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 +#: ../../include/conversation.php:1119 msgid "Preview" msgstr "Aperçu" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les addons." -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "Non trouvé" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "Page introuvable." -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Permission refusée" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 #: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 -#: ../../mod/settings.php:96 ../../mod/settings.php:583 -#: ../../mod/settings.php:588 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:101 ../../mod/settings.php:590 +#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 #: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4215 +#: ../../wall_attach.php:55 ../../include/items.php:4373 msgid "Permission denied." msgstr "Permission refusée." -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "activ. mobile" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "Profil" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 +#: ../../include/nav.php:145 msgid "Your posts and conversations" msgstr "Vos notices et conversations" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -303,7 +304,7 @@ msgid "Your profile page" msgstr "Votre page de profil" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "Photos" @@ -314,7 +315,7 @@ msgid "Your photos" msgstr "Vos photos" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "Événements" @@ -342,13 +343,13 @@ msgstr "Communauté" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" msgstr "cacher" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" msgstr "montrer" @@ -357,6 +358,7 @@ msgstr "montrer" #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 #: ../../view/theme/clean/config.php:73 #: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:49 msgid "Theme settings" msgstr "Réglages du thème graphique" @@ -378,8 +380,8 @@ msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentai msgid "Set resolution for middle column" msgstr "Réglez la résolution de la colonne centrale" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 -#: ../../include/nav.php:171 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:173 msgid "Contacts" msgstr "Contacts" @@ -413,28 +415,28 @@ msgid "Last likes" msgstr "Dernièrement aimé" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1922 +#: ../../include/conversation.php:246 ../../include/text.php:1940 msgid "event" msgstr "évènement" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1878 +#: ../../include/diaspora.php:1908 msgid "status" msgstr "le statut" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1924 ../../include/diaspora.php:1878 +#: ../../include/text.php:1942 ../../include/diaspora.php:1908 msgid "photo" msgstr "photo" -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s aime %3$s de %2$s" @@ -445,16 +447,16 @@ msgstr "%1$s aime %3$s de %2$s" msgid "Last photos" msgstr "Dernières photos" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 msgid "Contact Photos" msgstr "Photos du contact" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 ../../include/user.php:334 @@ -491,8 +493,8 @@ msgstr "Inviter des amis" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 +#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../include/nav.php:169 msgid "Settings" msgstr "Réglages" @@ -563,14 +565,14 @@ msgstr "Taille de texte des messages" #: ../../view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "" +msgstr "Taille de police des zones de texte" #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" msgstr "Choisir le schéma de couleurs" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1658 +#: ../../include/text.php:1676 msgid "default" msgstr "défaut" @@ -608,210 +610,214 @@ msgstr "Choisir une taille pour les images dans les publications et commentaires msgid "Set theme width" msgstr "Largeur du thème" -#: ../../boot.php:684 +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "" + +#: ../../boot.php:692 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: ../../boot.php:687 +#: ../../boot.php:695 msgid "show fewer" msgstr "montrer moins" -#: ../../boot.php:1015 +#: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: ../../boot.php:1017 +#: ../../boot.php:1025 #, php-format msgid "Update Error at %s" msgstr "Erreur de mise-à-jour à %s" -#: ../../boot.php:1127 +#: ../../boot.php:1135 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 +#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" msgstr "S'inscrire" -#: ../../boot.php:1152 ../../include/nav.php:73 +#: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" msgstr "Se déconnecter" -#: ../../boot.php:1153 ../../include/nav.php:91 +#: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" msgstr "Connexion" -#: ../../boot.php:1155 +#: ../../boot.php:1163 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: ../../boot.php:1156 +#: ../../boot.php:1164 msgid "Password: " msgstr "Mot de passe: " -#: ../../boot.php:1157 +#: ../../boot.php:1165 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../../boot.php:1160 +#: ../../boot.php:1168 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: ../../boot.php:1166 +#: ../../boot.php:1174 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 +#: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" -#: ../../boot.php:1169 +#: ../../boot.php:1177 msgid "Website Terms of Service" -msgstr "" +msgstr "Conditions d'utilisation du site internet" -#: ../../boot.php:1170 +#: ../../boot.php:1178 msgid "terms of service" -msgstr "" +msgstr "conditions d'utilisation" -#: ../../boot.php:1172 +#: ../../boot.php:1180 msgid "Website Privacy Policy" -msgstr "" +msgstr "Politique de confidentialité du site internet" -#: ../../boot.php:1173 +#: ../../boot.php:1181 msgid "privacy policy" -msgstr "" +msgstr "politique de confidentialité" -#: ../../boot.php:1302 +#: ../../boot.php:1314 msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: ../../boot.php:1341 ../../mod/profile.php:21 +#: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." msgstr "Le profil demandé n'est pas disponible." -#: ../../boot.php:1381 ../../boot.php:1485 +#: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" msgstr "Editer le profil" -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" msgstr "Relier" -#: ../../boot.php:1447 +#: ../../boot.php:1459 msgid "Message" msgstr "Message" -#: ../../boot.php:1455 ../../include/nav.php:169 +#: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" msgstr "Profils" -#: ../../boot.php:1455 +#: ../../boot.php:1467 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 +#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: ../../boot.php:1462 ../../mod/profiles.php:727 +#: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: ../../boot.php:1472 ../../mod/profiles.php:738 +#: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" msgstr "Image du profil" -#: ../../boot.php:1475 ../../mod/profiles.php:740 +#: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" msgstr "visible par tous" -#: ../../boot.php:1476 ../../mod/profiles.php:741 +#: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" msgstr "Changer la visibilité" -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" msgstr "Localisation:" -#: ../../boot.php:1503 ../../mod/directory.php:136 +#: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" msgstr "Genre:" -#: ../../boot.php:1506 ../../mod/directory.php:138 +#: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" msgstr "Statut:" -#: ../../boot.php:1508 ../../mod/directory.php:140 +#: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" msgstr "Page personnelle:" -#: ../../boot.php:1584 ../../boot.php:1670 +#: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" msgstr "g A | F d" -#: ../../boot.php:1585 ../../boot.php:1671 +#: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" msgstr "F d" -#: ../../boot.php:1630 ../../boot.php:1711 +#: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" msgstr "[aujourd'hui]" -#: ../../boot.php:1642 +#: ../../boot.php:1654 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: ../../boot.php:1643 +#: ../../boot.php:1655 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: ../../boot.php:1704 +#: ../../boot.php:1716 msgid "[No description]" msgstr "[Sans description]" -#: ../../boot.php:1722 +#: ../../boot.php:1734 msgid "Event Reminders" msgstr "Rappels d'événements" -#: ../../boot.php:1723 +#: ../../boot.php:1735 msgid "Events this week:" msgstr "Evénements cette semaine:" -#: ../../boot.php:1960 ../../include/nav.php:76 +#: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" msgstr "Statut" -#: ../../boot.php:1963 +#: ../../boot.php:1975 msgid "Status Messages and Posts" msgstr "Messages d'état et publications" -#: ../../boot.php:1970 +#: ../../boot.php:1982 msgid "Profile Details" msgstr "Détails du profil" -#: ../../boot.php:1977 ../../mod/photos.php:51 +#: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Albums photo" -#: ../../boot.php:1981 ../../boot.php:1984 +#: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" msgstr "" -#: ../../boot.php:1994 +#: ../../boot.php:2006 msgid "Events and Calendar" msgstr "Événements et agenda" -#: ../../boot.php:1998 ../../mod/notes.php:44 +#: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Notes personnelles" -#: ../../boot.php:2001 +#: ../../boot.php:2013 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" @@ -831,15 +837,15 @@ msgstr "Spécifiez votre humeur du moment, et informez vos amis" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 #: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." msgstr "Accès public refusé." -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 +#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4023 +#: ../../include/items.php:4177 msgid "Item not found." msgstr "Élément introuvable." @@ -847,7 +853,7 @@ msgstr "Élément introuvable." msgid "Access to this profile has been restricted." msgstr "L'accès au profil a été restreint." -#: ../../mod/display.php:239 +#: ../../mod/display.php:263 msgid "Item has been removed." msgstr "Cet élément a été enlevé." @@ -892,126 +898,126 @@ msgstr "Aucune extension/greffon/application installée" msgid "%1$s welcomes %2$s" msgstr "%1$s accueille %2$s" -#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: ../../mod/register.php:99 +#: ../../mod/register.php:100 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:103 +#: ../../mod/register.php:104 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:108 +#: ../../mod/register.php:109 msgid "Your registration can not be processed." msgstr "Votre inscription ne peut être traitée." -#: ../../mod/register.php:148 +#: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" msgstr "Demande d'inscription à %s" -#: ../../mod/register.php:157 +#: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." msgstr "Votre inscription attend une validation du propriétaire du site." -#: ../../mod/register.php:195 ../../mod/uimport.php:50 +#: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." -#: ../../mod/register.php:223 +#: ../../mod/register.php:224 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:224 +#: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." -#: ../../mod/register.php:225 +#: ../../mod/register.php:226 msgid "Your OpenID (optional): " msgstr "Votre OpenID (facultatif): " -#: ../../mod/register.php:239 +#: ../../mod/register.php:240 msgid "Include your profile in member directory?" msgstr "Inclure votre profil dans l'annuaire des membres?" -#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 -#: ../../mod/settings.php:981 ../../mod/settings.php:987 -#: ../../mod/settings.php:995 ../../mod/settings.php:999 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 -#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4064 +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:998 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4218 msgid "Yes" msgstr "Oui" -#: ../../mod/register.php:243 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 -#: ../../mod/settings.php:987 ../../mod/settings.php:995 -#: ../../mod/settings.php:999 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 -#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 -#: ../../mod/profiles.php:611 +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/profiles.php:615 msgid "No" msgstr "Non" -#: ../../mod/register.php:260 +#: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../mod/register.php:261 +#: ../../mod/register.php:262 msgid "Your invitation ID: " msgstr "Votre ID d'invitation: " -#: ../../mod/register.php:264 ../../mod/admin.php:572 +#: ../../mod/register.php:265 ../../mod/admin.php:573 msgid "Registration" msgstr "Inscription" -#: ../../mod/register.php:272 +#: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Votre nom complet (p.ex. Michel Dupont): " -#: ../../mod/register.php:273 +#: ../../mod/register.php:274 msgid "Your Email Address: " msgstr "Votre adresse courriel: " -#: ../../mod/register.php:274 +#: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "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:275 +#: ../../mod/register.php:276 msgid "Choose a nickname: " msgstr "Choisir un pseudo: " -#: ../../mod/register.php:284 ../../mod/uimport.php:64 +#: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" msgstr "Importer" -#: ../../mod/register.php:285 +#: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" msgstr "" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "Profil introuvable." @@ -1056,7 +1062,7 @@ msgid "Unable to set contact photo." msgstr "Impossible de définir la photo du contact." #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s est désormais lié à %2$s" @@ -1123,7 +1129,7 @@ msgstr "Merci de vous connecter pour continuer." 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?" +msgstr "Voulez-vous autoriser cette application à accéder à vos billets et contacts, et/ou à créer des billets à votre place?" #: ../../mod/lostpass.php:17 msgid "No valid account found." @@ -1221,7 +1227,7 @@ msgstr "Pas de destinataire." #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" msgstr "Entrez un lien web:" @@ -1253,13 +1259,13 @@ msgstr "Votre message:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 msgid "Upload photo" msgstr "Joindre photo" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1088 msgid "Insert web link" msgstr "Insérer lien web" @@ -1458,12 +1464,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "Voulez-vous vraiment supprimer cette suggestion ?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4067 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 +#: ../../include/items.php:4221 msgid "Cancel" msgstr "Annuler" @@ -1477,72 +1483,72 @@ msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h msgid "Ignore/Hide" msgstr "Ignorer/cacher" -#: ../../mod/network.php:179 +#: ../../mod/network.php:136 msgid "Search Results For:" msgstr "Résultats pour:" -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" msgstr "Retirer le terme" -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:42 msgid "Saved Searches" msgstr "Recherches" -#: ../../mod/network.php:232 ../../include/group.php:275 +#: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" msgstr "ajouter" -#: ../../mod/network.php:394 +#: ../../mod/network.php:350 msgid "Commented Order" msgstr "Tri par commentaires" -#: ../../mod/network.php:397 +#: ../../mod/network.php:353 msgid "Sort by Comment Date" msgstr "Trier par date de commentaire" -#: ../../mod/network.php:400 +#: ../../mod/network.php:356 msgid "Posted Order" msgstr "Tri par publications" -#: ../../mod/network.php:403 +#: ../../mod/network.php:359 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../mod/network.php:441 ../../mod/notifications.php:88 +#: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" msgstr "Personnel" -#: ../../mod/network.php:444 +#: ../../mod/network.php:368 msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: ../../mod/network.php:450 +#: ../../mod/network.php:374 msgid "New" msgstr "Nouveau" -#: ../../mod/network.php:453 +#: ../../mod/network.php:377 msgid "Activity Stream - by date" msgstr "Flux d'activités - par date" -#: ../../mod/network.php:459 +#: ../../mod/network.php:383 msgid "Shared Links" msgstr "Liens partagés" -#: ../../mod/network.php:462 +#: ../../mod/network.php:386 msgid "Interesting Links" msgstr "Liens intéressants" -#: ../../mod/network.php:468 +#: ../../mod/network.php:392 msgid "Starred" msgstr "Mis en avant" -#: ../../mod/network.php:471 +#: ../../mod/network.php:395 msgid "Favourite Posts" msgstr "Publications favorites" -#: ../../mod/network.php:539 +#: ../../mod/network.php:457 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -1550,31 +1556,31 @@ msgid_plural "" 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:542 +#: ../../mod/network.php:460 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:588 ../../mod/content.php:119 +#: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" msgstr "Groupe inexistant" -#: ../../mod/network.php:599 ../../mod/content.php:130 +#: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" msgstr "Groupe vide" -#: ../../mod/network.php:605 ../../mod/content.php:134 +#: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " msgstr "Groupe: " -#: ../../mod/network.php:617 +#: ../../mod/network.php:548 msgid "Contact: " msgstr "Contact: " -#: ../../mod/network.php:619 +#: ../../mod/network.php:550 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:624 +#: ../../mod/network.php:555 msgid "Invalid contact." msgstr "Contact invalide." @@ -1822,30 +1828,30 @@ msgstr "Fichier .htconfig.php accessible en écriture" msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "" +msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." #: ../../mod/install.php:455 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." -msgstr "" +msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." #: ../../mod/install.php:456 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "" +msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." #: ../../mod/install.php:457 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" +msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." #: ../../mod/install.php:460 msgid "view/smarty3 is writable" -msgstr "" +msgstr "view/smarty3 est autorisé à l écriture" #: ../../mod/install.php:472 msgid "" @@ -1881,19 +1887,20 @@ msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée p msgid "Theme settings updated." msgstr "Réglages du thème sauvés." -#: ../../mod/admin.php:101 ../../mod/admin.php:570 +#: ../../mod/admin.php:101 ../../mod/admin.php:571 msgid "Site" msgstr "Site" -#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 +#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 msgid "Users" msgstr "Utilisateurs" -#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 +#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 +#: ../../mod/settings.php:56 msgid "Plugins" msgstr "Extensions" -#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 +#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 msgid "Themes" msgstr "Thèmes" @@ -1901,11 +1908,11 @@ msgstr "Thèmes" msgid "DB updates" msgstr "Mise-à-jour de la base" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 msgid "Logs" msgstr "Journaux" -#: ../../mod/admin.php:125 ../../include/nav.php:178 +#: ../../mod/admin.php:125 ../../include/nav.php:180 msgid "Admin" msgstr "Admin" @@ -1917,19 +1924,19 @@ msgstr "Propriétés des extensions" msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: ../../mod/admin.php:187 ../../mod/admin.php:852 +#: ../../mod/admin.php:187 ../../mod/admin.php:853 msgid "Normal Account" msgstr "Compte normal" -#: ../../mod/admin.php:188 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:854 msgid "Soapbox Account" msgstr "Compte \"boîte à savon\"" -#: ../../mod/admin.php:189 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:855 msgid "Community/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: ../../mod/admin.php:190 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:856 msgid "Automatic Friend Account" msgstr "Compte auto-amical" @@ -1945,9 +1952,9 @@ msgstr "Forum privé" msgid "Message queues" msgstr "Files d'attente des messages" -#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 -#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 -#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 +#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 +#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 +#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 msgid "Administration" msgstr "Administration" @@ -1979,316 +1986,320 @@ msgstr "" msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: ../../mod/admin.php:512 ../../mod/settings.php:810 +#: ../../mod/admin.php:512 ../../mod/settings.php:822 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: ../../mod/admin.php:529 ../../mod/contacts.php:402 +#: ../../mod/admin.php:529 ../../mod/contacts.php:408 msgid "Never" msgstr "Jamais" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 +msgid "At post arrival" +msgstr "" + +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Fréquemment" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Toutes les heures" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Deux fois par jour" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Chaque jour" -#: ../../mod/admin.php:538 +#: ../../mod/admin.php:539 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:557 msgid "Closed" msgstr "Fermé" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:558 msgid "Requires approval" msgstr "Demande une apptrobation" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:559 msgid "Open" msgstr "Ouvert" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:563 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:563 +#: ../../mod/admin.php:564 msgid "Force all links to use SSL" msgstr "Forcer tous les liens à utiliser SSL" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:565 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:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 -#: ../../mod/admin.php:1332 ../../mod/settings.php:601 -#: ../../mod/settings.php:711 ../../mod/settings.php:780 -#: ../../mod/settings.php:856 ../../mod/settings.php:1084 +#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 +#: ../../mod/admin.php:1333 ../../mod/settings.php:608 +#: ../../mod/settings.php:718 ../../mod/settings.php:792 +#: ../../mod/settings.php:871 ../../mod/settings.php:1101 msgid "Save Settings" msgstr "" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:574 msgid "File upload" msgstr "Téléversement de fichier" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:575 msgid "Policies" msgstr "Politiques" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:576 msgid "Advanced" msgstr "Avancé" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:577 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:578 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Site name" msgstr "Nom du site" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System language" msgstr "Langue du système" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "System theme" msgstr "Thème du système" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 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:585 +#: ../../mod/admin.php:586 msgid "Mobile system theme" msgstr "Thème mobile" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "SSL link policy" msgstr "Politique SSL pour les liens" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 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:587 +#: ../../mod/admin.php:588 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Hide help entry from navigation menu" msgstr "Cacher l'aide du menu de navigation" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image size" msgstr "Taille maximale des images" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 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:591 +#: ../../mod/admin.php:592 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 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:592 +#: ../../mod/admin.php:593 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 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:594 +#: ../../mod/admin.php:595 msgid "Register policy" msgstr "Politique d'inscription" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Register text" msgstr "Texte d'inscription" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 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:597 +#: ../../mod/admin.php:598 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 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:598 +#: ../../mod/admin.php:599 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 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:599 +#: ../../mod/admin.php:600 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 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:600 +#: ../../mod/admin.php:601 msgid "Block public" msgstr "Interdire la publication globale" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 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:601 +#: ../../mod/admin.php:602 msgid "Force publish" msgstr "Forcer la publication globale" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 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:602 +#: ../../mod/admin.php:603 msgid "Global directory update URL" msgstr "URL de mise-à-jour de l'annuaire global" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 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:603 +#: ../../mod/admin.php:604 msgid "Allow threaded items" msgstr "Activer les commentaires imbriqués" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Allow infinite level threading for items on this site." msgstr "Permettre une imbrication infinie des commentaires." -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." -msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." +msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Don't include post content in email notifications" msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." -msgstr "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." +msgstr "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2296,501 +2307,501 @@ msgid "" "while." msgstr "" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Block multiple registrations" msgstr "Interdire les inscriptions multiples" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 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:610 +#: ../../mod/admin.php:611 msgid "OpenID support" msgstr "Support OpenID" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support for registration and logins." msgstr "Supporter OpenID pour les inscriptions et connexions." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Fullname check" msgstr "Vérification du \"Prénom Nom\"" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 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:612 +#: ../../mod/admin.php:613 msgid "UTF-8 Regular expressions" msgstr "Regex UTF-8" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Use PHP UTF8 regular expressions" msgstr "Utiliser les expressions rationnelles de PHP en UTF8" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Show Community Page" msgstr "Montrer la \"Place publique\"" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 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:614 +#: ../../mod/admin.php:615 msgid "Enable OStatus support" msgstr "Activer le support d'OStatus" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"Provide built-in OStatus (StatusNet, GNU Social 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." +msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Provide built-in Diaspora network compatibility." msgstr "Fournir une compatibilité Diaspora intégrée." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Only allow Friendica contacts" msgstr "N'autoriser que les contacts Friendica" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 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:618 +#: ../../mod/admin.php:619 msgid "Verify SSL" msgstr "Vérifier SSL" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 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:619 +#: ../../mod/admin.php:620 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Proxy URL" msgstr "URL du proxy" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 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:622 +#: ../../mod/admin.php:623 msgid "Delivery interval" msgstr "Intervalle de transmission" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 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:623 +#: ../../mod/admin.php:624 msgid "Poll interval" msgstr "Intervalle de réception" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 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:624 +#: ../../mod/admin.php:625 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 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:626 +#: ../../mod/admin.php:627 msgid "Use MySQL full text engine" msgstr "Utiliser le moteur de recherche plein texte de MySQL" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Path to item cache" msgstr "Chemin vers le cache des objets." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Cache duration in seconds" msgstr "Durée du cache en secondes" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)." -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Path for lock file" msgstr "Chemin vers le ficher de verrouillage" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:633 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:635 msgid "New base url" msgstr "" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:653 msgid "Update has been marked successful" msgstr "Mise-à-jour validée comme 'réussie'" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:663 #, 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:665 +#: ../../mod/admin.php:666 #, php-format msgid "Update %s was successfully applied." msgstr "Mise-à-jour %s appliquée avec succès." -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:670 #, 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:672 +#: ../../mod/admin.php:673 #, 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:687 +#: ../../mod/admin.php:688 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "Failed Updates" msgstr "Mises-à-jour échouées" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 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:693 +#: ../../mod/admin.php:694 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:695 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:741 msgid "Registration successful. Email send to user" msgstr "" -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:751 #, 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:757 +#: ../../mod/admin.php:758 #, 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:796 +#: ../../mod/admin.php:797 #, php-format msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' unblocked" msgstr "Utilisateur '%s' débloqué" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' blocked" msgstr "Utilisateur '%s' bloqué" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:900 msgid "Add User" msgstr "" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:901 msgid "select all" msgstr "tout sélectionner" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:902 msgid "User registrations waiting for confirm" msgstr "Inscriptions d'utilisateurs en attente de confirmation" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:903 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:904 msgid "Request date" msgstr "Date de la demande" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:929 ../../mod/crepair.php:150 -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:930 ../../mod/crepair.php:150 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 msgid "Name" msgstr "Nom" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "Courriel" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:905 msgid "No registrations." msgstr "Pas d'inscriptions." -#: ../../mod/admin.php:905 ../../mod/notifications.php:161 +#: ../../mod/admin.php:906 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Approuver" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:907 msgid "Deny" msgstr "Rejetter" -#: ../../mod/admin.php:908 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "Bloquer" -#: ../../mod/admin.php:909 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "Débloquer" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:911 msgid "Site admin" msgstr "Administration du Site" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 msgid "Account expired" msgstr "Compte expiré" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:915 msgid "New User" msgstr "" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Register date" msgstr "Date d'inscription" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last login" msgstr "Dernière connexion" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last item" msgstr "Dernier élément" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:916 msgid "Deleted since" msgstr "" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:917 ../../mod/settings.php:35 msgid "Account" msgstr "Compte" -#: ../../mod/admin.php:918 +#: ../../mod/admin.php:919 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:919 +#: ../../mod/admin.php:920 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:929 +#: ../../mod/admin.php:930 msgid "Name of the new user." msgstr "" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname" msgstr "" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname of the new user." msgstr "" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:932 msgid "Email address of the new user." msgstr "" -#: ../../mod/admin.php:964 +#: ../../mod/admin.php:965 #, php-format msgid "Plugin %s disabled." msgstr "Extension %s désactivée." -#: ../../mod/admin.php:968 +#: ../../mod/admin.php:969 #, php-format msgid "Plugin %s enabled." msgstr "Extension %s activée." -#: ../../mod/admin.php:978 ../../mod/admin.php:1181 +#: ../../mod/admin.php:979 ../../mod/admin.php:1182 msgid "Disable" msgstr "Désactiver" -#: ../../mod/admin.php:980 ../../mod/admin.php:1183 +#: ../../mod/admin.php:981 ../../mod/admin.php:1184 msgid "Enable" msgstr "Activer" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 msgid "Toggle" msgstr "Activer/Désactiver" -#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Author: " msgstr "Auteur: " -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 msgid "Maintainer: " msgstr "Mainteneur: " -#: ../../mod/admin.php:1141 +#: ../../mod/admin.php:1142 msgid "No themes found." msgstr "Aucun thème trouvé." -#: ../../mod/admin.php:1203 +#: ../../mod/admin.php:1204 msgid "Screenshot" msgstr "Capture d'écran" -#: ../../mod/admin.php:1249 +#: ../../mod/admin.php:1250 msgid "[Experimental]" msgstr "[Expérimental]" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1251 msgid "[Unsupported]" msgstr "[Non supporté]" -#: ../../mod/admin.php:1277 +#: ../../mod/admin.php:1278 msgid "Log settings updated." msgstr "Réglages des journaux mis-à-jour." -#: ../../mod/admin.php:1333 +#: ../../mod/admin.php:1334 msgid "Clear" msgstr "Effacer" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1340 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "Log file" msgstr "Fichier de journaux" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 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:1341 +#: ../../mod/admin.php:1342 msgid "Log level" msgstr "Niveau de journalisaton" -#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 +#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 msgid "Update now" msgstr "Mettre à jour" -#: ../../mod/admin.php:1391 +#: ../../mod/admin.php:1392 msgid "Close" msgstr "Fermer" -#: ../../mod/admin.php:1397 +#: ../../mod/admin.php:1398 msgid "FTP Host" msgstr "Hôte FTP" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1399 msgid "FTP Path" msgstr "Chemin FTP" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1400 msgid "FTP User" msgstr "Utilisateur FTP" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1401 msgid "FTP Password" msgstr "Mot de passe FTP" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 -#: ../../include/text.php:935 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 +#: ../../include/text.php:939 ../../include/nav.php:118 msgid "Search" msgstr "Recherche" #: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." msgstr "Aucun résultat." @@ -2813,77 +2824,77 @@ msgstr "Élément introuvable" #: ../../mod/editpost.php:39 msgid "Edit post" -msgstr "Éditer la publication" +msgstr "Éditer le billet" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 msgid "upload photo" msgstr "envoi image" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 msgid "Attach file" msgstr "Joindre fichier" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 msgid "attach file" msgstr "ajout fichier" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 msgid "web link" msgstr "lien web" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 msgid "Insert video link" msgstr "Insérer un lien video" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 msgid "video link" msgstr "lien vidéo" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 msgid "audio link" msgstr "lien audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 msgid "Set your location" msgstr "Définir votre localisation" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 msgid "set location" msgstr "spéc. localisation" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 msgid "clear location" msgstr "supp. localisation" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 msgid "Permission settings" msgstr "Réglages des permissions" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 msgid "Public post" -msgstr "Notice publique" +msgstr "Billet publique" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 msgid "Set title" msgstr "Définir un titre" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com" @@ -2912,7 +2923,7 @@ msgstr "Merci de vous connecter." msgid "Find on this site" msgstr "Trouver sur ce site" -#: ../../mod/directory.php:59 ../../mod/contacts.php:685 +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " msgstr "Trouvé: " @@ -2920,12 +2931,12 @@ msgstr "Trouvé: " msgid "Site Directory" msgstr "Annuaire local" -#: ../../mod/directory.php:61 ../../mod/contacts.php:686 +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Trouver" -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 +#: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " msgstr "Age: " @@ -3054,7 +3065,7 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 msgid "Save" msgstr "Sauver" @@ -3151,7 +3162,7 @@ msgstr "URL de profil invalide." msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." msgstr "Échec de mise-à-jour du contact." @@ -3187,7 +3198,7 @@ msgstr "Merci de confirmer votre demande d'introduction auprès de %s." msgid "Confirm" msgstr "Confirmer" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 msgid "[Name Withheld]" msgstr "[Nom non-publié]" @@ -3239,7 +3250,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3265,7 +3276,7 @@ msgstr "Envoyer la requête" msgid "[Embedded content - reload page to view]" msgstr "[contenu incorporé - rechargez la page pour le voir]" -#: ../../mod/content.php:496 ../../include/conversation.php:686 +#: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" msgstr "Voir dans le contexte" @@ -3276,7 +3287,7 @@ msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." @@ -3284,894 +3295,902 @@ msgstr "Impossible d'accéder à l'enregistrement du contact." msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:178 msgid "Contact updated." msgstr "Contact mis-à-jour." -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been archived" msgstr "Contact archivé" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: ../../mod/contacts.php:335 +#: ../../mod/contacts.php:341 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: ../../mod/contacts.php:373 +#: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: ../../mod/contacts.php:377 +#: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: ../../mod/contacts.php:382 +#: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was not successful)" msgstr "(Mise à jour échouée)" -#: ../../mod/contacts.php:408 +#: ../../mod/contacts.php:414 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: ../../mod/contacts.php:412 +#: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, 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:420 +#: ../../mod/contacts.php:426 msgid "View all contacts" msgstr "Voir tous les contacts" -#: ../../mod/contacts.php:428 +#: ../../mod/contacts.php:434 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 msgid "Unignore" msgstr "Ne plus ignorer" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "Ignorer" -#: ../../mod/contacts.php:434 +#: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" msgstr "Désarchiver" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" msgstr "Archiver" -#: ../../mod/contacts.php:441 +#: ../../mod/contacts.php:447 msgid "Toggle Archive status" msgstr "(dés)activer l'état \"archivé\"" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:450 msgid "Repair" msgstr "Réparer" -#: ../../mod/contacts.php:447 +#: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: ../../mod/contacts.php:453 +#: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: ../../mod/contacts.php:456 +#: ../../mod/contacts.php:462 msgid "Contact Editor" msgstr "Éditeur de contact" -#: ../../mod/contacts.php:459 +#: ../../mod/contacts.php:465 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: ../../mod/contacts.php:460 +#: ../../mod/contacts.php:466 #, 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:461 +#: ../../mod/contacts.php:467 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: ../../mod/contacts.php:462 +#: ../../mod/contacts.php:468 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: ../../mod/contacts.php:469 +#: ../../mod/contacts.php:475 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:476 msgid "Repair URL settings" msgstr "Réparer les réglages d'URL" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:477 msgid "View conversations" msgstr "Voir les conversations" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:479 msgid "Delete contact" msgstr "Effacer ce contact" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:483 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:485 msgid "Update public posts" msgstr "Met ses entrées publiques à jour: " -#: ../../mod/contacts.php:488 +#: ../../mod/contacts.php:494 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:495 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:496 msgid "Currently archived" msgstr "Actuellement archivé" -#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: ../../mod/contacts.php:491 +#: ../../mod/contacts.php:497 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:542 +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "" + +#: ../../mod/contacts.php:550 msgid "Suggestions" msgstr "Suggestions" -#: ../../mod/contacts.php:545 +#: ../../mod/contacts.php:553 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: ../../mod/contacts.php:548 ../../mod/group.php:194 +#: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" msgstr "Tous les contacts" -#: ../../mod/contacts.php:551 +#: ../../mod/contacts.php:559 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: ../../mod/contacts.php:554 +#: ../../mod/contacts.php:562 msgid "Unblocked" msgstr "Non-bloqués" -#: ../../mod/contacts.php:557 +#: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:569 msgid "Blocked" msgstr "Bloqués" -#: ../../mod/contacts.php:564 +#: ../../mod/contacts.php:572 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: ../../mod/contacts.php:568 +#: ../../mod/contacts.php:576 msgid "Ignored" msgstr "Ignorés" -#: ../../mod/contacts.php:571 +#: ../../mod/contacts.php:579 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: ../../mod/contacts.php:575 +#: ../../mod/contacts.php:583 msgid "Archived" msgstr "Archivés" -#: ../../mod/contacts.php:578 +#: ../../mod/contacts.php:586 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: ../../mod/contacts.php:582 +#: ../../mod/contacts.php:590 msgid "Hidden" msgstr "Cachés" -#: ../../mod/contacts.php:585 +#: ../../mod/contacts.php:593 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: ../../mod/contacts.php:633 +#: ../../mod/contacts.php:641 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: ../../mod/contacts.php:637 +#: ../../mod/contacts.php:645 msgid "is a fan of yours" msgstr "Vous suit" -#: ../../mod/contacts.php:641 +#: ../../mod/contacts.php:649 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Éditer le contact" -#: ../../mod/contacts.php:684 +#: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: ../../mod/contacts.php:691 ../../mod/settings.php:126 -#: ../../mod/settings.php:627 +#: ../../mod/contacts.php:699 ../../mod/settings.php:131 +#: ../../mod/settings.php:634 msgid "Update" msgstr "Mises-à-jour" -#: ../../mod/settings.php:28 ../../mod/photos.php:79 +#: ../../mod/settings.php:28 ../../mod/photos.php:80 msgid "everybody" msgstr "tout le monde" -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Compte" - #: ../../mod/settings.php:40 msgid "Additional features" msgstr "Fonctions supplémentaires" -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Affichage" +#: ../../mod/settings.php:45 +msgid "Display" +msgstr "" -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Connecteurs" +#: ../../mod/settings.php:51 ../../mod/settings.php:774 +msgid "Social Networks" +msgstr "" -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Extensions" +#: ../../mod/settings.php:61 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Délégations" -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 +#: ../../mod/settings.php:66 msgid "Connected apps" msgstr "Applications connectées" -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +#: ../../mod/settings.php:71 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Exporter" -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 +#: ../../mod/settings.php:76 msgid "Remove account" msgstr "Supprimer le compte" -#: ../../mod/settings.php:123 +#: ../../mod/settings.php:128 msgid "Missing some important data!" msgstr "Il manque certaines informations importantes!" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:237 msgid "Failed to connect with email account using the settings provided." msgstr "Impossible de se connecter au compte courriel configuré." -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:242 msgid "Email settings updated." msgstr "Réglages de courriel mis-à-jour." -#: ../../mod/settings.php:252 +#: ../../mod/settings.php:257 msgid "Features updated" msgstr "Fonctionnalités mises à jour" -#: ../../mod/settings.php:311 +#: ../../mod/settings.php:318 msgid "Relocate message has been send to your contacts" msgstr "" -#: ../../mod/settings.php:325 +#: ../../mod/settings.php:332 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: ../../mod/settings.php:330 +#: ../../mod/settings.php:337 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: ../../mod/settings.php:338 +#: ../../mod/settings.php:345 msgid "Wrong password." msgstr "" -#: ../../mod/settings.php:349 +#: ../../mod/settings.php:356 msgid "Password changed." msgstr "Mots de passe changés." -#: ../../mod/settings.php:351 +#: ../../mod/settings.php:358 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: ../../mod/settings.php:416 +#: ../../mod/settings.php:423 msgid " Please use a shorter name." msgstr " Merci d'utiliser un nom plus court." -#: ../../mod/settings.php:418 +#: ../../mod/settings.php:425 msgid " Name too short." msgstr " Nom trop court." -#: ../../mod/settings.php:427 +#: ../../mod/settings.php:434 msgid "Wrong Password" msgstr "" -#: ../../mod/settings.php:432 +#: ../../mod/settings.php:439 msgid " Not valid email." msgstr " Email invalide." -#: ../../mod/settings.php:438 +#: ../../mod/settings.php:445 msgid " Cannot change to that email." msgstr " Impossible de changer pour cet email." -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:500 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:497 +#: ../../mod/settings.php:504 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:527 +#: ../../mod/settings.php:534 msgid "Settings updated." msgstr "Réglages mis à jour." -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:669 msgid "Add application" msgstr "Ajouter une application" -#: ../../mod/settings.php:604 ../../mod/settings.php:630 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Key" msgstr "Clé utilisateur" -#: ../../mod/settings.php:605 ../../mod/settings.php:631 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Secret" msgstr "Secret utilisateur" -#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Redirect" msgstr "Rediriger" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Icon url" msgstr "URL de l'icône" -#: ../../mod/settings.php:618 +#: ../../mod/settings.php:625 msgid "You can't edit this application." msgstr "Vous ne pouvez pas éditer cette application." -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:668 msgid "Connected Apps" msgstr "Applications connectées" -#: ../../mod/settings.php:665 +#: ../../mod/settings.php:672 msgid "Client key starts with" msgstr "La clé cliente commence par" -#: ../../mod/settings.php:666 +#: ../../mod/settings.php:673 msgid "No name" msgstr "Sans nom" -#: ../../mod/settings.php:667 +#: ../../mod/settings.php:674 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:686 msgid "No Plugin settings configured" msgstr "Pas de réglages d'extensions configurés" -#: ../../mod/settings.php:687 +#: ../../mod/settings.php:694 msgid "Plugin Settings" msgstr "Extensions" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "Off" msgstr "Éteint" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "On" msgstr "Allumé" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:716 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Le support natif pour la connectivité %s est %s" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "enabled" msgstr "activé" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "disabled" msgstr "désactivé" -#: ../../mod/settings.php:723 +#: ../../mod/settings.php:731 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:755 +#: ../../mod/settings.php:767 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: ../../mod/settings.php:762 -msgid "Connector Settings" -msgstr "Connecteurs" - -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:779 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:780 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:769 +#: ../../mod/settings.php:781 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels:" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:783 msgid "IMAP server name:" msgstr "Nom du serveur IMAP:" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:784 msgid "IMAP port:" msgstr "Port IMAP:" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:785 msgid "Security:" msgstr "Sécurité:" -#: ../../mod/settings.php:773 ../../mod/settings.php:778 +#: ../../mod/settings.php:785 ../../mod/settings.php:790 msgid "None" msgstr "Aucun(e)" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:786 msgid "Email login name:" msgstr "Nom de connexion:" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:787 msgid "Email password:" msgstr "Mot de passe:" -#: ../../mod/settings.php:776 +#: ../../mod/settings.php:788 msgid "Reply-to address:" msgstr "Adresse de réponse:" -#: ../../mod/settings.php:777 +#: ../../mod/settings.php:789 msgid "Send public posts to all email contacts:" msgstr "Les notices publiques vont à tous les contacts courriel:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Action after import:" msgstr "Action après import:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Mark as seen" msgstr "Marquer comme vu" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Move to folder" msgstr "Déplacer vers" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:791 msgid "Move to folder:" msgstr "Déplacer vers:" -#: ../../mod/settings.php:854 +#: ../../mod/settings.php:869 msgid "Display Settings" msgstr "Affichage" -#: ../../mod/settings.php:860 ../../mod/settings.php:873 +#: ../../mod/settings.php:875 ../../mod/settings.php:889 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:876 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Update browser every xx seconds" msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Minimum of 10 seconds, no maximum" msgstr "Délai minimum de 10 secondes, pas de maximum" -#: ../../mod/settings.php:863 +#: ../../mod/settings.php:878 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page:" -#: ../../mod/settings.php:863 ../../mod/settings.php:864 +#: ../../mod/settings.php:878 ../../mod/settings.php:879 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:879 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:865 +#: ../../mod/settings.php:880 msgid "Don't show emoticons" msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: ../../mod/settings.php:866 +#: ../../mod/settings.php:881 +msgid "Don't show notices" +msgstr "" + +#: ../../mod/settings.php:882 msgid "Infinite scroll" msgstr "" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:959 msgid "Normal Account Page" msgstr "Compte normal" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:960 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:946 +#: ../../mod/settings.php:963 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:964 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:950 +#: ../../mod/settings.php:967 msgid "Community Forum/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:968 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:954 +#: ../../mod/settings.php:971 msgid "Automatic Friend Page" msgstr "Compte d'\"amitié automatique\"" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:972 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:958 +#: ../../mod/settings.php:975 msgid "Private Forum [Experimental]" msgstr "Forum privé [expérimental]" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:976 msgid "Private forum - approved members only" msgstr "Forum privé - modéré en inscription" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:998 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:987 +#: ../../mod/settings.php:1004 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:995 +#: ../../mod/settings.php:1012 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:999 +#: ../../mod/settings.php:1016 msgid "Hide your profile details from unknown viewers?" msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1021 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos amis à publier sur votre profil?" -#: ../../mod/settings.php:1010 +#: ../../mod/settings.php:1027 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos amis à tagguer vos notices?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1033 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:1022 +#: ../../mod/settings.php:1039 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1047 msgid "Profile is not published." msgstr "Ce profil n'est pas publié." -#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 msgid "or" msgstr "ou" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1055 msgid "Your Identity Address is" msgstr "L'adresse de votre identité est" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 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:1050 +#: ../../mod/settings.php:1067 msgid "Advanced expiration settings" msgstr "Réglages avancés de l'expiration" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1068 msgid "Advanced Expiration" msgstr "Expiration (avancé)" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1069 msgid "Expire posts:" msgstr "Faire expirer les contenus:" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1070 msgid "Expire personal notes:" msgstr "Faire expirer les notes personnelles:" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1071 msgid "Expire starred posts:" msgstr "Faire expirer les contenus marqués:" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1072 msgid "Expire photos:" msgstr "Faire expirer les photos:" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1073 msgid "Only expire posts by others:" msgstr "Faire expirer seulement les messages des autres :" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1099 msgid "Account Settings" msgstr "Compte" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1107 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1108 msgid "New Password:" msgstr "Nouveau mot de passe:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Confirm:" msgstr "Confirmer:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 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:1093 +#: ../../mod/settings.php:1110 msgid "Current Password:" msgstr "" -#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 msgid "Your current password to confirm the changes" msgstr "" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1111 msgid "Password:" msgstr "" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1115 msgid "Basic Settings" msgstr "Réglages basiques" -#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Nom complet:" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1117 msgid "Email Address:" msgstr "Adresse courriel:" -#: ../../mod/settings.php:1101 +#: ../../mod/settings.php:1118 msgid "Your Timezone:" msgstr "Votre fuseau horaire:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1119 msgid "Default Post Location:" msgstr "Publication par défaut depuis :" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1120 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1123 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1125 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 +#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1126 msgid "Default Post Permissions" msgstr "Permissions par défaut sur les articles" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1127 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 +#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "Montrer aux groupes" -#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 +#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "Montrer aux Contacts" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1138 msgid "Default Private Post" msgstr "Message privé par défaut" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1139 msgid "Default Public Post" msgstr "Message publique par défaut" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1143 msgid "Default Permissions for New Posts" msgstr "Permissions par défaut sur les nouveaux articles" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1155 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour:" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1158 msgid "Notification Settings" msgstr "Réglages de notification" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1159 msgid "By default post a status message when:" msgstr "Par défaut, poster un statut quand:" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1160 msgid "accepting a friend request" msgstr "j'accepte un ami" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1161 msgid "joining a forum/community" msgstr "joignant un forum/une communauté" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1162 msgid "making an interesting profile change" msgstr "je fais une modification intéressante de mon profil" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1163 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand:" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1164 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1165 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1166 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1167 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: ../../mod/settings.php:1151 +#: ../../mod/settings.php:1168 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1169 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'ami" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1170 msgid "You are tagged in a post" msgstr "Vous avez été repéré dans une publication" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1171 msgid "You are poked/prodded/etc. in a post" msgstr "Vous avez été sollicité dans une publication" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1174 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1175 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1178 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1179 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1180 msgid "Resend relocate message to contacts" msgstr "" @@ -4195,265 +4214,265 @@ msgstr "Ce profil ne peut être cloné." msgid "Profile Name is required." msgstr "Le nom du profil est requis." -#: ../../mod/profiles.php:317 +#: ../../mod/profiles.php:321 msgid "Marital Status" msgstr "Statut marital" -#: ../../mod/profiles.php:321 +#: ../../mod/profiles.php:325 msgid "Romantic Partner" msgstr "Partenaire/conjoint" -#: ../../mod/profiles.php:325 +#: ../../mod/profiles.php:329 msgid "Likes" msgstr "Derniers \"J'aime\"" -#: ../../mod/profiles.php:329 +#: ../../mod/profiles.php:333 msgid "Dislikes" msgstr "Derniers \"Je n'aime pas\"" -#: ../../mod/profiles.php:333 +#: ../../mod/profiles.php:337 msgid "Work/Employment" msgstr "Travail/Occupation" -#: ../../mod/profiles.php:336 +#: ../../mod/profiles.php:340 msgid "Religion" msgstr "Religion" -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:344 msgid "Political Views" msgstr "Tendance politique" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:348 msgid "Gender" msgstr "Sexe" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:352 msgid "Sexual Preference" msgstr "Préférence sexuelle" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:356 msgid "Homepage" msgstr "Site internet" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:360 msgid "Interests" msgstr "Centres d'intérêt" -#: ../../mod/profiles.php:360 +#: ../../mod/profiles.php:364 msgid "Address" msgstr "Adresse" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:371 msgid "Location" msgstr "Localisation" -#: ../../mod/profiles.php:450 +#: ../../mod/profiles.php:454 msgid "Profile updated." msgstr "Profil mis à jour." -#: ../../mod/profiles.php:521 +#: ../../mod/profiles.php:525 msgid " and " msgstr " et " -#: ../../mod/profiles.php:529 +#: ../../mod/profiles.php:533 msgid "public profile" msgstr "profil public" -#: ../../mod/profiles.php:532 +#: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s a changé %2$s en “%3$s”" -#: ../../mod/profiles.php:533 +#: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" msgstr "Visiter le %2$s de %1$s" -#: ../../mod/profiles.php:536 +#: ../../mod/profiles.php:540 #, 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:609 +#: ../../mod/profiles.php:613 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:629 +#: ../../mod/profiles.php:633 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: ../../mod/profiles.php:631 +#: ../../mod/profiles.php:635 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: ../../mod/profiles.php:632 +#: ../../mod/profiles.php:636 msgid "View this profile" msgstr "Voir ce profil" -#: ../../mod/profiles.php:633 +#: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" msgstr "Créer un nouveau profil en utilisant ces réglages" -#: ../../mod/profiles.php:634 +#: ../../mod/profiles.php:638 msgid "Clone this profile" msgstr "Cloner ce profil" -#: ../../mod/profiles.php:635 +#: ../../mod/profiles.php:639 msgid "Delete this profile" msgstr "Supprimer ce profil" -#: ../../mod/profiles.php:636 +#: ../../mod/profiles.php:640 msgid "Profile Name:" msgstr "Nom du profil:" -#: ../../mod/profiles.php:637 +#: ../../mod/profiles.php:641 msgid "Your Full Name:" msgstr "Votre nom complet:" -#: ../../mod/profiles.php:638 +#: ../../mod/profiles.php:642 msgid "Title/Description:" msgstr "Titre/Description:" -#: ../../mod/profiles.php:639 +#: ../../mod/profiles.php:643 msgid "Your Gender:" msgstr "Votre genre:" -#: ../../mod/profiles.php:640 +#: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" msgstr "Anniversaire (%s):" -#: ../../mod/profiles.php:641 +#: ../../mod/profiles.php:645 msgid "Street Address:" msgstr "Adresse postale:" -#: ../../mod/profiles.php:642 +#: ../../mod/profiles.php:646 msgid "Locality/City:" msgstr "Ville/Localité:" -#: ../../mod/profiles.php:643 +#: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" msgstr "Code postal:" -#: ../../mod/profiles.php:644 +#: ../../mod/profiles.php:648 msgid "Country:" msgstr "Pays:" -#: ../../mod/profiles.php:645 +#: ../../mod/profiles.php:649 msgid "Region/State:" msgstr "Région/État:" -#: ../../mod/profiles.php:646 +#: ../../mod/profiles.php:650 msgid " Marital Status:" msgstr " Statut marital:" -#: ../../mod/profiles.php:647 +#: ../../mod/profiles.php:651 msgid "Who: (if applicable)" msgstr "Qui: (si pertinent)" -#: ../../mod/profiles.php:648 +#: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:649 +#: ../../mod/profiles.php:653 msgid "Since [date]:" msgstr "Depuis [date] :" -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Préférence sexuelle:" -#: ../../mod/profiles.php:651 +#: ../../mod/profiles.php:655 msgid "Homepage URL:" msgstr "Page personnelle:" -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr " Ville d'origine:" -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Opinions politiques:" -#: ../../mod/profiles.php:654 +#: ../../mod/profiles.php:658 msgid "Religious Views:" msgstr "Opinions religieuses:" -#: ../../mod/profiles.php:655 +#: ../../mod/profiles.php:659 msgid "Public Keywords:" msgstr "Mots-clés publics:" -#: ../../mod/profiles.php:656 +#: ../../mod/profiles.php:660 msgid "Private Keywords:" msgstr "Mots-clés privés:" -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "J'aime :" -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "Je n'aime pas :" -#: ../../mod/profiles.php:659 +#: ../../mod/profiles.php:663 msgid "Example: fishing photography software" msgstr "Exemple: football dessin programmation" -#: ../../mod/profiles.php:660 +#: ../../mod/profiles.php:664 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:661 +#: ../../mod/profiles.php:665 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:662 +#: ../../mod/profiles.php:666 msgid "Tell us about yourself..." msgstr "Parlez-nous de vous..." -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:667 msgid "Hobbies/Interests" msgstr "Passe-temps/Centres d'intérêt" -#: ../../mod/profiles.php:664 +#: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" msgstr "Coordonnées/Réseaux sociaux" -#: ../../mod/profiles.php:665 +#: ../../mod/profiles.php:669 msgid "Musical interests" msgstr "Goûts musicaux" -#: ../../mod/profiles.php:666 +#: ../../mod/profiles.php:670 msgid "Books, literature" msgstr "Lectures" -#: ../../mod/profiles.php:667 +#: ../../mod/profiles.php:671 msgid "Television" msgstr "Télévision" -#: ../../mod/profiles.php:668 +#: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" msgstr "Cinéma/Danse/Culture/Divertissement" -#: ../../mod/profiles.php:669 +#: ../../mod/profiles.php:673 msgid "Love/romance" msgstr "Amour/Romance" -#: ../../mod/profiles.php:670 +#: ../../mod/profiles.php:674 msgid "Work/employment" msgstr "Activité professionnelle/Occupation" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:675 msgid "School/education" msgstr "Études/Formation" -#: ../../mod/profiles.php:676 +#: ../../mod/profiles.php:680 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:725 +#: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Editer/gérer les profils" @@ -4569,7 +4588,7 @@ msgstr "Pas plus de notifications système." msgid "System Notifications" msgstr "Notifications du système" -#: ../../mod/message.php:9 ../../include/nav.php:159 +#: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" msgstr "Nouveau message" @@ -4578,7 +4597,7 @@ msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." #: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Messages" msgstr "Messages" @@ -4646,7 +4665,7 @@ msgstr "Pas de communications sécurisées possibles. Vous serez peut-ê msgid "Send Reply" msgstr "Répondre" -#: ../../mod/like.php:170 ../../include/conversation.php:140 +#: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s n'aime pas %3$s de %2$s" @@ -4656,7 +4675,7 @@ msgid "Post successful." msgstr "Publication réussie." #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 +#: ../../include/bb2diaspora.php:133 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -4689,8 +4708,8 @@ msgstr "Temps local converti : %s" msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 msgid "Save to Folder:" msgstr "Sauver dans le Dossier:" @@ -4718,7 +4737,7 @@ msgstr "Tous les contacts (ayant un accès sécurisé)" msgid "No contacts." msgstr "Aucun contact." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 msgid "View Contacts" msgstr "Voir les contacts" @@ -4730,201 +4749,210 @@ msgstr "Recherche de personnes" msgid "No matches" msgstr "Aucune correspondance" -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: ../../mod/photos.php:143 +#: ../../mod/photos.php:144 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: ../../mod/photos.php:164 +#: ../../mod/photos.php:165 msgid "Album not found." msgstr "Album introuvable." -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" msgstr "Effacer l'album" -#: ../../mod/photos.php:197 +#: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" msgstr "Effacer la photo" -#: ../../mod/photos.php:285 +#: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a été identifié %2$s par %3$s" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 msgid "a photo" msgstr "une photo" -#: ../../mod/photos.php:761 +#: ../../mod/photos.php:765 msgid "Image exceeds size limit of " msgstr "L'image dépasse la taille maximale de " -#: ../../mod/photos.php:769 +#: ../../mod/photos.php:773 msgid "Image file is empty." msgstr "Fichier image vide." -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 +#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 +#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." -#: ../../mod/photos.php:924 +#: ../../mod/photos.php:928 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." msgstr "Accès restreint à cet élément." -#: ../../mod/photos.php:1088 +#: ../../mod/photos.php:1092 #, 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:1123 +#: ../../mod/photos.php:1127 msgid "Upload Photos" msgstr "Téléverser des photos" -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " msgstr "Nom du nouvel album: " -#: ../../mod/photos.php:1128 +#: ../../mod/photos.php:1132 msgid "or existing album name: " msgstr "ou nom d'un album existant: " -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice pour cet envoi" +msgstr "Ne pas publier de notice de statut pour cet envoi" -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" msgstr "Permissions" -#: ../../mod/photos.php:1142 +#: ../../mod/photos.php:1146 msgid "Private Photo" msgstr "Photo privée" -#: ../../mod/photos.php:1143 +#: ../../mod/photos.php:1147 msgid "Public Photo" msgstr "Photo publique" -#: ../../mod/photos.php:1210 +#: ../../mod/photos.php:1214 msgid "Edit Album" msgstr "Éditer l'album" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: ../../mod/photos.php:1218 +#: ../../mod/photos.php:1222 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 msgid "View Photo" msgstr "Voir la photo" -#: ../../mod/photos.php:1286 +#: ../../mod/photos.php:1290 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:1288 +#: ../../mod/photos.php:1292 msgid "Photo not available" msgstr "Photo indisponible" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "View photo" msgstr "Voir photo" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "Edit photo" msgstr "Éditer la photo" -#: ../../mod/photos.php:1345 +#: ../../mod/photos.php:1349 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: ../../mod/photos.php:1370 +#: ../../mod/photos.php:1374 msgid "View Full Size" msgstr "Voir en taille réelle" -#: ../../mod/photos.php:1444 +#: ../../mod/photos.php:1453 msgid "Tags: " msgstr "Étiquettes: " -#: ../../mod/photos.php:1447 +#: ../../mod/photos.php:1456 msgid "[Remove any tag]" msgstr "[Retirer toutes les étiquettes]" -#: ../../mod/photos.php:1487 +#: ../../mod/photos.php:1496 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: ../../mod/photos.php:1488 +#: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: ../../mod/photos.php:1490 +#: ../../mod/photos.php:1499 msgid "New album name" msgstr "Nom du nouvel album" -#: ../../mod/photos.php:1493 +#: ../../mod/photos.php:1502 msgid "Caption" msgstr "Titre" -#: ../../mod/photos.php:1495 +#: ../../mod/photos.php:1504 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: ../../mod/photos.php:1499 +#: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: ../../mod/photos.php:1508 +#: ../../mod/photos.php:1517 msgid "Private photo" msgstr "Photo privée" -#: ../../mod/photos.php:1509 +#: ../../mod/photos.php:1518 msgid "Public photo" msgstr "Photo publique" -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 msgid "Share" msgstr "Partager" -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 +#: ../../mod/photos.php:1799 ../../mod/videos.php:308 msgid "View Album" msgstr "Voir l'album" -#: ../../mod/photos.php:1793 +#: ../../mod/photos.php:1808 msgid "Recent Photos" msgstr "Photos récentes" -#: ../../mod/wall_attach.php:69 +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "La taille du fichier dépasse la limite de %d" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "Le téléversement a échoué." @@ -4932,7 +4960,7 @@ msgstr "Le téléversement a échoué." msgid "No videos selected" msgstr "" -#: ../../mod/videos.php:301 ../../include/text.php:1383 +#: ../../mod/videos.php:301 ../../include/text.php:1387 msgid "View Video" msgstr "" @@ -4969,21 +4997,21 @@ msgstr "Rendez ce message privé" msgid "%1$s is following %2$s's %3$s" msgstr "%1$s suit les %3$s de %2$s" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "Export account" msgstr "Exporter le compte" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "Export all" msgstr "Tout exporter" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " @@ -5004,7 +5032,7 @@ msgid "Image exceeds size limit of %d" msgstr "L'image dépasse la taille limite de %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Photos du mur" @@ -5105,7 +5133,7 @@ msgstr "Enlever l'étiquette de l'élément" msgid "Select a tag to remove: " msgstr "Choisir une étiquette à enlever: " -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" msgstr "Utiliser comme photo de profil" @@ -5121,7 +5149,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editer l'événement" -#: ../../mod/events.php:335 ../../include/text.php:1615 +#: ../../mod/events.php:335 ../../include/text.php:1620 +#: ../../include/text.php:1631 msgid "link to source" msgstr "lien original" @@ -5182,34 +5211,34 @@ msgstr "Partager cet événement" msgid "No potential page delegates located." msgstr "Pas de délégataire potentiel." -#: ../../mod/delegate.php:121 ../../include/nav.php:165 +#: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" msgstr "Déléguer la gestion de la page" -#: ../../mod/delegate.php:123 +#: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "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 +#: ../../mod/delegate.php:127 msgid "Existing Page Managers" msgstr "Gestionnaires existants" -#: ../../mod/delegate.php:126 +#: ../../mod/delegate.php:129 msgid "Existing Page Delegates" msgstr "Délégataires existants" -#: ../../mod/delegate.php:128 +#: ../../mod/delegate.php:131 msgid "Potential Delegates" msgstr "Délégataires potentiels" -#: ../../mod/delegate.php:131 +#: ../../mod/delegate.php:134 msgid "Add" msgstr "Ajouter" -#: ../../mod/delegate.php:132 +#: ../../mod/delegate.php:135 msgid "No entries." msgstr "Aucune entrée." @@ -5252,37 +5281,37 @@ msgstr "Suggérer des amis/contacts" msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %s" -#: ../../mod/item.php:108 +#: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Impossible de localiser l'article original." -#: ../../mod/item.php:317 +#: ../../mod/item.php:319 msgid "Empty post discarded." msgstr "Article vide défaussé." -#: ../../mod/item.php:884 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "Erreur système. Publication non sauvée." -#: ../../mod/item.php:909 +#: ../../mod/item.php:917 #, 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:911 +#: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" msgstr "Vous pouvez leur rendre visite sur %s" -#: ../../mod/item.php:912 +#: ../../mod/item.php:920 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:916 +#: ../../mod/item.php:924 #, php-format msgid "%s posted an update." msgstr "%s a publié une mise à jour." @@ -5359,11 +5388,11 @@ msgstr "Rejeter" msgid "System" msgstr "Système" -#: ../../mod/notifications.php:83 ../../include/nav.php:140 +#: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" msgstr "Réseau" -#: ../../mod/notifications.php:98 ../../include/nav.php:149 +#: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" msgstr "Introductions" @@ -5436,7 +5465,7 @@ msgstr "Nouvel abonné" msgid "No introductions." msgstr "Aucune demande d'introduction." -#: ../../mod/notifications.php:220 ../../include/nav.php:150 +#: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" msgstr "Notifications" @@ -5444,13 +5473,13 @@ msgstr "Notifications" #: ../../mod/notifications.php:469 #, php-format msgid "%s liked %s's post" -msgstr "%s a aimé la notice de %s" +msgstr "%s a aimé le billet de %s" #: ../../mod/notifications.php:266 ../../mod/notifications.php:391 #: ../../mod/notifications.php:478 #, php-format msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé la notice de %s" +msgstr "%s n'a pas aimé le billet de %s" #: ../../mod/notifications.php:280 ../../mod/notifications.php:405 #: ../../mod/notifications.php:492 @@ -5461,13 +5490,13 @@ msgstr "%s est désormais ami(e) avec %s" #: ../../mod/notifications.php:287 ../../mod/notifications.php:412 #, php-format msgid "%s created a new post" -msgstr "%s a publié une notice" +msgstr "%s a publié un billet" #: ../../mod/notifications.php:288 ../../mod/notifications.php:413 #: ../../mod/notifications.php:501 #, php-format msgid "%s commented on %s's post" -msgstr "%s a commenté une notice de %s" +msgstr "%s a commenté le billet de %s" #: ../../mod/notifications.php:302 msgid "No more network notifications." @@ -5660,7 +5689,7 @@ msgstr "Réseaux" msgid "All Networks" msgstr "Tous réseaux" -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" msgstr "Dossiers sauvegardés" @@ -5684,33 +5713,37 @@ msgstr "Cette action dépasse les limites définies par votre abonnement." msgid "This action is not available under your subscription plan." msgstr "Cette action n'est pas disponible avec votre abonnement." -#: ../../include/api.php:255 ../../include/api.php:266 -#: ../../include/api.php:356 +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 msgid "User not found." msgstr "" -#: ../../include/api.php:1024 +#: ../../include/api.php:1123 msgid "There is no status with this id." msgstr "" -#: ../../include/network.php:883 +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "" + +#: ../../include/network.php:886 msgid "view full size" msgstr "voir en pleine taille" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Débute:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Finit:" -#: ../../include/notifier.php:774 ../../include/delivery.php:457 +#: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "(sans titre)" #: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 +#: ../../include/delivery.php:467 msgid "noreply" msgstr "noreply" @@ -5802,7 +5835,7 @@ msgstr "Amis" msgid "%1$s poked %2$s" msgstr "%1$s a sollicité %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:986 +#: ../../include/conversation.php:211 ../../include/text.php:990 msgid "poked" msgstr "a titillé" @@ -5815,129 +5848,129 @@ msgstr "publication/élément" 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:767 +#: ../../include/conversation.php:770 msgid "remove" msgstr "enlever" -#: ../../include/conversation.php:771 +#: ../../include/conversation.php:774 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: ../../include/conversation.php:870 +#: ../../include/conversation.php:873 msgid "Follow Thread" msgstr "Suivre le fil" -#: ../../include/conversation.php:871 ../../include/Contact.php:229 +#: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" msgstr "Voir les statuts" -#: ../../include/conversation.php:872 ../../include/Contact.php:230 +#: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" msgstr "Voir le profil" -#: ../../include/conversation.php:873 ../../include/Contact.php:231 +#: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" msgstr "Voir les photos" -#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" msgstr "Posts du Réseau" -#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "Éditer le contact" -#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" msgstr "Message privé" -#: ../../include/conversation.php:877 ../../include/Contact.php:228 +#: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" msgstr "Sollicitations (pokes)" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" msgstr "" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" msgstr "" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:964 msgid "and" msgstr "et" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" msgstr ", et %d autres personnes" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s like this." msgstr "%s aiment ça." -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." msgstr "%s n'aiment pas ça." -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" msgstr "Entrez un lien/URL video :" -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" msgstr "Entrez un lien/URL audio :" -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" msgstr "Tag : " -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" msgstr "Où êtes-vous présentemment?" -#: ../../include/conversation.php:1003 +#: ../../include/conversation.php:1006 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: ../../include/conversation.php:1045 +#: ../../include/conversation.php:1048 msgid "Post to Email" msgstr "Publier aussi par courriel" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1104 msgid "permissions" msgstr "permissions" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:1128 msgid "Post to Groups" msgstr "" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:1129 msgid "Post to Contacts" msgstr "" -#: ../../include/conversation.php:1127 +#: ../../include/conversation.php:1130 msgid "Private post" msgstr "Message privé" @@ -5981,262 +6014,262 @@ msgstr[1] "%d contacts non importés" msgid "Done. You can now login with your username and password" msgstr "" -#: ../../include/text.php:300 +#: ../../include/text.php:304 msgid "newer" msgstr "Plus récent" -#: ../../include/text.php:302 +#: ../../include/text.php:306 msgid "older" msgstr "Plus ancien" -#: ../../include/text.php:307 +#: ../../include/text.php:311 msgid "prev" msgstr "précédent" -#: ../../include/text.php:309 +#: ../../include/text.php:313 msgid "first" msgstr "premier" -#: ../../include/text.php:341 +#: ../../include/text.php:345 msgid "last" msgstr "dernier" -#: ../../include/text.php:344 +#: ../../include/text.php:348 msgid "next" msgstr "suivant" -#: ../../include/text.php:836 +#: ../../include/text.php:840 msgid "No contacts" msgstr "Aucun contact" -#: ../../include/text.php:845 +#: ../../include/text.php:849 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: ../../include/text.php:986 +#: ../../include/text.php:990 msgid "poke" msgstr "titiller" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "ping" msgstr "attirer l'attention" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "pinged" msgstr "a attiré l'attention de" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prod" msgstr "aiguillonner" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prodded" msgstr "a aiguillonné" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slap" msgstr "gifler" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slapped" msgstr "a giflé" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "finger" msgstr "tripoter" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "fingered" msgstr "a tripoté" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuff" msgstr "rabrouer" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuffed" msgstr "a rabroué" -#: ../../include/text.php:1005 +#: ../../include/text.php:1009 msgid "happy" msgstr "heureuse" -#: ../../include/text.php:1006 +#: ../../include/text.php:1010 msgid "sad" msgstr "triste" -#: ../../include/text.php:1007 +#: ../../include/text.php:1011 msgid "mellow" msgstr "suave" -#: ../../include/text.php:1008 +#: ../../include/text.php:1012 msgid "tired" msgstr "fatiguée" -#: ../../include/text.php:1009 +#: ../../include/text.php:1013 msgid "perky" msgstr "guillerette" -#: ../../include/text.php:1010 +#: ../../include/text.php:1014 msgid "angry" msgstr "colérique" -#: ../../include/text.php:1011 +#: ../../include/text.php:1015 msgid "stupified" msgstr "stupéfaite" -#: ../../include/text.php:1012 +#: ../../include/text.php:1016 msgid "puzzled" msgstr "perplexe" -#: ../../include/text.php:1013 +#: ../../include/text.php:1017 msgid "interested" msgstr "intéressée" -#: ../../include/text.php:1014 +#: ../../include/text.php:1018 msgid "bitter" msgstr "amère" -#: ../../include/text.php:1015 +#: ../../include/text.php:1019 msgid "cheerful" msgstr "entraînante" -#: ../../include/text.php:1016 +#: ../../include/text.php:1020 msgid "alive" msgstr "vivante" -#: ../../include/text.php:1017 +#: ../../include/text.php:1021 msgid "annoyed" msgstr "ennuyée" -#: ../../include/text.php:1018 +#: ../../include/text.php:1022 msgid "anxious" msgstr "anxieuse" -#: ../../include/text.php:1019 +#: ../../include/text.php:1023 msgid "cranky" msgstr "excentrique" -#: ../../include/text.php:1020 +#: ../../include/text.php:1024 msgid "disturbed" msgstr "dérangée" -#: ../../include/text.php:1021 +#: ../../include/text.php:1025 msgid "frustrated" msgstr "frustrée" -#: ../../include/text.php:1022 +#: ../../include/text.php:1026 msgid "motivated" msgstr "motivée" -#: ../../include/text.php:1023 +#: ../../include/text.php:1027 msgid "relaxed" msgstr "détendue" -#: ../../include/text.php:1024 +#: ../../include/text.php:1028 msgid "surprised" msgstr "surprise" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Monday" msgstr "Lundi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Tuesday" msgstr "Mardi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Wednesday" msgstr "Mercredi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Thursday" msgstr "Jeudi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Friday" msgstr "Vendredi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Saturday" msgstr "Samedi" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Sunday" msgstr "Dimanche" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "January" msgstr "Janvier" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "February" msgstr "Février" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "March" msgstr "Mars" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "April" msgstr "Avril" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "May" msgstr "Mai" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "June" msgstr "Juin" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "July" msgstr "Juillet" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "August" msgstr "Août" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "September" msgstr "Septembre" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "October" msgstr "Octobre" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "November" msgstr "Novembre" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "December" msgstr "Décembre" -#: ../../include/text.php:1415 +#: ../../include/text.php:1419 msgid "bytes" msgstr "octets" -#: ../../include/text.php:1439 ../../include/text.php:1451 +#: ../../include/text.php:1443 ../../include/text.php:1455 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: ../../include/text.php:1670 +#: ../../include/text.php:1688 msgid "Select an alternate language" msgstr "Choisir une langue alternative" -#: ../../include/text.php:1926 +#: ../../include/text.php:1944 msgid "activity" msgstr "activité" -#: ../../include/text.php:1929 +#: ../../include/text.php:1947 msgid "post" msgstr "publication" -#: ../../include/text.php:2084 +#: ../../include/text.php:2115 msgid "Item filed" msgstr "Élément classé" @@ -6282,151 +6315,166 @@ msgstr "un message privé" 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:90 +#: ../../include/enotify.php:91 #, 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:97 +#: ../../include/enotify.php:98 #, 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:105 +#: ../../include/enotify.php:106 #, 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:115 +#: ../../include/enotify.php:116 #, 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:116 +#: ../../include/enotify.php:117 #, 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:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: ../../include/enotify.php:126 +#: ../../include/enotify.php:127 #, 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:128 +#: ../../include/enotify.php:129 #, 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:130 +#: ../../include/enotify.php:131 #, 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:141 +#: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notification] %s vous a repéré" -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s vous parle sur %2$s" -#: ../../include/enotify.php:143 +#: ../../include/enotify.php:144 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]vous a taggé[/url]." #: ../../include/enotify.php:155 #, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: ../../include/enotify.php:169 +#, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s vous a sollicité" -#: ../../include/enotify.php:156 +#: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s vous a sollicité via %2$s" -#: ../../include/enotify.php:157 +#: ../../include/enotify.php:171 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s vous a [url=%2$s]sollicité[/url]." -#: ../../include/enotify.php:172 +#: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notification] %s a repéré votre publication" -#: ../../include/enotify.php:173 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s a tagué votre contenu sur %2$s" -#: ../../include/enotify.php:174 +#: ../../include/enotify.php:188 #, 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:185 +#: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notification] Introduction reçue" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:200 #, 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:187 +#: ../../include/enotify.php:201 #, 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:190 ../../include/enotify.php:208 +#: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: ../../include/enotify.php:192 +#: ../../include/enotify.php:206 #, 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:199 +#: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:214 #, 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:201 +#: ../../include/enotify.php:215 #, 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:206 +#: ../../include/enotify.php:220 msgid "Name:" msgstr "Nom :" -#: ../../include/enotify.php:207 +#: ../../include/enotify.php:221 msgid "Photo:" msgstr "Photo :" -#: ../../include/enotify.php:210 +#: ../../include/enotify.php:224 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: ../../include/Scrape.php:583 +#: ../../include/Scrape.php:584 msgid " on Last.fm" msgstr "sur Last.fm" @@ -6564,71 +6612,79 @@ msgstr "Annuaire" msgid "People directory" msgstr "Annuaire des utilisateurs" -#: ../../include/nav.php:140 +#: ../../include/nav.php:132 +msgid "Information" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "" + +#: ../../include/nav.php:142 msgid "Conversations from your friends" msgstr "Conversations de vos amis" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Network Reset" msgstr "" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Load Network page with no filters" msgstr "" -#: ../../include/nav.php:149 +#: ../../include/nav.php:151 msgid "Friend Requests" msgstr "Demande d'amitié" -#: ../../include/nav.php:151 +#: ../../include/nav.php:153 msgid "See all notifications" msgstr "Voir toute notification" -#: ../../include/nav.php:152 +#: ../../include/nav.php:154 msgid "Mark all system notifications seen" msgstr "Marquer toutes les notifications système comme 'vues'" -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Private mail" msgstr "Messages privés" -#: ../../include/nav.php:157 +#: ../../include/nav.php:159 msgid "Inbox" msgstr "Messages entrants" -#: ../../include/nav.php:158 +#: ../../include/nav.php:160 msgid "Outbox" msgstr "Messages sortants" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage" msgstr "Gérer" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage other pages" msgstr "Gérer les autres pages" -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Délégations" - #: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Compte" + +#: ../../include/nav.php:171 msgid "Manage/Edit Profiles" msgstr "Gérer/Éditer les profiles" -#: ../../include/nav.php:171 +#: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" msgstr "Gérer/éditer les amitiés et contacts" -#: ../../include/nav.php:178 +#: ../../include/nav.php:180 msgid "Site setup and configuration" msgstr "Démarrage et configuration du site" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Navigation" msgstr "Navigation" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Site map" msgstr "Carte du site" @@ -6697,23 +6753,27 @@ msgstr "Activité professionnelle/Occupation:" msgid "School/education:" msgstr "Études/Formation:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 -#: ../../include/bbcode.php:621 +#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:918 msgid "Image/photo" msgstr "Image/photo" -#: ../../include/bbcode.php:285 +#: ../../include/bbcode.php:354 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s a écris le post suivant" +"%s wrote the following post" +msgstr "" -#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 +#: ../../include/bbcode.php:453 +msgid "" +msgstr "" + +#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 msgid "$1 wrote:" msgstr "$1 a écrit:" -#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 msgid "Encrypted content" msgstr "Contenu chiffré" @@ -6785,6 +6845,14 @@ msgstr "" msgid "Twitter" msgstr "" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "Divers" @@ -6858,12 +6926,12 @@ msgstr "secondes" msgid "%1$d %2$s ago" msgstr "%1$d %2$s auparavant" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/datetime.php:472 ../../include/items.php:1964 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/datetime.php:473 ../../include/items.php:1965 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" @@ -6882,7 +6950,7 @@ msgstr "Possibilité de créer plusieurs profils" #: ../../include/features.php:30 msgid "Post Composition Features" -msgstr "" +msgstr "Caractéristiques de composition de publication" #: ../../include/features.php:31 msgid "Richtext Editor" @@ -6894,161 +6962,170 @@ msgstr "Activer l'éditeur de texte enrichi" #: ../../include/features.php:32 msgid "Post Preview" -msgstr "" +msgstr "Aperçu du billet" #: ../../include/features.php:32 msgid "Allow previewing posts and comments before publishing them" +msgstr "Permet la prévisualisation des billets et commentaires avant de les publier" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" msgstr "" -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" #: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets réseau pour barre latérale" + +#: ../../include/features.php:39 msgid "Search by Date" msgstr "Rechercher par Date" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Ability to select posts by date ranges" -msgstr "" +msgstr "Capacité de sélectionner les billets par intervalles de dates" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Group Filter" -msgstr "" +msgstr "Filtre de groupe" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Network Filter" -msgstr "" +msgstr "Filtre de réseau" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../include/features.php:41 +#: ../../include/features.php:42 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Network Tabs" msgstr "" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Network Shared Links Tab" msgstr "" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Multiple Deletion" msgstr "" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit Sent Posts" msgstr "" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Tagging" msgstr "" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Post Categories" msgstr "" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Add categories to your posts" msgstr "" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Star Posts" msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" msgstr "Notification de partage du réseau Diaspora" -#: ../../include/diaspora.php:2269 +#: ../../include/diaspora.php:2299 msgid "Attachments:" msgstr "Pièces jointes : " -#: ../../include/acl_selectors.php:325 +#: ../../include/acl_selectors.php:326 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "A new person is sharing with you at " msgstr "Une nouvelle personne partage avec vous à " -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "You have a new follower at " msgstr "Vous avez un nouvel abonné à " -#: ../../include/items.php:4062 +#: ../../include/items.php:4216 msgid "Do you really want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: ../../include/items.php:4285 +#: ../../include/items.php:4443 msgid "Archives" msgstr "Archives" -#: ../../include/oembed.php:140 +#: ../../include/oembed.php:174 msgid "Embedded content" msgstr "Contenu incorporé" -#: ../../include/oembed.php:149 +#: ../../include/oembed.php:183 msgid "Embedding disabled" msgstr "Incorporation désactivée" @@ -7306,7 +7383,7 @@ msgstr "retiré de la liste de suivi" msgid "Drop Contact" msgstr "" -#: ../../include/dba.php:44 +#: ../../include/dba.php:45 #, 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'" diff --git a/view/fr/strings.php b/view/fr/strings.php index 023cccff96..79c54a4bcc 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -109,7 +109,7 @@ $a->strings["Left"] = "Gauche"; $a->strings["Center"] = "Centre"; $a->strings["Color scheme"] = "Palette de couleurs"; $a->strings["Posts font size"] = "Taille de texte des messages"; -$a->strings["Textareas font size"] = ""; +$a->strings["Textareas font size"] = "Taille de police des zones de texte"; $a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; $a->strings["default"] = "défaut"; $a->strings["Background Image"] = ""; @@ -120,6 +120,7 @@ $a->strings["font size"] = ""; $a->strings["base font size for your interface"] = ""; $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 theme width"] = "Largeur du thème"; +$a->strings["Set style"] = ""; $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."; @@ -134,10 +135,10 @@ $a->strings["Remember me"] = "Se souvenir de moi"; $a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; $a->strings["Forgot your password?"] = "Mot de passe oublié?"; $a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["Website Terms of Service"] = ""; -$a->strings["terms of service"] = ""; -$a->strings["Website Privacy Policy"] = ""; -$a->strings["privacy policy"] = ""; +$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; +$a->strings["terms of service"] = "conditions d'utilisation"; +$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; +$a->strings["privacy policy"] = "politique de confidentialité"; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; @@ -232,7 +233,7 @@ $a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$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["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 billets et contacts, et/ou à créer des billets à votre place?"; $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"; @@ -380,11 +381,11 @@ $a->strings["This is most often a permission setting, as the web server may not $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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l é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."; @@ -418,6 +419,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; $a->strings["Never"] = "Jamais"; +$a->strings["At post arrival"] = ""; $a->strings["Frequently"] = "Fréquemment"; $a->strings["Hourly"] = "Toutes les heures"; $a->strings["Twice daily"] = "Deux fois par jour"; @@ -478,9 +480,9 @@ $a->strings["URL to update the global directory. If this is not set, the global $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"] = "Publications privées par défaut pour les nouveaux utilisateurs"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; $a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un postage/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."; $a->strings["Disallow public access to addons listed in the apps menu."] = ""; $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; $a->strings["Don't embed private images in posts"] = ""; @@ -498,7 +500,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rati $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["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; $a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; @@ -605,7 +607,7 @@ $a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; $a->strings["link"] = "lien"; $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["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["Edit post"] = "Éditer le billet"; $a->strings["upload photo"] = "envoi image"; $a->strings["Attach file"] = "Joindre fichier"; $a->strings["attach file"] = "ajout fichier"; @@ -620,7 +622,7 @@ $a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; $a->strings["clear location"] = "supp. localisation"; $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["Public post"] = "Billet 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"; @@ -769,6 +771,9 @@ $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; $a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; $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["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Fetch further information for feeds"] = ""; $a->strings["Suggestions"] = "Suggestions"; $a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; $a->strings["All Contacts"] = "Tous les contacts"; @@ -790,11 +795,10 @@ $a->strings["Edit contact"] = "Éditer le contact"; $a->strings["Search your contacts"] = "Rechercher dans vos contacts"; $a->strings["Update"] = "Mises-à-jour"; $a->strings["everybody"] = "tout le monde"; -$a->strings["Account settings"] = "Compte"; $a->strings["Additional features"] = "Fonctions supplémentaires"; -$a->strings["Display settings"] = "Affichage"; -$a->strings["Connector settings"] = "Connecteurs"; -$a->strings["Plugin settings"] = "Extensions"; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Delegations"] = "Délégations"; $a->strings["Connected apps"] = "Applications connectées"; $a->strings["Export personal data"] = "Exporter"; $a->strings["Remove account"] = "Supprimer le compte"; @@ -836,7 +840,6 @@ $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:"; @@ -861,6 +864,7 @@ $a->strings["Number of items to display per page:"] = "Nombre d’éléments par $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = ""; $a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Don't show notices"] = ""; $a->strings["Infinite scroll"] = ""; $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)"; @@ -1093,7 +1097,7 @@ $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vo $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["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi"; $a->strings["Permissions"] = "Permissions"; $a->strings["Private Photo"] = "Photo privée"; $a->strings["Public Photo"] = "Photo publique"; @@ -1120,6 +1124,8 @@ $a->strings["Public photo"] = "Photo publique"; $a->strings["Share"] = "Partager"; $a->strings["View Album"] = "Voir l'album"; $a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; $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["No videos selected"] = ""; @@ -1241,11 +1247,11 @@ $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 liked %s's post"] = "%s a aimé le billet de %s"; +$a->strings["%s disliked %s's post"] = "%s n'a pas aimé le billet 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["%s created a new post"] = "%s a publié un billet"; +$a->strings["%s commented on %s's post"] = "%s a commenté le billet 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 personal notifications."] = "Aucun notification personnelle."; @@ -1300,6 +1306,7 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = " $a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; $a->strings["User not found."] = ""; $a->strings["There is no status with this id."] = ""; +$a->strings["There is no conversation with this id."] = ""; $a->strings["view full size"] = "voir en pleine taille"; $a->strings["Starts:"] = "Débute:"; $a->strings["Finishes:"] = "Finit:"; @@ -1457,6 +1464,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur $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] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; $a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; @@ -1506,6 +1516,8 @@ $a->strings["Search site content"] = "Rechercher dans le contenu du site"; $a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; $a->strings["Directory"] = "Annuaire"; $a->strings["People directory"] = "Annuaire des utilisateurs"; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; $a->strings["Conversations from your friends"] = "Conversations de vos amis"; $a->strings["Network Reset"] = ""; $a->strings["Load Network page with no filters"] = ""; @@ -1517,7 +1529,7 @@ $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["Delegations"] = "Délégations"; +$a->strings["Account settings"] = "Compte"; $a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; $a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; $a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; @@ -1540,7 +1552,8 @@ $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; $a->strings["Image/photo"] = "Image/photo"; -$a->strings["%s wrote the following post"] = "%s a écris le post suivant"; +$a->strings["%s wrote the following post"] = ""; +$a->strings[""] = ""; $a->strings["$1 wrote:"] = "$1 a écrit:"; $a->strings["Encrypted content"] = "Contenu chiffré"; $a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; @@ -1560,6 +1573,8 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = ""; $a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["Statusnet"] = ""; $a->strings["Miscellaneous"] = "Divers"; $a->strings["year"] = "an"; $a->strings["month"] = "mois"; @@ -1583,17 +1598,19 @@ $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["General Features"] = "Fonctions générales"; $a->strings["Multiple Profiles"] = "Profils multiples"; $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -$a->strings["Post Composition Features"] = ""; +$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; $a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; $a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Post Preview"] = "Aperçu du billet"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des billets et commentaires avant de les publier"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; $a->strings["Search by Date"] = "Rechercher par Date"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; +$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les billets par intervalles de dates"; +$a->strings["Group Filter"] = "Filtre de groupe"; $a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; +$a->strings["Network Filter"] = "Filtre de réseau"; $a->strings["Enable widget to display Network posts only from selected network"] = ""; $a->strings["Save search terms for re-use"] = ""; $a->strings["Network Tabs"] = ""; From c732cefcfd794402e7f03f8c59b573b50c564379 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 30 Apr 2014 17:01:27 +0200 Subject: [PATCH 04/30] CS: update to the strings --- view/cs/messages.po | 2147 ++++++++++++++++++++++--------------------- view/cs/strings.php | 33 +- 2 files changed, 1137 insertions(+), 1043 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index 027097fb5b..c51af82316 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-31 18:07+0100\n" -"PO-Revision-Date: 2014-01-04 14:37+0000\n" +"POT-Creation-Date: 2014-04-26 09:22+0200\n" +"PO-Revision-Date: 2014-04-28 17:57+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" @@ -23,24 +23,24 @@ msgid "This entry was edited" msgstr "Tento záznam byl editován" #: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../mod/photos.php:1355 msgid "Private Message" msgstr "Soukromá zpráva" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:663 +#: ../../mod/content.php:727 ../../mod/settings.php:670 msgid "Edit" msgstr "Upravit" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../mod/content.php:739 ../../include/conversation.php:612 msgid "Select" msgstr "Vybrat" -#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:695 -#: ../../mod/settings.php:664 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:703 +#: ../../mod/settings.php:671 ../../mod/group.php:171 +#: ../../mod/photos.php:1646 ../../include/conversation.php:613 msgid "Delete" msgstr "Odstranit" @@ -69,7 +69,7 @@ msgid "add tag" msgstr "přidat štítek" #: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../mod/photos.php:1538 msgid "I like this (toggle)" msgstr "Líbí se mi to (přepínač)" @@ -78,7 +78,7 @@ msgid "like" msgstr "má rád" #: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" msgstr "Nelíbí se mi to (přepínač)" @@ -94,58 +94,58 @@ msgstr "Sdílet toto" msgid "share" msgstr "sdílí" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "Kategorie:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "Vyplněn pod:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Zobrazit profil uživatele %s na %s" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "pro" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "přes" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "Zeď-na-Zeď" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "přes Zeď-na-Zeď " -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s od %s" -#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 +#: ../../mod/content.php:708 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 msgid "Comment" msgstr "Okomentovat" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../include/conversation.php:690 ../../include/conversation.php:1102 msgid "Please wait" msgstr "Čekejte prosím" -#: ../../object/Item.php:345 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -153,142 +153,143 @@ msgstr[0] "%d komentář" msgstr[1] "%d komentářů" msgstr[2] "%d komentářů" -#: ../../object/Item.php:347 ../../object/Item.php:360 -#: ../../mod/content.php:604 ../../include/text.php:1928 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1946 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" msgstr[2] "komentář" -#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "zobrazit více" -#: ../../object/Item.php:633 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/content.php:706 +#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 +#: ../../mod/photos.php:1685 msgid "This is you" msgstr "Nastavte Vaši polohu" -#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 #: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" msgstr "Odeslat" -#: ../../object/Item.php:637 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "Tučné" -#: ../../object/Item.php:638 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "Kurzíva" -#: ../../object/Item.php:639 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "Podrtžené" -#: ../../object/Item.php:640 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "Citovat" -#: ../../object/Item.php:641 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "Kód" -#: ../../object/Item.php:642 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "Obrázek" -#: ../../object/Item.php:643 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "Odkaz" -#: ../../object/Item.php:644 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "Video" -#: ../../object/Item.php:645 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 +#: ../../include/conversation.php:1119 msgid "Preview" msgstr "Náhled" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Musíte být přihlášení pro použití rozšíření." -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "Nenalezen" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "Stránka nenalezena" -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Nedostatečné oprávnění" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 #: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 -#: ../../mod/settings.php:96 ../../mod/settings.php:583 -#: ../../mod/settings.php:588 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:101 ../../mod/settings.php:590 +#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 #: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4215 +#: ../../wall_attach.php:55 ../../include/items.php:4373 msgid "Permission denied." msgstr "Přístup odmítnut." -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "přepnout mobil" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "Domů" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 +#: ../../include/nav.php:145 msgid "Your posts and conversations" msgstr "Vaše příspěvky a konverzace" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -301,7 +302,7 @@ msgid "Your profile page" msgstr "Vaše profilová stránka" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "Fotografie" @@ -312,7 +313,7 @@ msgid "Your photos" msgstr "Vaše fotky" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "Události" @@ -340,13 +341,13 @@ msgstr "Komunita" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" msgstr "nikdy nezobrazit" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" msgstr "zobrazit" @@ -355,6 +356,7 @@ msgstr "zobrazit" #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 #: ../../view/theme/clean/config.php:73 #: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:49 msgid "Theme settings" msgstr "Nastavení téma" @@ -376,8 +378,8 @@ msgstr "Nastav výšku řádku pro přízpěvky a komentáře." msgid "Set resolution for middle column" msgstr "Nastav rozlišení pro prostřední sloupec" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 -#: ../../include/nav.php:171 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:173 msgid "Contacts" msgstr "Kontakty" @@ -411,28 +413,28 @@ msgid "Last likes" msgstr "Poslední líbí/nelíbí" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1922 +#: ../../include/conversation.php:246 ../../include/text.php:1940 msgid "event" msgstr "událost" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1878 +#: ../../include/diaspora.php:1908 msgid "status" msgstr "Stav" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1924 ../../include/diaspora.php:1878 +#: ../../include/text.php:1942 ../../include/diaspora.php:1908 msgid "photo" msgstr "fotografie" -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s má rád %2$s' na %3$s" @@ -443,16 +445,16 @@ msgstr "%1$s má rád %2$s' na %3$s" msgid "Last photos" msgstr "Poslední fotografie" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 msgid "Contact Photos" msgstr "Fotogalerie kontaktu" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 ../../include/user.php:334 @@ -489,8 +491,8 @@ msgstr "Pozvat přátele" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 +#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../include/nav.php:169 msgid "Settings" msgstr "Nastavení" @@ -568,7 +570,7 @@ msgid "Set colour scheme" msgstr "Nastavit barevné schéma" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1658 +#: ../../include/text.php:1676 msgid "default" msgstr "standardní" @@ -606,210 +608,214 @@ msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a v msgid "Set theme width" msgstr "Nastavení šířku grafické šablony" -#: ../../boot.php:684 +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Nastavit styl" + +#: ../../boot.php:692 msgid "Delete this item?" msgstr "Odstranit tuto položku?" -#: ../../boot.php:687 +#: ../../boot.php:695 msgid "show fewer" msgstr "zobrazit méně" -#: ../../boot.php:1015 +#: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." -#: ../../boot.php:1017 +#: ../../boot.php:1025 #, php-format msgid "Update Error at %s" msgstr "Chyba aktualizace na %s" -#: ../../boot.php:1127 +#: ../../boot.php:1135 msgid "Create a New Account" msgstr "Vytvořit nový účet" -#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 +#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" msgstr "Registrovat" -#: ../../boot.php:1152 ../../include/nav.php:73 +#: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" msgstr "Odhlásit se" -#: ../../boot.php:1153 ../../include/nav.php:91 +#: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" msgstr "Přihlásit se" -#: ../../boot.php:1155 +#: ../../boot.php:1163 msgid "Nickname or Email address: " msgstr "Přezdívka nebo e-mailová adresa:" -#: ../../boot.php:1156 +#: ../../boot.php:1164 msgid "Password: " msgstr "Heslo: " -#: ../../boot.php:1157 +#: ../../boot.php:1165 msgid "Remember me" msgstr "Pamatuj si mne" -#: ../../boot.php:1160 +#: ../../boot.php:1168 msgid "Or login using OpenID: " msgstr "Nebo přihlášení pomocí OpenID: " -#: ../../boot.php:1166 +#: ../../boot.php:1174 msgid "Forgot your password?" msgstr "Zapomněli jste své heslo?" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 +#: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" msgstr "Obnovení hesla" -#: ../../boot.php:1169 +#: ../../boot.php:1177 msgid "Website Terms of Service" msgstr "Podmínky použití serveru" -#: ../../boot.php:1170 +#: ../../boot.php:1178 msgid "terms of service" msgstr "podmínky použití" -#: ../../boot.php:1172 +#: ../../boot.php:1180 msgid "Website Privacy Policy" msgstr "Pravidla ochrany soukromí serveru" -#: ../../boot.php:1173 +#: ../../boot.php:1181 msgid "privacy policy" msgstr "Ochrana soukromí" -#: ../../boot.php:1302 +#: ../../boot.php:1314 msgid "Requested account is not available." msgstr "Požadovaný účet není dostupný." -#: ../../boot.php:1341 ../../mod/profile.php:21 +#: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." msgstr "Požadovaný profil není k dispozici." -#: ../../boot.php:1381 ../../boot.php:1485 +#: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" msgstr "Upravit profil" -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" msgstr "Spojit" -#: ../../boot.php:1447 +#: ../../boot.php:1459 msgid "Message" msgstr "Zpráva" -#: ../../boot.php:1455 ../../include/nav.php:169 +#: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" msgstr "Profily" -#: ../../boot.php:1455 +#: ../../boot.php:1467 msgid "Manage/edit profiles" msgstr "Spravovat/upravit profily" -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 +#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" msgstr "Změnit profilovou fotografii" -#: ../../boot.php:1462 ../../mod/profiles.php:727 +#: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" msgstr "Vytvořit nový profil" -#: ../../boot.php:1472 ../../mod/profiles.php:738 +#: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" msgstr "Profilový obrázek" -#: ../../boot.php:1475 ../../mod/profiles.php:740 +#: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" msgstr "viditelné pro všechny" -#: ../../boot.php:1476 ../../mod/profiles.php:741 +#: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" msgstr "Upravit viditelnost" -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" msgstr "Místo:" -#: ../../boot.php:1503 ../../mod/directory.php:136 +#: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" msgstr "Pohlaví:" -#: ../../boot.php:1506 ../../mod/directory.php:138 +#: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" msgstr "Status:" -#: ../../boot.php:1508 ../../mod/directory.php:140 +#: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" msgstr "Domácí stránka:" -#: ../../boot.php:1584 ../../boot.php:1670 +#: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" msgstr "g A l F d" -#: ../../boot.php:1585 ../../boot.php:1671 +#: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" msgstr "d. F" -#: ../../boot.php:1630 ../../boot.php:1711 +#: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" msgstr "[Dnes]" -#: ../../boot.php:1642 +#: ../../boot.php:1654 msgid "Birthday Reminders" msgstr "Připomínka narozenin" -#: ../../boot.php:1643 +#: ../../boot.php:1655 msgid "Birthdays this week:" msgstr "Narozeniny tento týden:" -#: ../../boot.php:1704 +#: ../../boot.php:1716 msgid "[No description]" msgstr "[Žádný popis]" -#: ../../boot.php:1722 +#: ../../boot.php:1734 msgid "Event Reminders" msgstr "Připomenutí událostí" -#: ../../boot.php:1723 +#: ../../boot.php:1735 msgid "Events this week:" msgstr "Události tohoto týdne:" -#: ../../boot.php:1960 ../../include/nav.php:76 +#: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" msgstr "Stav" -#: ../../boot.php:1963 +#: ../../boot.php:1975 msgid "Status Messages and Posts" msgstr "Statusové zprávy a příspěvky " -#: ../../boot.php:1970 +#: ../../boot.php:1982 msgid "Profile Details" msgstr "Detaily profilu" -#: ../../boot.php:1977 ../../mod/photos.php:51 +#: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Fotoalba" -#: ../../boot.php:1981 ../../boot.php:1984 +#: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" msgstr "Videa" -#: ../../boot.php:1994 +#: ../../boot.php:2006 msgid "Events and Calendar" msgstr "Události a kalendář" -#: ../../boot.php:1998 ../../mod/notes.php:44 +#: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Osobní poznámky" -#: ../../boot.php:2001 +#: ../../boot.php:2013 msgid "Only You Can See This" msgstr "Toto můžete vidět jen Vy" @@ -829,15 +835,15 @@ msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 #: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." msgstr "Veřejný přístup odepřen." -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 +#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4023 +#: ../../include/items.php:4177 msgid "Item not found." msgstr "Položka nenalezena." @@ -845,7 +851,7 @@ msgstr "Položka nenalezena." msgid "Access to this profile has been restricted." msgstr "Přístup na tento profil byl omezen." -#: ../../mod/display.php:239 +#: ../../mod/display.php:263 msgid "Item has been removed." msgstr "Položka byla odstraněna." @@ -890,126 +896,126 @@ msgstr "Nejsou žádné nainstalované doplňky/aplikace" msgid "%1$s welcomes %2$s" msgstr "%1$s vítá %2$s" -#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro %s" -#: ../../mod/register.php:99 +#: ../../mod/register.php:100 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." -#: ../../mod/register.php:103 +#: ../../mod/register.php:104 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." -#: ../../mod/register.php:108 +#: ../../mod/register.php:109 msgid "Your registration can not be processed." msgstr "Vaši registraci nelze zpracovat." -#: ../../mod/register.php:148 +#: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" msgstr "Žádost o registraci na %s" -#: ../../mod/register.php:157 +#: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." msgstr "Vaše registrace čeká na schválení vlastníkem serveru." -#: ../../mod/register.php:195 ../../mod/uimport.php:50 +#: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "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:223 +#: ../../mod/register.php:224 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'." -#: ../../mod/register.php:224 +#: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." -#: ../../mod/register.php:225 +#: ../../mod/register.php:226 msgid "Your OpenID (optional): " msgstr "Vaše OpenID (nepovinné): " -#: ../../mod/register.php:239 +#: ../../mod/register.php:240 msgid "Include your profile in member directory?" msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." -#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 -#: ../../mod/settings.php:981 ../../mod/settings.php:987 -#: ../../mod/settings.php:995 ../../mod/settings.php:999 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 -#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4064 +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:998 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4218 msgid "Yes" msgstr "Ano" -#: ../../mod/register.php:243 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 -#: ../../mod/settings.php:987 ../../mod/settings.php:995 -#: ../../mod/settings.php:999 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 -#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 -#: ../../mod/profiles.php:611 +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/profiles.php:615 msgid "No" msgstr "Ne" -#: ../../mod/register.php:260 +#: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." msgstr "Členství na tomto webu je pouze na pozvání." -#: ../../mod/register.php:261 +#: ../../mod/register.php:262 msgid "Your invitation ID: " msgstr "Vaše pozvání ID:" -#: ../../mod/register.php:264 ../../mod/admin.php:572 +#: ../../mod/register.php:265 ../../mod/admin.php:573 msgid "Registration" msgstr "Registrace" -#: ../../mod/register.php:272 +#: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Vaše celé jméno (např. Jan Novák):" -#: ../../mod/register.php:273 +#: ../../mod/register.php:274 msgid "Your Email Address: " msgstr "Vaše e-mailová adresa:" -#: ../../mod/register.php:274 +#: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "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:275 +#: ../../mod/register.php:276 msgid "Choose a nickname: " msgstr "Vyberte přezdívku:" -#: ../../mod/register.php:284 ../../mod/uimport.php:64 +#: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" msgstr "Import" -#: ../../mod/register.php:285 +#: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" msgstr "Import Vašeho profilu do této friendica instance" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "Profil nenalezen" @@ -1054,7 +1060,7 @@ msgid "Unable to set contact photo." msgstr "Nelze nastavit fotografii kontaktu." #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s je nyní přítel s %2$s" @@ -1219,7 +1225,7 @@ msgstr "Žádný příjemce." #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" msgstr "Zadejte prosím URL odkaz:" @@ -1251,13 +1257,13 @@ msgstr "Vaše zpráva:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 msgid "Upload photo" msgstr "Nahrát fotografii" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1088 msgid "Insert web link" msgstr "Vložit webový odkaz" @@ -1456,12 +1462,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "Opravdu chcete smazat tento návrh?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4067 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 +#: ../../include/items.php:4221 msgid "Cancel" msgstr "Zrušit" @@ -1475,72 +1481,72 @@ msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to msgid "Ignore/Hide" msgstr "Ignorovat / skrýt" -#: ../../mod/network.php:179 +#: ../../mod/network.php:136 msgid "Search Results For:" msgstr "Výsledky hledání pro:" -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" msgstr "Odstranit termín" -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:42 msgid "Saved Searches" msgstr "Uložená hledání" -#: ../../mod/network.php:232 ../../include/group.php:275 +#: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" msgstr "přidat" -#: ../../mod/network.php:394 +#: ../../mod/network.php:350 msgid "Commented Order" msgstr "Dle komentářů" -#: ../../mod/network.php:397 +#: ../../mod/network.php:353 msgid "Sort by Comment Date" msgstr "Řadit podle data komentáře" -#: ../../mod/network.php:400 +#: ../../mod/network.php:356 msgid "Posted Order" msgstr "Dle data" -#: ../../mod/network.php:403 +#: ../../mod/network.php:359 msgid "Sort by Post Date" msgstr "Řadit podle data příspěvku" -#: ../../mod/network.php:441 ../../mod/notifications.php:88 +#: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" msgstr "Osobní" -#: ../../mod/network.php:444 +#: ../../mod/network.php:368 msgid "Posts that mention or involve you" msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" -#: ../../mod/network.php:450 +#: ../../mod/network.php:374 msgid "New" msgstr "Nové" -#: ../../mod/network.php:453 +#: ../../mod/network.php:377 msgid "Activity Stream - by date" msgstr "Proud aktivit - dle data" -#: ../../mod/network.php:459 +#: ../../mod/network.php:383 msgid "Shared Links" msgstr "Sdílené odkazy" -#: ../../mod/network.php:462 +#: ../../mod/network.php:386 msgid "Interesting Links" msgstr "Zajímavé odkazy" -#: ../../mod/network.php:468 +#: ../../mod/network.php:392 msgid "Starred" msgstr "S hvězdičkou" -#: ../../mod/network.php:471 +#: ../../mod/network.php:395 msgid "Favourite Posts" msgstr "Oblíbené přízpěvky" -#: ../../mod/network.php:539 +#: ../../mod/network.php:457 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -1549,31 +1555,31 @@ 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:542 +#: ../../mod/network.php:460 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:588 ../../mod/content.php:119 +#: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" msgstr "Žádná taková skupina" -#: ../../mod/network.php:599 ../../mod/content.php:130 +#: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" msgstr "Skupina je prázdná" -#: ../../mod/network.php:605 ../../mod/content.php:134 +#: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " msgstr "Skupina: " -#: ../../mod/network.php:617 +#: ../../mod/network.php:548 msgid "Contact: " msgstr "Kontakt: " -#: ../../mod/network.php:619 +#: ../../mod/network.php:550 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:624 +#: ../../mod/network.php:555 msgid "Invalid contact." msgstr "Neplatný kontakt." @@ -1880,19 +1886,20 @@ msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htc msgid "Theme settings updated." msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../mod/admin.php:101 ../../mod/admin.php:570 +#: ../../mod/admin.php:101 ../../mod/admin.php:571 msgid "Site" msgstr "Web" -#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 +#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 +#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 +#: ../../mod/settings.php:56 msgid "Plugins" msgstr "Pluginy" -#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 +#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 msgid "Themes" msgstr "Témata" @@ -1900,11 +1907,11 @@ msgstr "Témata" msgid "DB updates" msgstr "Aktualizace databáze" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 msgid "Logs" msgstr "Logy" -#: ../../mod/admin.php:125 ../../include/nav.php:178 +#: ../../mod/admin.php:125 ../../include/nav.php:180 msgid "Admin" msgstr "Administrace" @@ -1916,19 +1923,19 @@ msgstr "Funkčnosti rozšíření" msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:187 ../../mod/admin.php:852 +#: ../../mod/admin.php:187 ../../mod/admin.php:853 msgid "Normal Account" msgstr "Normální účet" -#: ../../mod/admin.php:188 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:854 msgid "Soapbox Account" msgstr "Soapbox účet" -#: ../../mod/admin.php:189 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:855 msgid "Community/Celebrity Account" msgstr "Komunitní účet / Účet celebrity" -#: ../../mod/admin.php:190 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:856 msgid "Automatic Friend Account" msgstr "Účet s automatickým schvalováním přátel" @@ -1944,9 +1951,9 @@ msgstr "Soukromé fórum" msgid "Message queues" msgstr "Fronty zpráv" -#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 -#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 -#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 +#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 +#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 +#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 msgid "Administration" msgstr "Administrace" @@ -1978,316 +1985,320 @@ msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:512 ../../mod/settings.php:810 +#: ../../mod/admin.php:512 ../../mod/settings.php:822 msgid "No special theme for mobile devices" msgstr "žádné speciální téma pro mobilní zařízení" -#: ../../mod/admin.php:529 ../../mod/contacts.php:402 +#: ../../mod/admin.php:529 ../../mod/contacts.php:408 msgid "Never" msgstr "Nikdy" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 +msgid "At post arrival" +msgstr "Při obdržení příspěvku" + +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Často" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "každou hodinu" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dvakrát denně" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "denně" -#: ../../mod/admin.php:538 +#: ../../mod/admin.php:539 msgid "Multi user instance" msgstr "Více uživatelská instance" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:557 msgid "Closed" msgstr "Uzavřeno" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:558 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:559 msgid "Open" msgstr "Otevřená" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:563 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:563 +#: ../../mod/admin.php:564 msgid "Force all links to use SSL" msgstr "Vyžadovat u všech odkazů použití SSL" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:565 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:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 -#: ../../mod/admin.php:1332 ../../mod/settings.php:601 -#: ../../mod/settings.php:711 ../../mod/settings.php:780 -#: ../../mod/settings.php:856 ../../mod/settings.php:1084 +#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 +#: ../../mod/admin.php:1333 ../../mod/settings.php:608 +#: ../../mod/settings.php:718 ../../mod/settings.php:792 +#: ../../mod/settings.php:871 ../../mod/settings.php:1101 msgid "Save Settings" msgstr "Uložit Nastavení" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:574 msgid "File upload" msgstr "Nahrání souborů" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:575 msgid "Policies" msgstr "Politiky" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:576 msgid "Advanced" msgstr "Pokročilé" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:577 msgid "Performance" msgstr "Výkonnost" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:578 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Site name" msgstr "Název webu" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "Additional Info" msgstr "Dodatečné informace" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System language" msgstr "Systémový jazyk" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "System theme" msgstr "Grafická šablona systému " -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 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:585 +#: ../../mod/admin.php:586 msgid "Mobile system theme" msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Theme for mobile devices" msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "SSL link policy" msgstr "Politika SSL odkazů" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 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:587 +#: ../../mod/admin.php:588 msgid "Old style 'Share'" msgstr "Sdílení \"postaru\"" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Hide help entry from navigation menu" msgstr "skrýt nápovědu z navigačního menu" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Make this instance multi-user or single-user for the named user" msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 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:591 +#: ../../mod/admin.php:592 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 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:592 +#: ../../mod/admin.php:593 msgid "JPEG image quality" msgstr "JPEG kvalita obrázku" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 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:594 +#: ../../mod/admin.php:595 msgid "Register policy" msgstr "Politika registrace" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Register text" msgstr "Registrace textu" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Will be displayed prominently on the registration page." msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "Accounts abandoned after x days" msgstr "Účet je opuštěn po x dnech" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 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:598 +#: ../../mod/admin.php:599 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 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:599 +#: ../../mod/admin.php:600 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 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:600 +#: ../../mod/admin.php:601 msgid "Block public" msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 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:601 +#: ../../mod/admin.php:602 msgid "Force publish" msgstr "Publikovat" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 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:602 +#: ../../mod/admin.php:603 msgid "Global directory update URL" msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 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:603 +#: ../../mod/admin.php:604 msgid "Allow threaded items" msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 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:604 +#: ../../mod/admin.php:605 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Disallow public access to addons listed in the apps menu." msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2295,254 +2306,254 @@ msgid "" "while." msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit " -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Block multiple registrations" msgstr "Blokovat více registrací" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 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:610 +#: ../../mod/admin.php:611 msgid "OpenID support" msgstr "podpora OpenID" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support for registration and logins." msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Fullname check" msgstr "kontrola úplného jména" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 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:612 +#: ../../mod/admin.php:613 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Use PHP UTF8 regular expressions" msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Show Community Page" msgstr "Zobrazit stránku komunity" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 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:614 +#: ../../mod/admin.php:615 msgid "Enable OStatus support" msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"Provide built-in OStatus (StatusNet, GNU Social 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í." +msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "OStatus conversation completion interval" msgstr "Interval dokončení konverzace OStatus" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Enable Diaspora support" msgstr "Povolit podporu Diaspora" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Provide built-in Diaspora network compatibility." msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Only allow Friendica contacts" msgstr "Povolit pouze Friendica kontakty" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 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:618 +#: ../../mod/admin.php:619 msgid "Verify SSL" msgstr "Ověřit SSL" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 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:619 +#: ../../mod/admin.php:620 msgid "Proxy user" msgstr "Proxy uživatel" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Network timeout" msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 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:622 +#: ../../mod/admin.php:623 msgid "Delivery interval" msgstr "Interval doručování" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 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:623 +#: ../../mod/admin.php:624 msgid "Poll interval" msgstr "Dotazovací interval" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 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:624 +#: ../../mod/admin.php:625 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 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:626 +#: ../../mod/admin.php:627 msgid "Use MySQL full text engine" msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress Language" msgstr "Potlačit Jazyk" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress language information in meta information about a posting." msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Path to item cache" msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Cache duration in seconds" msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)." -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Path for lock file" msgstr "Cesta k souboru zámku" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:633 msgid "Base path to installation" msgstr "Základní cesta k instalaci" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:635 msgid "New base url" msgstr "Nová výchozí url adresa" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:653 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:663 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol." -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:666 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:670 #, 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:672 +#: ../../mod/admin.php:673 #, php-format msgid "Update function %s could not be found." msgstr "Aktualizační funkce %s nebyla nalezena." -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:688 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 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:693 +#: ../../mod/admin.php:694 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:695 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:741 msgid "Registration successful. Email send to user" msgstr "Registrace úspěšná. Email zaslán uživateli" -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:751 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" @@ -2550,7 +2561,7 @@ 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:757 +#: ../../mod/admin.php:758 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -2558,240 +2569,240 @@ msgstr[0] "%s uživatel smazán" msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:796 +#: ../../mod/admin.php:797 #, php-format msgid "User '%s' deleted" msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' unblocked" msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' blocked" msgstr "Uživatel '%s' blokován" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:900 msgid "Add User" msgstr "Přidat Uživatele" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:901 msgid "select all" msgstr "Vybrat vše" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:902 msgid "User registrations waiting for confirm" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:903 msgid "User waiting for permanent deletion" msgstr "Uživatel čeká na trvalé smazání" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:904 msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:929 ../../mod/crepair.php:150 -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:930 ../../mod/crepair.php:150 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 msgid "Name" msgstr "Jméno" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "E-mail" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:905 msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:905 ../../mod/notifications.php:161 +#: ../../mod/admin.php:906 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Schválit" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:907 msgid "Deny" msgstr "Odmítnout" -#: ../../mod/admin.php:908 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "Blokovat" -#: ../../mod/admin.php:909 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "Odblokovat" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:911 msgid "Site admin" msgstr "Site administrátor" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:915 msgid "New User" msgstr "Nový uživatel" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Register date" msgstr "Datum registrace" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last login" msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last item" msgstr "Poslední položka" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:916 msgid "Deleted since" msgstr "Smazán od" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:917 ../../mod/settings.php:35 msgid "Account" msgstr "Účet" -#: ../../mod/admin.php:918 +#: ../../mod/admin.php:919 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?" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:920 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?" -#: ../../mod/admin.php:929 +#: ../../mod/admin.php:930 msgid "Name of the new user." msgstr "Jméno nového uživatele" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname" msgstr "Přezdívka" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname of the new user." msgstr "Přezdívka nového uživatele." -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:932 msgid "Email address of the new user." msgstr "Emailová adresa nového uživatele." -#: ../../mod/admin.php:964 +#: ../../mod/admin.php:965 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:968 +#: ../../mod/admin.php:969 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s povolen." -#: ../../mod/admin.php:978 ../../mod/admin.php:1181 +#: ../../mod/admin.php:979 ../../mod/admin.php:1182 msgid "Disable" msgstr "Zakázat" -#: ../../mod/admin.php:980 ../../mod/admin.php:1183 +#: ../../mod/admin.php:981 ../../mod/admin.php:1184 msgid "Enable" msgstr "Povolit" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 msgid "Toggle" msgstr "Přepnout" -#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 msgid "Maintainer: " msgstr "Správce: " -#: ../../mod/admin.php:1141 +#: ../../mod/admin.php:1142 msgid "No themes found." msgstr "Nenalezeny žádná témata." -#: ../../mod/admin.php:1203 +#: ../../mod/admin.php:1204 msgid "Screenshot" msgstr "Snímek obrazovky" -#: ../../mod/admin.php:1249 +#: ../../mod/admin.php:1250 msgid "[Experimental]" msgstr "[Experimentální]" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1251 msgid "[Unsupported]" msgstr "[Nepodporováno]" -#: ../../mod/admin.php:1277 +#: ../../mod/admin.php:1278 msgid "Log settings updated." msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:1333 +#: ../../mod/admin.php:1334 msgid "Clear" msgstr "Vyčistit" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1340 msgid "Enable Debugging" msgstr "Povolit ladění" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "Log file" msgstr "Soubor s logem" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 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:1341 +#: ../../mod/admin.php:1342 msgid "Log level" msgstr "Úroveň auditu" -#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 +#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 msgid "Update now" msgstr "Aktualizovat" -#: ../../mod/admin.php:1391 +#: ../../mod/admin.php:1392 msgid "Close" msgstr "Zavřít" -#: ../../mod/admin.php:1397 +#: ../../mod/admin.php:1398 msgid "FTP Host" msgstr "Hostitel FTP" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1399 msgid "FTP Path" msgstr "Cesta FTP" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1400 msgid "FTP User" msgstr "FTP uživatel" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1401 msgid "FTP Password" msgstr "FTP heslo" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 -#: ../../include/text.php:935 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 +#: ../../include/text.php:939 ../../include/nav.php:118 msgid "Search" msgstr "Vyhledávání" #: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." msgstr "Žádné výsledky." @@ -2816,75 +2827,75 @@ msgstr "Položka nenalezena" msgid "Edit post" msgstr "Upravit příspěvek" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 msgid "upload photo" msgstr "nahrát fotky" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 msgid "Attach file" msgstr "Přiložit soubor" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 msgid "attach file" msgstr "přidat soubor" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 msgid "web link" msgstr "webový odkaz" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 msgid "Insert video link" msgstr "Zadejte odkaz na video" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 msgid "video link" msgstr "odkaz na video" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 msgid "Insert audio link" msgstr "Zadejte odkaz na zvukový záznam" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 msgid "audio link" msgstr "odkaz na audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 msgid "Set your location" msgstr "Nastavte vaši polohu" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 msgid "set location" msgstr "nastavit místo" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 msgid "Clear browser location" msgstr "Odstranit adresu v prohlížeči" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 msgid "clear location" msgstr "vymazat místo" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 msgid "Permission settings" msgstr "Nastavení oprávnění" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 msgid "CC: email addresses" msgstr "skrytá kopie: e-mailové adresy" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 msgid "Public post" msgstr "Veřejný příspěvek" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 msgid "Set title" msgstr "Nastavit titulek" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 msgid "Categories (comma-separated list)" msgstr "Kategorie (čárkou oddělený seznam)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com" @@ -2913,7 +2924,7 @@ msgstr "Přihlaste se, prosím." msgid "Find on this site" msgstr "Nalézt na tomto webu" -#: ../../mod/directory.php:59 ../../mod/contacts.php:685 +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " msgstr "Zjištění: " @@ -2921,12 +2932,12 @@ msgstr "Zjištění: " msgid "Site Directory" msgstr "Adresář serveru" -#: ../../mod/directory.php:61 ../../mod/contacts.php:686 +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Najít" -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 +#: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " msgstr "Věk: " @@ -3055,7 +3066,7 @@ msgstr "Vzdálené soukromé informace nejsou k dispozici." msgid "Visible to:" msgstr "Viditelné pro:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 msgid "Save" msgstr "Uložit" @@ -3153,7 +3164,7 @@ msgstr "Neplatné URL profilu." msgid "Disallowed profile URL." msgstr "Nepovolené URL profilu." -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." msgstr "Nepodařilo se aktualizovat kontakt." @@ -3189,7 +3200,7 @@ msgstr "Prosím potvrďte Vaši žádost o propojení %s." msgid "Confirm" msgstr "Potvrdit" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 msgid "[Name Withheld]" msgstr "[Jméno odepřeno]" @@ -3241,7 +3252,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3267,7 +3278,7 @@ msgstr "Odeslat žádost" msgid "[Embedded content - reload page to view]" msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" -#: ../../mod/content.php:496 ../../include/conversation.php:686 +#: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" msgstr "Pohled v kontextu" @@ -3279,7 +3290,7 @@ msgstr[0] "%d kontakt upraven." msgstr[1] "%d kontakty upraveny" msgstr[2] "%d kontaktů upraveno" -#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." msgstr "Nelze získat přístup k záznamu kontaktu." @@ -3287,79 +3298,79 @@ msgstr "Nelze získat přístup k záznamu kontaktu." msgid "Could not locate selected profile." msgstr "Nelze nalézt vybraný profil." -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:178 msgid "Contact updated." msgstr "Kontakt aktualizován." -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been blocked" msgstr "Kontakt byl zablokován" -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been unblocked" msgstr "Kontakt byl odblokován" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been ignored" msgstr "Kontakt bude ignorován" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been unignored" msgstr "Kontakt přestal být ignorován" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been archived" msgstr "Kontakt byl archivován" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been unarchived" msgstr "Kontakt byl vrácen z archívu." -#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" msgstr "Opravdu chcete smazat tento kontakt?" -#: ../../mod/contacts.php:335 +#: ../../mod/contacts.php:341 msgid "Contact has been removed." msgstr "Kontakt byl odstraněn." -#: ../../mod/contacts.php:373 +#: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" msgstr "Jste vzájemní přátelé s uživatelem %s" -#: ../../mod/contacts.php:377 +#: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" msgstr "Sdílíte s uživatelem %s" -#: ../../mod/contacts.php:382 +#: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" msgstr "uživatel %s sdílí s vámi" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." msgstr "Soukromá komunikace není dostupná pro tento kontakt." -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was successful)" msgstr "(Aktualizace byla úspěšná)" -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was not successful)" msgstr "(Aktualizace nebyla úspěšná)" -#: ../../mod/contacts.php:408 +#: ../../mod/contacts.php:414 msgid "Suggest friends" msgstr "Navrhněte přátelé" -#: ../../mod/contacts.php:412 +#: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" msgstr "Typ sítě: %s" -#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -3367,815 +3378,823 @@ msgstr[0] "%d sdílený kontakt" msgstr[1] "%d sdílených kontaktů" msgstr[2] "%d sdílených kontaktů" -#: ../../mod/contacts.php:420 +#: ../../mod/contacts.php:426 msgid "View all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:428 +#: ../../mod/contacts.php:434 msgid "Toggle Blocked status" msgstr "Přepnout stav Blokováno" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 msgid "Unignore" msgstr "Přestat ignorovat" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "Ignorovat" -#: ../../mod/contacts.php:434 +#: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "Přepnout stav Ignorováno" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" msgstr "Vrátit z archívu" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" msgstr "Archivovat" -#: ../../mod/contacts.php:441 +#: ../../mod/contacts.php:447 msgid "Toggle Archive status" msgstr "Přepnout stav Archivováno" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:450 msgid "Repair" msgstr "Opravit" -#: ../../mod/contacts.php:447 +#: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" msgstr "Pokročilé nastavení kontaktu" -#: ../../mod/contacts.php:453 +#: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" msgstr "Komunikace s tímto kontaktem byla ztracena!" -#: ../../mod/contacts.php:456 +#: ../../mod/contacts.php:462 msgid "Contact Editor" msgstr "Editor kontaktu" -#: ../../mod/contacts.php:459 +#: ../../mod/contacts.php:465 msgid "Profile Visibility" msgstr "Viditelnost profilu" -#: ../../mod/contacts.php:460 +#: ../../mod/contacts.php:466 #, 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." -#: ../../mod/contacts.php:461 +#: ../../mod/contacts.php:467 msgid "Contact Information / Notes" msgstr "Kontaktní informace / poznámky" -#: ../../mod/contacts.php:462 +#: ../../mod/contacts.php:468 msgid "Edit contact notes" msgstr "Editovat poznámky kontaktu" -#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" -#: ../../mod/contacts.php:469 +#: ../../mod/contacts.php:475 msgid "Ignore contact" msgstr "Ignorovat kontakt" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:476 msgid "Repair URL settings" msgstr "Opravit nastavení adresy URL " -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:477 msgid "View conversations" msgstr "Zobrazit konverzace" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:479 msgid "Delete contact" msgstr "Odstranit kontakt" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:483 msgid "Last update:" msgstr "Poslední aktualizace:" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:485 msgid "Update public posts" msgstr "Aktualizovat veřejné příspěvky" -#: ../../mod/contacts.php:488 +#: ../../mod/contacts.php:494 msgid "Currently blocked" msgstr "V současnosti zablokováno" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:495 msgid "Currently ignored" msgstr "V současnosti ignorováno" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:496 msgid "Currently archived" msgstr "Aktuálně archivován" -#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "Skrýt tento kontakt před ostatními" -#: ../../mod/contacts.php:491 +#: ../../mod/contacts.php:497 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:542 +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Upozornění na nové příspěvky" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Načíst další informace pro kanál" + +#: ../../mod/contacts.php:550 msgid "Suggestions" msgstr "Doporučení" -#: ../../mod/contacts.php:545 +#: ../../mod/contacts.php:553 msgid "Suggest potential friends" msgstr "Navrhnout potenciální přátele" -#: ../../mod/contacts.php:548 ../../mod/group.php:194 +#: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" msgstr "Všechny kontakty" -#: ../../mod/contacts.php:551 +#: ../../mod/contacts.php:559 msgid "Show all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:554 +#: ../../mod/contacts.php:562 msgid "Unblocked" msgstr "Odblokován" -#: ../../mod/contacts.php:557 +#: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" msgstr "Zobrazit pouze neblokované kontakty" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:569 msgid "Blocked" msgstr "Blokován" -#: ../../mod/contacts.php:564 +#: ../../mod/contacts.php:572 msgid "Only show blocked contacts" msgstr "Zobrazit pouze blokované kontakty" -#: ../../mod/contacts.php:568 +#: ../../mod/contacts.php:576 msgid "Ignored" msgstr "Ignorován" -#: ../../mod/contacts.php:571 +#: ../../mod/contacts.php:579 msgid "Only show ignored contacts" msgstr "Zobrazit pouze ignorované kontakty" -#: ../../mod/contacts.php:575 +#: ../../mod/contacts.php:583 msgid "Archived" msgstr "Archivován" -#: ../../mod/contacts.php:578 +#: ../../mod/contacts.php:586 msgid "Only show archived contacts" msgstr "Zobrazit pouze archivované kontakty" -#: ../../mod/contacts.php:582 +#: ../../mod/contacts.php:590 msgid "Hidden" msgstr "Skrytý" -#: ../../mod/contacts.php:585 +#: ../../mod/contacts.php:593 msgid "Only show hidden contacts" msgstr "Zobrazit pouze skryté kontakty" -#: ../../mod/contacts.php:633 +#: ../../mod/contacts.php:641 msgid "Mutual Friendship" msgstr "Vzájemné přátelství" -#: ../../mod/contacts.php:637 +#: ../../mod/contacts.php:645 msgid "is a fan of yours" msgstr "je Váš fanoušek" -#: ../../mod/contacts.php:641 +#: ../../mod/contacts.php:649 msgid "you are a fan of" msgstr "jste fanouškem" -#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Editovat kontakt" -#: ../../mod/contacts.php:684 +#: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:691 ../../mod/settings.php:126 -#: ../../mod/settings.php:627 +#: ../../mod/contacts.php:699 ../../mod/settings.php:131 +#: ../../mod/settings.php:634 msgid "Update" msgstr "Aktualizace" -#: ../../mod/settings.php:28 ../../mod/photos.php:79 +#: ../../mod/settings.php:28 ../../mod/photos.php:80 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Nastavení účtu" - #: ../../mod/settings.php:40 msgid "Additional features" msgstr "Další funkčnosti" -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Nastavení zobrazení" +#: ../../mod/settings.php:45 +msgid "Display" +msgstr "Zobrazení" -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Nastavení konektoru" +#: ../../mod/settings.php:51 ../../mod/settings.php:774 +msgid "Social Networks" +msgstr "Sociální sítě" -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Nastavení pluginu" +#: ../../mod/settings.php:61 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Delegace" -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 +#: ../../mod/settings.php:66 msgid "Connected apps" msgstr "Propojené aplikace" -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +#: ../../mod/settings.php:71 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Export osobních údajů" -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 +#: ../../mod/settings.php:76 msgid "Remove account" msgstr "Odstranit účet" -#: ../../mod/settings.php:123 +#: ../../mod/settings.php:128 msgid "Missing some important data!" msgstr "Chybí některé důležité údaje!" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:237 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:237 +#: ../../mod/settings.php:242 msgid "Email settings updated." msgstr "Nastavení e-mailu aktualizována." -#: ../../mod/settings.php:252 +#: ../../mod/settings.php:257 msgid "Features updated" msgstr "Aktualizované funkčnosti" -#: ../../mod/settings.php:311 +#: ../../mod/settings.php:318 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: ../../mod/settings.php:325 +#: ../../mod/settings.php:332 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: ../../mod/settings.php:330 +#: ../../mod/settings.php:337 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." -#: ../../mod/settings.php:338 +#: ../../mod/settings.php:345 msgid "Wrong password." msgstr "Špatné heslo." -#: ../../mod/settings.php:349 +#: ../../mod/settings.php:356 msgid "Password changed." msgstr "Heslo bylo změněno." -#: ../../mod/settings.php:351 +#: ../../mod/settings.php:358 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/settings.php:416 +#: ../../mod/settings.php:423 msgid " Please use a shorter name." msgstr "Prosím použijte kratší jméno." -#: ../../mod/settings.php:418 +#: ../../mod/settings.php:425 msgid " Name too short." msgstr "Jméno je příliš krátké." -#: ../../mod/settings.php:427 +#: ../../mod/settings.php:434 msgid "Wrong Password" msgstr "Špatné heslo" -#: ../../mod/settings.php:432 +#: ../../mod/settings.php:439 msgid " Not valid email." msgstr "Neplatný e-mail." -#: ../../mod/settings.php:438 +#: ../../mod/settings.php:445 msgid " Cannot change to that email." msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:500 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:497 +#: ../../mod/settings.php:504 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:527 +#: ../../mod/settings.php:534 msgid "Settings updated." msgstr "Nastavení aktualizováno." -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:669 msgid "Add application" msgstr "Přidat aplikaci" -#: ../../mod/settings.php:604 ../../mod/settings.php:630 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:605 ../../mod/settings.php:631 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Redirect" msgstr "Přesměrování" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Icon url" msgstr "URL ikony" -#: ../../mod/settings.php:618 +#: ../../mod/settings.php:625 msgid "You can't edit this application." msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:668 msgid "Connected Apps" msgstr "Připojené aplikace" -#: ../../mod/settings.php:665 +#: ../../mod/settings.php:672 msgid "Client key starts with" msgstr "Klienský klíč začíná" -#: ../../mod/settings.php:666 +#: ../../mod/settings.php:673 msgid "No name" msgstr "Bez názvu" -#: ../../mod/settings.php:667 +#: ../../mod/settings.php:674 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:686 msgid "No Plugin settings configured" msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:687 +#: ../../mod/settings.php:694 msgid "Plugin Settings" msgstr "Nastavení doplňku" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "Off" msgstr "Vypnuto" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "On" msgstr "Zapnuto" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:716 msgid "Additional Features" msgstr "Další Funkčnosti" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 #, 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:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "enabled" msgstr "povoleno" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "disabled" msgstr "zakázáno" -#: ../../mod/settings.php:723 +#: ../../mod/settings.php:731 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:755 +#: ../../mod/settings.php:767 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:762 -msgid "Connector Settings" -msgstr "Nastavení konektoru" - -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:779 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:780 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:769 +#: ../../mod/settings.php:781 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:783 msgid "IMAP server name:" msgstr "jméno IMAP serveru:" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:784 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:785 msgid "Security:" msgstr "Zabezpečení:" -#: ../../mod/settings.php:773 ../../mod/settings.php:778 +#: ../../mod/settings.php:785 ../../mod/settings.php:790 msgid "None" msgstr "Žádný" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:786 msgid "Email login name:" msgstr "přihlašovací jméno k e-mailu:" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:787 msgid "Email password:" msgstr "heslo k Vašemu e-mailu:" -#: ../../mod/settings.php:776 +#: ../../mod/settings.php:788 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: ../../mod/settings.php:777 +#: ../../mod/settings.php:789 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Action after import:" msgstr "Akce po importu:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Mark as seen" msgstr "Označit jako přečtené" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Move to folder" msgstr "Přesunout do složky" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:791 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: ../../mod/settings.php:854 +#: ../../mod/settings.php:869 msgid "Display Settings" msgstr "Nastavení Zobrazení" -#: ../../mod/settings.php:860 ../../mod/settings.php:873 +#: ../../mod/settings.php:875 ../../mod/settings.php:889 msgid "Display Theme:" msgstr "Vybrat grafickou šablonu:" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:876 msgid "Mobile Theme:" msgstr "Téma pro mobilní zařízení:" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekund, žádné maximum." -#: ../../mod/settings.php:863 +#: ../../mod/settings.php:878 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: ../../mod/settings.php:863 ../../mod/settings.php:864 +#: ../../mod/settings.php:878 ../../mod/settings.php:879 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:879 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: ../../mod/settings.php:865 +#: ../../mod/settings.php:880 msgid "Don't show emoticons" msgstr "Nezobrazovat emotikony" -#: ../../mod/settings.php:866 +#: ../../mod/settings.php:881 +msgid "Don't show notices" +msgstr "Nezobrazovat oznámění" + +#: ../../mod/settings.php:882 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:959 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:960 msgid "This account is a normal personal profile" msgstr "Tento účet je běžný osobní profil" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:963 msgid "Soapbox Page" msgstr "Stránka \"Soapbox\"" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:964 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:950 +#: ../../mod/settings.php:967 msgid "Community Forum/Celebrity Account" msgstr "Komunitní fórum/ účet celebrity" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:968 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:954 +#: ../../mod/settings.php:971 msgid "Automatic Friend Page" msgstr "Automatická stránka přítele" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:972 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:958 +#: ../../mod/settings.php:975 msgid "Private Forum [Experimental]" msgstr "Soukromé fórum [Experimentální]" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:976 msgid "Private forum - approved members only" msgstr "Soukromé fórum - pouze pro schválené členy" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:998 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:987 +#: ../../mod/settings.php:1004 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:995 +#: ../../mod/settings.php:1012 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:999 +#: ../../mod/settings.php:1016 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:1004 +#: ../../mod/settings.php:1021 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:1010 +#: ../../mod/settings.php:1027 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat Vaše příspěvky?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1033 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:1022 +#: ../../mod/settings.php:1039 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:1030 +#: ../../mod/settings.php:1047 msgid "Profile is not published." msgstr "Profil není zveřejněn." -#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 msgid "or" msgstr "nebo" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1055 msgid "Your Identity Address is" msgstr "Vaše adresa identity je" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 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:1050 +#: ../../mod/settings.php:1067 msgid "Advanced expiration settings" msgstr "Pokročilé nastavení expirací" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1068 msgid "Advanced Expiration" msgstr "Nastavení expirací" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1069 msgid "Expire posts:" msgstr "Expirovat příspěvky:" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1070 msgid "Expire personal notes:" msgstr "Expirovat osobní poznámky:" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1071 msgid "Expire starred posts:" msgstr "Expirovat příspěvky s hvězdou:" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1072 msgid "Expire photos:" msgstr "Expirovat fotografie:" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1073 msgid "Only expire posts by others:" msgstr "Přízpěvky expirovat pouze ostatními:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1099 msgid "Account Settings" msgstr "Nastavení účtu" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1107 msgid "Password Settings" msgstr "Nastavení hesla" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1108 msgid "New Password:" msgstr "Nové heslo:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Confirm:" msgstr "Potvrďte:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1110 msgid "Current Password:" msgstr "Stávající heslo:" -#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1111 msgid "Password:" msgstr "Heslo: " -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1115 msgid "Basic Settings" msgstr "Základní nastavení" -#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Celé jméno:" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1117 msgid "Email Address:" msgstr "E-mailová adresa:" -#: ../../mod/settings.php:1101 +#: ../../mod/settings.php:1118 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1119 msgid "Default Post Location:" msgstr "Výchozí umístění příspěvků:" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1120 msgid "Use Browser Location:" msgstr "Používat umístění dle prohlížeče:" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1123 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1125 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet žádostí o přátelství za den:" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 +#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 msgid "(to prevent spam abuse)" msgstr "(Aby se zabránilo spamu)" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1126 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1127 msgid "(click to open/close)" msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 +#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "Zobrazit ve Skupinách" -#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 +#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "Zobrazit v Kontaktech" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1138 msgid "Default Private Post" msgstr "Výchozí Soukromý příspěvek" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1139 msgid "Default Public Post" msgstr "Výchozí Veřejný příspěvek" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1143 msgid "Default Permissions for New Posts" msgstr "Výchozí oprávnění pro nové příspěvky" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1155 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum soukromých zpráv od neznámých lidí:" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1158 msgid "Notification Settings" msgstr "Nastavení notifikací" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1159 msgid "By default post a status message when:" msgstr "Defaultně posílat statusové zprávy když:" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1160 msgid "accepting a friend request" msgstr "akceptuji požadavek na přátelství" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1161 msgid "joining a forum/community" msgstr "připojující se k fóru/komunitě" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1162 msgid "making an interesting profile change" msgstr "provedení zajímavé profilové změny" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1163 msgid "Send a notification email when:" msgstr "Poslat notifikaci e-mailem, když" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1164 msgid "You receive an introduction" msgstr "obdržíte žádost o propojení" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1165 msgid "Your introductions are confirmed" msgstr "Vaše žádosti jsou potvrzeny" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1166 msgid "Someone writes on your profile wall" msgstr "někdo Vám napíše na Vaši profilovou stránku" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1167 msgid "Someone writes a followup comment" msgstr "někdo Vám napíše následný komentář" -#: ../../mod/settings.php:1151 +#: ../../mod/settings.php:1168 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1169 msgid "You receive a friend suggestion" msgstr "Obdržel jste návrh přátelství" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1170 msgid "You are tagged in a post" msgstr "Jste označen v příspěvku" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1171 msgid "You are poked/prodded/etc. in a post" msgstr "Byl Jste šťouchnout v příspěvku" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1174 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1175 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1178 msgid "Relocate" msgstr "Změna umístění" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1179 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1180 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" @@ -4199,265 +4218,265 @@ msgstr "Profil není možné naklonovat." msgid "Profile Name is required." msgstr "Jméno profilu je povinné." -#: ../../mod/profiles.php:317 +#: ../../mod/profiles.php:321 msgid "Marital Status" msgstr "Rodinný Stav" -#: ../../mod/profiles.php:321 +#: ../../mod/profiles.php:325 msgid "Romantic Partner" msgstr "Romatický partner" -#: ../../mod/profiles.php:325 +#: ../../mod/profiles.php:329 msgid "Likes" msgstr "Libí se mi" -#: ../../mod/profiles.php:329 +#: ../../mod/profiles.php:333 msgid "Dislikes" msgstr "Nelibí se mi" -#: ../../mod/profiles.php:333 +#: ../../mod/profiles.php:337 msgid "Work/Employment" msgstr "Práce/Zaměstnání" -#: ../../mod/profiles.php:336 +#: ../../mod/profiles.php:340 msgid "Religion" msgstr "Náboženství" -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:344 msgid "Political Views" msgstr "Politické přesvědčení" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:348 msgid "Gender" msgstr "Pohlaví" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:352 msgid "Sexual Preference" msgstr "Sexuální orientace" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:356 msgid "Homepage" msgstr "Domácí stránka" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:360 msgid "Interests" msgstr "Zájmy" -#: ../../mod/profiles.php:360 +#: ../../mod/profiles.php:364 msgid "Address" msgstr "Adresa" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:371 msgid "Location" msgstr "Lokace" -#: ../../mod/profiles.php:450 +#: ../../mod/profiles.php:454 msgid "Profile updated." msgstr "Profil aktualizován." -#: ../../mod/profiles.php:521 +#: ../../mod/profiles.php:525 msgid " and " msgstr " a " -#: ../../mod/profiles.php:529 +#: ../../mod/profiles.php:533 msgid "public profile" msgstr "veřejný profil" -#: ../../mod/profiles.php:532 +#: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s změnil %2$s na “%3$s”" -#: ../../mod/profiles.php:533 +#: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Navštivte %2$s uživatele %1$s" -#: ../../mod/profiles.php:536 +#: ../../mod/profiles.php:540 #, 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:609 +#: ../../mod/profiles.php:613 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?" -#: ../../mod/profiles.php:629 +#: ../../mod/profiles.php:633 msgid "Edit Profile Details" msgstr "Upravit podrobnosti profilu " -#: ../../mod/profiles.php:631 +#: ../../mod/profiles.php:635 msgid "Change Profile Photo" msgstr "Změna Profilové fotky" -#: ../../mod/profiles.php:632 +#: ../../mod/profiles.php:636 msgid "View this profile" msgstr "Zobrazit tento profil" -#: ../../mod/profiles.php:633 +#: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" msgstr "Vytvořit nový profil pomocí tohoto nastavení" -#: ../../mod/profiles.php:634 +#: ../../mod/profiles.php:638 msgid "Clone this profile" msgstr "Klonovat tento profil" -#: ../../mod/profiles.php:635 +#: ../../mod/profiles.php:639 msgid "Delete this profile" msgstr "Smazat tento profil" -#: ../../mod/profiles.php:636 +#: ../../mod/profiles.php:640 msgid "Profile Name:" msgstr "Jméno profilu:" -#: ../../mod/profiles.php:637 +#: ../../mod/profiles.php:641 msgid "Your Full Name:" msgstr "Vaše celé jméno:" -#: ../../mod/profiles.php:638 +#: ../../mod/profiles.php:642 msgid "Title/Description:" msgstr "Název / Popis:" -#: ../../mod/profiles.php:639 +#: ../../mod/profiles.php:643 msgid "Your Gender:" msgstr "Vaše pohlaví:" -#: ../../mod/profiles.php:640 +#: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" msgstr "Narozeniny uživatele (%s):" -#: ../../mod/profiles.php:641 +#: ../../mod/profiles.php:645 msgid "Street Address:" msgstr "Ulice:" -#: ../../mod/profiles.php:642 +#: ../../mod/profiles.php:646 msgid "Locality/City:" msgstr "Město:" -#: ../../mod/profiles.php:643 +#: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" msgstr "PSČ:" -#: ../../mod/profiles.php:644 +#: ../../mod/profiles.php:648 msgid "Country:" msgstr "Země:" -#: ../../mod/profiles.php:645 +#: ../../mod/profiles.php:649 msgid "Region/State:" msgstr "Region / stát:" -#: ../../mod/profiles.php:646 +#: ../../mod/profiles.php:650 msgid " Marital Status:" msgstr " Rodinný stav:" -#: ../../mod/profiles.php:647 +#: ../../mod/profiles.php:651 msgid "Who: (if applicable)" msgstr "Kdo: (pokud je možné)" -#: ../../mod/profiles.php:648 +#: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" -#: ../../mod/profiles.php:649 +#: ../../mod/profiles.php:653 msgid "Since [date]:" msgstr "Od [data]:" -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Sexuální preference:" -#: ../../mod/profiles.php:651 +#: ../../mod/profiles.php:655 msgid "Homepage URL:" msgstr "Odkaz na domovskou stránku:" -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "Rodné město" -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Politické přesvědčení:" -#: ../../mod/profiles.php:654 +#: ../../mod/profiles.php:658 msgid "Religious Views:" msgstr "Náboženské přesvědčení:" -#: ../../mod/profiles.php:655 +#: ../../mod/profiles.php:659 msgid "Public Keywords:" msgstr "Veřejná klíčová slova:" -#: ../../mod/profiles.php:656 +#: ../../mod/profiles.php:660 msgid "Private Keywords:" msgstr "Soukromá klíčová slova:" -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "Líbí se:" -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "Nelibí se:" -#: ../../mod/profiles.php:659 +#: ../../mod/profiles.php:663 msgid "Example: fishing photography software" msgstr "Příklad: fishing photography software" -#: ../../mod/profiles.php:660 +#: ../../mod/profiles.php:664 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)" -#: ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 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:662 +#: ../../mod/profiles.php:666 msgid "Tell us about yourself..." msgstr "Řekněte nám něco o sobě ..." -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:667 msgid "Hobbies/Interests" msgstr "Koníčky/zájmy" -#: ../../mod/profiles.php:664 +#: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" msgstr "Kontaktní informace a sociální sítě" -#: ../../mod/profiles.php:665 +#: ../../mod/profiles.php:669 msgid "Musical interests" msgstr "Hudební vkus" -#: ../../mod/profiles.php:666 +#: ../../mod/profiles.php:670 msgid "Books, literature" msgstr "Knihy, literatura" -#: ../../mod/profiles.php:667 +#: ../../mod/profiles.php:671 msgid "Television" msgstr "Televize" -#: ../../mod/profiles.php:668 +#: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" msgstr "Film/tanec/kultura/zábava" -#: ../../mod/profiles.php:669 +#: ../../mod/profiles.php:673 msgid "Love/romance" msgstr "Láska/romantika" -#: ../../mod/profiles.php:670 +#: ../../mod/profiles.php:674 msgid "Work/employment" msgstr "Práce/zaměstnání" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:675 msgid "School/education" msgstr "Škola/vzdělání" -#: ../../mod/profiles.php:676 +#: ../../mod/profiles.php:680 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." -#: ../../mod/profiles.php:725 +#: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Upravit / Spravovat profily" @@ -4573,7 +4592,7 @@ msgstr "Žádné další systémová upozornění." msgid "System Notifications" msgstr "Systémová upozornění" -#: ../../mod/message.php:9 ../../include/nav.php:159 +#: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" msgstr "Nová zpráva" @@ -4582,7 +4601,7 @@ msgid "Unable to locate contact information." msgstr "Nepodařilo se najít kontaktní informace." #: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Messages" msgstr "Zprávy" @@ -4651,7 +4670,7 @@ msgstr "Není k dispozici zabezpečená komunikace. Možná bud msgid "Send Reply" msgstr "Poslat odpověď" -#: ../../mod/like.php:170 ../../include/conversation.php:140 +#: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s nemá rád %2$s na %3$s" @@ -4661,7 +4680,7 @@ msgid "Post successful." msgstr "Příspěvek úspěšně odeslán" #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 +#: ../../include/bb2diaspora.php:133 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -4694,8 +4713,8 @@ msgstr "Převedený lokální čas : %s" msgid "Please select your timezone:" msgstr "Prosím, vyberte své časové pásmo:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 msgid "Save to Folder:" msgstr "Uložit do složky:" @@ -4723,7 +4742,7 @@ msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" msgid "No contacts." msgstr "Žádné kontakty." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 msgid "View Contacts" msgstr "Zobrazit kontakty" @@ -4735,201 +4754,210 @@ msgstr "Vyhledávání lidí" msgid "No matches" msgstr "Žádné shody" -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 msgid "Upload New Photos" msgstr "Nahrát nové fotografie" -#: ../../mod/photos.php:143 +#: ../../mod/photos.php:144 msgid "Contact information unavailable" msgstr "Kontakt byl zablokován" -#: ../../mod/photos.php:164 +#: ../../mod/photos.php:165 msgid "Album not found." msgstr "Album nenalezeno." -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" msgstr "Smazat album" -#: ../../mod/photos.php:197 +#: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" msgstr "Smazat fotografii" -#: ../../mod/photos.php:285 +#: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" msgstr "Opravdu chcete smazat tuto fotografii?" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s byl označen v %2$s uživatelem %3$s" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 msgid "a photo" msgstr "fotografie" -#: ../../mod/photos.php:761 +#: ../../mod/photos.php:765 msgid "Image exceeds size limit of " msgstr "Velikost obrázku překračuje limit velikosti" -#: ../../mod/photos.php:769 +#: ../../mod/photos.php:773 msgid "Image file is empty." msgstr "Soubor obrázku je prázdný." -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 +#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." msgstr "Obrázek není možné zprocesovat" -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 +#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." msgstr "Nahrání obrázku selhalo." -#: ../../mod/photos.php:924 +#: ../../mod/photos.php:928 msgid "No photos selected" msgstr "Není vybrána žádná fotografie" -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." msgstr "Přístup k této položce je omezen." -#: ../../mod/photos.php:1088 +#: ../../mod/photos.php:1092 #, 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:1123 +#: ../../mod/photos.php:1127 msgid "Upload Photos" msgstr "Nahrání fotografií " -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " msgstr "Název nového alba: " -#: ../../mod/photos.php:1128 +#: ../../mod/photos.php:1132 msgid "or existing album name: " msgstr "nebo stávající název alba: " -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" msgstr "Nezobrazovat stav pro tento upload" -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" msgstr "Oprávnění:" -#: ../../mod/photos.php:1142 +#: ../../mod/photos.php:1146 msgid "Private Photo" msgstr "Soukromé Fotografie" -#: ../../mod/photos.php:1143 +#: ../../mod/photos.php:1147 msgid "Public Photo" msgstr "Veřejné Fotografie" -#: ../../mod/photos.php:1210 +#: ../../mod/photos.php:1214 msgid "Edit Album" msgstr "Edituj album" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "Show Newest First" msgstr "Zobrazit nejprve nejnovější:" -#: ../../mod/photos.php:1218 +#: ../../mod/photos.php:1222 msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší:" -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 msgid "View Photo" msgstr "Zobraz fotografii" -#: ../../mod/photos.php:1286 +#: ../../mod/photos.php:1290 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:1288 +#: ../../mod/photos.php:1292 msgid "Photo not available" msgstr "Fotografie není k dispozici" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "View photo" msgstr "Zobrazit obrázek" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "Edit photo" msgstr "Editovat fotografii" -#: ../../mod/photos.php:1345 +#: ../../mod/photos.php:1349 msgid "Use as profile photo" msgstr "Použít jako profilovou fotografii" -#: ../../mod/photos.php:1370 +#: ../../mod/photos.php:1374 msgid "View Full Size" msgstr "Zobrazit v plné velikosti" -#: ../../mod/photos.php:1444 +#: ../../mod/photos.php:1453 msgid "Tags: " msgstr "Štítky: " -#: ../../mod/photos.php:1447 +#: ../../mod/photos.php:1456 msgid "[Remove any tag]" msgstr "[Odstranit všechny štítky]" -#: ../../mod/photos.php:1487 +#: ../../mod/photos.php:1496 msgid "Rotate CW (right)" msgstr "Rotovat po směru hodinových ručiček (doprava)" -#: ../../mod/photos.php:1488 +#: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" msgstr "Rotovat proti směru hodinových ručiček (doleva)" -#: ../../mod/photos.php:1490 +#: ../../mod/photos.php:1499 msgid "New album name" msgstr "Nové jméno alba" -#: ../../mod/photos.php:1493 +#: ../../mod/photos.php:1502 msgid "Caption" msgstr "Titulek" -#: ../../mod/photos.php:1495 +#: ../../mod/photos.php:1504 msgid "Add a Tag" msgstr "Přidat štítek" -#: ../../mod/photos.php:1499 +#: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1508 +#: ../../mod/photos.php:1517 msgid "Private photo" msgstr "Soukromé fotografie" -#: ../../mod/photos.php:1509 +#: ../../mod/photos.php:1518 msgid "Public photo" msgstr "Veřejné fotografie" -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 msgid "Share" msgstr "Sdílet" -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 +#: ../../mod/photos.php:1799 ../../mod/videos.php:308 msgid "View Album" msgstr "Zobrazit album" -#: ../../mod/photos.php:1793 +#: ../../mod/photos.php:1808 msgid "Recent Photos" msgstr "Aktuální fotografie" -#: ../../mod/wall_attach.php:69 +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" + +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" + +#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "Velikost souboru přesáhla limit %d" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." @@ -4937,7 +4965,7 @@ msgstr "Nahrání souboru se nezdařilo." msgid "No videos selected" msgstr "Není vybráno žádné video" -#: ../../mod/videos.php:301 ../../include/text.php:1383 +#: ../../mod/videos.php:301 ../../include/text.php:1387 msgid "View Video" msgstr "Zobrazit video" @@ -4974,21 +5002,21 @@ msgstr "Změnit tento příspěvek na soukromý" msgid "%1$s is following %2$s's %3$s" msgstr "%1$s následuje %3$s uživatele %2$s" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "Export account" msgstr "Exportovat účet" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "Export all" msgstr "Exportovat vše" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " @@ -5009,7 +5037,7 @@ msgid "Image exceeds size limit of %d" msgstr "Obrázek překročil limit velikosti %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Fotografie na zdi" @@ -5110,7 +5138,7 @@ msgstr "Odebrat štítek položky" msgid "Select a tag to remove: " msgstr "Vyberte štítek k odebrání: " -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" msgstr "Odstranit" @@ -5126,7 +5154,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editovat událost" -#: ../../mod/events.php:335 ../../include/text.php:1615 +#: ../../mod/events.php:335 ../../include/text.php:1620 +#: ../../include/text.php:1631 msgid "link to source" msgstr "odkaz na zdroj" @@ -5187,34 +5216,34 @@ msgstr "Sdílet tuto událost" msgid "No potential page delegates located." msgstr "Žádní potenciální delegáti stránky nenalezeni." -#: ../../mod/delegate.php:121 ../../include/nav.php:165 +#: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" msgstr "Správa delegátů stránky" -#: ../../mod/delegate.php:123 +#: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "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 +#: ../../mod/delegate.php:127 msgid "Existing Page Managers" msgstr "Stávající správci stránky" -#: ../../mod/delegate.php:126 +#: ../../mod/delegate.php:129 msgid "Existing Page Delegates" msgstr "Stávající delegáti stránky " -#: ../../mod/delegate.php:128 +#: ../../mod/delegate.php:131 msgid "Potential Delegates" msgstr "Potenciální delegáti" -#: ../../mod/delegate.php:131 +#: ../../mod/delegate.php:134 msgid "Add" msgstr "Přidat" -#: ../../mod/delegate.php:132 +#: ../../mod/delegate.php:135 msgid "No entries." msgstr "Žádné záznamy." @@ -5257,37 +5286,37 @@ msgstr "Navrhněte přátelé" msgid "Suggest a friend for %s" msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../mod/item.php:108 +#: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Nelze nalézt původní příspěvek." -#: ../../mod/item.php:317 +#: ../../mod/item.php:319 msgid "Empty post discarded." msgstr "Prázdný příspěvek odstraněn." -#: ../../mod/item.php:884 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "Chyba systému. Příspěvek nebyl uložen." -#: ../../mod/item.php:909 +#: ../../mod/item.php:917 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." -#: ../../mod/item.php:911 +#: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" msgstr "Můžete je navštívit online na adrese %s" -#: ../../mod/item.php:912 +#: ../../mod/item.php:920 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." -#: ../../mod/item.php:916 +#: ../../mod/item.php:924 #, php-format msgid "%s posted an update." msgstr "%s poslal aktualizaci." @@ -5364,11 +5393,11 @@ msgstr "Odstranit" msgid "System" msgstr "Systém" -#: ../../mod/notifications.php:83 ../../include/nav.php:140 +#: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" msgstr "Síť" -#: ../../mod/notifications.php:98 ../../include/nav.php:149 +#: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" msgstr "Představení" @@ -5441,7 +5470,7 @@ msgstr "Nový následovník" msgid "No introductions." msgstr "Žádné představení." -#: ../../mod/notifications.php:220 ../../include/nav.php:150 +#: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" msgstr "Upozornění" @@ -5667,7 +5696,7 @@ msgstr "Sítě" msgid "All Networks" msgstr "Všechny sítě" -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" msgstr "Uložené složky" @@ -5691,33 +5720,37 @@ msgstr "Tato akce překročí limit nastavené Vaším předplatným." msgid "This action is not available under your subscription plan." msgstr "Tato akce není v rámci Vašeho předplatného dostupná." -#: ../../include/api.php:255 ../../include/api.php:266 -#: ../../include/api.php:356 +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 msgid "User not found." msgstr "Uživatel nenalezen" -#: ../../include/api.php:1024 +#: ../../include/api.php:1123 msgid "There is no status with this id." msgstr "Není tu žádný status s tímto id." -#: ../../include/network.php:883 +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Nemáme žádnou konverzaci s tímto id." + +#: ../../include/network.php:886 msgid "view full size" msgstr "zobrazit v plné velikosti" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Začíná:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Končí:" -#: ../../include/notifier.php:774 ../../include/delivery.php:457 +#: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "(Bez předmětu)" #: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 +#: ../../include/delivery.php:467 msgid "noreply" msgstr "neodpovídat" @@ -5809,7 +5842,7 @@ msgstr "Přátelé" msgid "%1$s poked %2$s" msgstr "%1$s šťouchnul %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:986 +#: ../../include/conversation.php:211 ../../include/text.php:990 msgid "poked" msgstr "šťouchnut" @@ -5822,129 +5855,129 @@ msgstr "příspěvek/položka" 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:767 +#: ../../include/conversation.php:770 msgid "remove" msgstr "odstranit" -#: ../../include/conversation.php:771 +#: ../../include/conversation.php:774 msgid "Delete Selected Items" msgstr "Smazat vybrané položky" -#: ../../include/conversation.php:870 +#: ../../include/conversation.php:873 msgid "Follow Thread" msgstr "Následovat vlákno" -#: ../../include/conversation.php:871 ../../include/Contact.php:229 +#: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" msgstr "Zobrazit Status" -#: ../../include/conversation.php:872 ../../include/Contact.php:230 +#: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" msgstr "Zobrazit Profil" -#: ../../include/conversation.php:873 ../../include/Contact.php:231 +#: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" msgstr "Zobrazit Fotky" -#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" msgstr "Zobrazit Příspěvky sítě" -#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "Editovat Kontakty" -#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" msgstr "Poslat soukromou zprávu" -#: ../../include/conversation.php:877 ../../include/Contact.php:228 +#: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" msgstr "Šťouchnout" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s likes this." msgstr "%s se to líbí." -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." msgstr "%s se to nelíbí." -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" msgstr "%2$d lidem se to líbí" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" msgstr "%2$d lidem se to nelíbí" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:964 msgid "and" msgstr "a" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" msgstr ", a %d dalších lidí" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s like this." msgstr "%s se to líbí." -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." msgstr "%s se to nelíbí." -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" msgstr "Prosím zadejte URL adresu videa:" -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" msgstr "Prosím zadejte URL adresu zvukového záznamu:" -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" msgstr "Štítek:" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" msgstr "Kde právě jste?" -#: ../../include/conversation.php:1003 +#: ../../include/conversation.php:1006 msgid "Delete item(s)?" msgstr "Smazat položku(y)?" -#: ../../include/conversation.php:1045 +#: ../../include/conversation.php:1048 msgid "Post to Email" msgstr "Poslat příspěvek na e-mail" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1104 msgid "permissions" msgstr "oprávnění" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:1128 msgid "Post to Groups" msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:1129 msgid "Post to Contacts" msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1127 +#: ../../include/conversation.php:1130 msgid "Private post" msgstr "Soukromý příspěvek" @@ -5989,35 +6022,35 @@ msgstr[2] "%d kontakty nenaimporovány" msgid "Done. You can now login with your username and password" msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" -#: ../../include/text.php:300 +#: ../../include/text.php:304 msgid "newer" msgstr "novější" -#: ../../include/text.php:302 +#: ../../include/text.php:306 msgid "older" msgstr "starší" -#: ../../include/text.php:307 +#: ../../include/text.php:311 msgid "prev" msgstr "předchozí" -#: ../../include/text.php:309 +#: ../../include/text.php:313 msgid "first" msgstr "první" -#: ../../include/text.php:341 +#: ../../include/text.php:345 msgid "last" msgstr "poslední" -#: ../../include/text.php:344 +#: ../../include/text.php:348 msgid "next" msgstr "další" -#: ../../include/text.php:836 +#: ../../include/text.php:840 msgid "No contacts" msgstr "Žádné kontakty" -#: ../../include/text.php:845 +#: ../../include/text.php:849 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -6025,227 +6058,227 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktů" msgstr[2] "%d kontaktů" -#: ../../include/text.php:986 +#: ../../include/text.php:990 msgid "poke" msgstr "šťouchnout" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "ping" msgstr "cinknout" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "pinged" msgstr "cinkut" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prod" msgstr "pobídnout" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prodded" msgstr "pobídnut" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slap" msgstr "dát facku" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slapped" msgstr "být uhozen" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "finger" msgstr "osahávat" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "fingered" msgstr "osaháván" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuff" msgstr "odmítnout" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuffed" msgstr "odmítnut" -#: ../../include/text.php:1005 +#: ../../include/text.php:1009 msgid "happy" msgstr "šťasný" -#: ../../include/text.php:1006 +#: ../../include/text.php:1010 msgid "sad" msgstr "smutný" -#: ../../include/text.php:1007 +#: ../../include/text.php:1011 msgid "mellow" msgstr "jemný" -#: ../../include/text.php:1008 +#: ../../include/text.php:1012 msgid "tired" msgstr "unavený" -#: ../../include/text.php:1009 +#: ../../include/text.php:1013 msgid "perky" msgstr "emergický" -#: ../../include/text.php:1010 +#: ../../include/text.php:1014 msgid "angry" msgstr "nazlobený" -#: ../../include/text.php:1011 +#: ../../include/text.php:1015 msgid "stupified" msgstr "otupen" -#: ../../include/text.php:1012 +#: ../../include/text.php:1016 msgid "puzzled" msgstr "popletený" -#: ../../include/text.php:1013 +#: ../../include/text.php:1017 msgid "interested" msgstr "zajímavý" -#: ../../include/text.php:1014 +#: ../../include/text.php:1018 msgid "bitter" msgstr "hořký" -#: ../../include/text.php:1015 +#: ../../include/text.php:1019 msgid "cheerful" msgstr "radnostný" -#: ../../include/text.php:1016 +#: ../../include/text.php:1020 msgid "alive" msgstr "naživu" -#: ../../include/text.php:1017 +#: ../../include/text.php:1021 msgid "annoyed" msgstr "otráven" -#: ../../include/text.php:1018 +#: ../../include/text.php:1022 msgid "anxious" msgstr "znepokojený" -#: ../../include/text.php:1019 +#: ../../include/text.php:1023 msgid "cranky" msgstr "mrzutý" -#: ../../include/text.php:1020 +#: ../../include/text.php:1024 msgid "disturbed" msgstr "vyrušen" -#: ../../include/text.php:1021 +#: ../../include/text.php:1025 msgid "frustrated" msgstr "frustrovaný" -#: ../../include/text.php:1022 +#: ../../include/text.php:1026 msgid "motivated" msgstr "motivovaný" -#: ../../include/text.php:1023 +#: ../../include/text.php:1027 msgid "relaxed" msgstr "uvolněný" -#: ../../include/text.php:1024 +#: ../../include/text.php:1028 msgid "surprised" msgstr "překvapený" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Monday" msgstr "Pondělí" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Tuesday" msgstr "Úterý" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Wednesday" msgstr "Středa" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Thursday" msgstr "Čtvrtek" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Friday" msgstr "Pátek" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Saturday" msgstr "Sobota" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Sunday" msgstr "Neděle" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "January" msgstr "Ledna" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "February" msgstr "Února" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "March" msgstr "Března" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "April" msgstr "Dubna" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "May" msgstr "Května" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "June" msgstr "Června" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "July" msgstr "Července" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "August" msgstr "Srpna" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "September" msgstr "Září" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "October" msgstr "Října" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "November" msgstr "Listopadu" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "December" msgstr "Prosinec" -#: ../../include/text.php:1415 +#: ../../include/text.php:1419 msgid "bytes" msgstr "bytů" -#: ../../include/text.php:1439 ../../include/text.php:1451 +#: ../../include/text.php:1443 ../../include/text.php:1455 msgid "Click to open/close" msgstr "Klikněte pro otevření/zavření" -#: ../../include/text.php:1670 +#: ../../include/text.php:1688 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" -#: ../../include/text.php:1926 +#: ../../include/text.php:1944 msgid "activity" msgstr "aktivita" -#: ../../include/text.php:1929 +#: ../../include/text.php:1947 msgid "post" msgstr "příspěvek" -#: ../../include/text.php:2084 +#: ../../include/text.php:2115 msgid "Item filed" msgstr "Položka vyplněna" @@ -6291,151 +6324,166 @@ msgstr "soukromá zpráva" 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:90 +#: ../../include/enotify.php:91 #, 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:97 +#: ../../include/enotify.php:98 #, 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:105 +#: ../../include/enotify.php:106 #, 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:115 +#: ../../include/enotify.php:116 #, 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:116 +#: ../../include/enotify.php:117 #, 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:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: ../../include/enotify.php:126 +#: ../../include/enotify.php:127 #, 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:128 +#: ../../include/enotify.php:129 #, 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:130 +#: ../../include/enotify.php:131 #, 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:141 +#: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Upozornění] %s Vás označil" -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s Vás označil na %2$s" -#: ../../include/enotify.php:143 +#: ../../include/enotify.php:144 #, 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:155 #, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s nasdílel nový příspěvek na %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." + +#: ../../include/enotify.php:169 +#, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" -#: ../../include/enotify.php:156 +#: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s Vás šťouchnul na %2$s" -#: ../../include/enotify.php:157 +#: ../../include/enotify.php:171 #, 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:172 +#: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" -#: ../../include/enotify.php:173 +#: ../../include/enotify.php:187 #, 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:174 +#: ../../include/enotify.php:188 #, 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:185 +#: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Upozornění] Obdrženo přestavení" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:200 #, 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:187 +#: ../../include/enotify.php:201 #, 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:190 ../../include/enotify.php:208 +#: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" msgstr "Můžete navštívit jejich profil na %s" -#: ../../include/enotify.php:192 +#: ../../include/enotify.php:206 #, 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:199 +#: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:214 #, 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:201 +#: ../../include/enotify.php:215 #, 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:206 +#: ../../include/enotify.php:220 msgid "Name:" msgstr "Jméno:" -#: ../../include/enotify.php:207 +#: ../../include/enotify.php:221 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:210 +#: ../../include/enotify.php:224 #, 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/Scrape.php:583 +#: ../../include/Scrape.php:584 msgid " on Last.fm" msgstr " na Last.fm" @@ -6573,71 +6621,79 @@ msgstr "Adresář" msgid "People directory" msgstr "Adresář" -#: ../../include/nav.php:140 +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informace" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: ../../include/nav.php:142 msgid "Conversations from your friends" msgstr "Konverzace od Vašich přátel" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Network Reset" msgstr "Síťový Reset" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Load Network page with no filters" msgstr "Načíst stránku Síť bez filtrů" -#: ../../include/nav.php:149 +#: ../../include/nav.php:151 msgid "Friend Requests" msgstr "Žádosti přátel" -#: ../../include/nav.php:151 +#: ../../include/nav.php:153 msgid "See all notifications" msgstr "Zobrazit všechny upozornění" -#: ../../include/nav.php:152 +#: ../../include/nav.php:154 msgid "Mark all system notifications seen" msgstr "Označit všechny upozornění systému jako přečtené" -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Private mail" msgstr "Soukromá pošta" -#: ../../include/nav.php:157 +#: ../../include/nav.php:159 msgid "Inbox" msgstr "Doručená pošta" -#: ../../include/nav.php:158 +#: ../../include/nav.php:160 msgid "Outbox" msgstr "Odeslaná pošta" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage" msgstr "Spravovat" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage other pages" msgstr "Spravovat jiné stránky" -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegace" - #: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: ../../include/nav.php:171 msgid "Manage/Edit Profiles" msgstr "Spravovat/Editovat Profily" -#: ../../include/nav.php:171 +#: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" msgstr "Spravovat/upravit přátelé a kontakty" -#: ../../include/nav.php:178 +#: ../../include/nav.php:180 msgid "Site setup and configuration" msgstr "Nastavení webu a konfigurace" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Navigation" msgstr "Navigace" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Site map" msgstr "Mapa webu" @@ -6706,23 +6762,27 @@ msgstr "Práce/zaměstnání:" msgid "School/education:" msgstr "Škola/vzdělávání:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 -#: ../../include/bbcode.php:621 +#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:918 msgid "Image/photo" msgstr "Obrázek/fotografie" -#: ../../include/bbcode.php:285 +#: ../../include/bbcode.php:354 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" +"%s wrote the following post" +msgstr "%s napsal následující příspěvek" -#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 +#: ../../include/bbcode.php:453 +msgid "" +msgstr "" + +#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 msgid "$1 wrote:" msgstr "$1 napsal:" -#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 msgid "Encrypted content" msgstr "Šifrovaný obsah" @@ -6794,6 +6854,14 @@ msgstr "pump.io" msgid "Twitter" msgstr "Twitter" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora konektor" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "Různé" @@ -6867,12 +6935,12 @@ msgstr "sekund" msgid "%1$d %2$s ago" msgstr "před %1$d %2$s" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/datetime.php:472 ../../include/items.php:1964 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/datetime.php:473 ../../include/items.php:1965 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny %s" @@ -6909,155 +6977,164 @@ msgstr "Náhled příspěvku" msgid "Allow previewing posts and comments before publishing them" msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" -#: ../../include/features.php:37 +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" + +#: ../../include/features.php:38 msgid "Network Sidebar Widgets" msgstr "Síťové postranní widgety" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Search by Date" msgstr "Vyhledávat dle Data" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Ability to select posts by date ranges" msgstr "Možnost označit příspěvky dle časového intervalu" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Group Filter" msgstr "Skupinový Filtr" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Network Filter" msgstr "Síťový Filtr" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" -#: ../../include/features.php:41 +#: ../../include/features.php:42 msgid "Save search terms for re-use" msgstr "Uložit kritéria vyhledávání pro znovupoužití" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Network Tabs" msgstr "Síťové záložky" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Network Personal Tab" msgstr "Osobní síťový záložka " -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Network New Tab" msgstr "Nová záložka síť" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Network Shared Links Tab" msgstr "záložka Síťové sdílené odkazy " -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Post/Comment Tools" msgstr "Nástroje Příspěvků/Komentářů" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Multiple Deletion" msgstr "Násobné mazání" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" msgstr "Označit a smazat více " -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit Sent Posts" msgstr "Editovat Odeslané příspěvky" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" msgstr "Editovat a opravit příspěvky a komentáře po odeslání" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Tagging" msgstr "Štítkování" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Ability to tag existing posts" msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Post Categories" msgstr "Kategorie příspěvků" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Add categories to your posts" msgstr "Přidat kategorie k Vašim příspěvkům" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Ability to file posts under folders" msgstr "Možnost řadit příspěvky do složek" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Dislike Posts" msgstr "Označit příspěvky jako neoblíbené" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Ability to dislike posts/comments" msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Star Posts" msgstr "Příspěvky s hvězdou" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" msgstr "Možnost označit příspěvky s indikátorem hvězdy" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../include/diaspora.php:2269 +#: ../../include/diaspora.php:2299 msgid "Attachments:" msgstr "Přílohy:" -#: ../../include/acl_selectors.php:325 +#: ../../include/acl_selectors.php:326 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "A new person is sharing with you at " msgstr "Nový člověk si s vámi sdílí na" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "You have a new follower at " msgstr "Máte nového následovníka na" -#: ../../include/items.php:4062 +#: ../../include/items.php:4216 msgid "Do you really want to delete this item?" msgstr "Opravdu chcete smazat tuto položku?" -#: ../../include/items.php:4285 +#: ../../include/items.php:4443 msgid "Archives" msgstr "Archív" -#: ../../include/oembed.php:140 +#: ../../include/oembed.php:174 msgid "Embedded content" msgstr "vložený obsah" -#: ../../include/oembed.php:149 +#: ../../include/oembed.php:183 msgid "Embedding disabled" msgstr "Vkládání zakázáno" @@ -7315,7 +7392,7 @@ msgstr "následování zastaveno" msgid "Drop Contact" msgstr "Odstranit kontakt" -#: ../../include/dba.php:44 +#: ../../include/dba.php:45 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" diff --git a/view/cs/strings.php b/view/cs/strings.php index 235ac1ef10..8236a6646f 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -122,6 +122,7 @@ $a->strings["font size"] = "velikost fondu"; $a->strings["base font size for your interface"] = "základní velikost fontu"; $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 theme width"] = "Nastavení šířku grafické šablony"; +$a->strings["Set style"] = "Nastavit styl"; $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."; @@ -421,6 +422,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; $a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; $a->strings["Never"] = "Nikdy"; +$a->strings["At post arrival"] = "Při obdržení příspěvku"; $a->strings["Frequently"] = "Často"; $a->strings["Hourly"] = "každou hodinu"; $a->strings["Twice daily"] = "Dvakrát denně"; @@ -501,7 +503,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární $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["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["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; $a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."; $a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora"; @@ -777,6 +779,9 @@ $a->strings["Currently ignored"] = "V současnosti ignorováno"; $a->strings["Currently archived"] = "Aktuálně archivován"; $a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; $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["Notification for new posts"] = "Upozornění na nové příspěvky"; +$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; +$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál"; $a->strings["Suggestions"] = "Doporučení"; $a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; $a->strings["All Contacts"] = "Všechny kontakty"; @@ -798,11 +803,10 @@ $a->strings["Edit contact"] = "Editovat kontakt"; $a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; $a->strings["Update"] = "Aktualizace"; $a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; -$a->strings["Account settings"] = "Nastavení účtu"; $a->strings["Additional features"] = "Další funkčnosti"; -$a->strings["Display settings"] = "Nastavení zobrazení"; -$a->strings["Connector settings"] = "Nastavení konektoru"; -$a->strings["Plugin settings"] = "Nastavení pluginu"; +$a->strings["Display"] = "Zobrazení"; +$a->strings["Social Networks"] = "Sociální sítě"; +$a->strings["Delegations"] = "Delegace"; $a->strings["Connected apps"] = "Propojené aplikace"; $a->strings["Export personal data"] = "Export osobních údajů"; $a->strings["Remove account"] = "Odstranit účet"; @@ -844,7 +848,6 @@ $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:"; @@ -869,6 +872,7 @@ $a->strings["Number of items to display per page:"] = "Počet položek zobrazen $a->strings["Maximum of 100 items"] = "Maximum 100 položek"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; $a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; +$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; $a->strings["Infinite scroll"] = "Nekonečné posouvání"; $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"; @@ -1129,6 +1133,8 @@ $a->strings["Public photo"] = "Veřejné fotografie"; $a->strings["Share"] = "Sdílet"; $a->strings["View Album"] = "Zobrazit album"; $a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; $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["No videos selected"] = "Není vybráno žádné video"; @@ -1311,6 +1317,7 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = " $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["User not found."] = "Uživatel nenalezen"; $a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; +$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; $a->strings["view full size"] = "zobrazit v plné velikosti"; $a->strings["Starts:"] = "Začíná:"; $a->strings["Finishes:"] = "Končí:"; @@ -1470,6 +1477,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno n $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] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/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]."; @@ -1519,6 +1529,8 @@ $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["Information"] = "Informace"; +$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; $a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; $a->strings["Network Reset"] = "Síťový Reset"; $a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; @@ -1530,7 +1542,7 @@ $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["Delegations"] = "Delegace"; +$a->strings["Account settings"] = "Nastavení účtu"; $a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; $a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; $a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; @@ -1553,7 +1565,8 @@ $a->strings["Love/Romance:"] = "Láska/romance"; $a->strings["Work/employment:"] = "Práce/zaměstnání:"; $a->strings["School/education:"] = "Škola/vzdělávání:"; $a->strings["Image/photo"] = "Obrázek/fotografie"; -$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings[""] = ""; $a->strings["$1 wrote:"] = "$1 napsal:"; $a->strings["Encrypted content"] = "Šifrovaný obsah"; $a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; @@ -1573,6 +1586,8 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora konektor"; +$a->strings["Statusnet"] = "Statusnet"; $a->strings["Miscellaneous"] = "Různé"; $a->strings["year"] = "rok"; $a->strings["month"] = "měsíc"; @@ -1601,6 +1616,8 @@ $a->strings["Richtext Editor"] = "Richtext Editor"; $a->strings["Enable richtext editor"] = "Povolit richtext editor"; $a->strings["Post Preview"] = "Náhled příspěvku"; $a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; +$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; $a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; $a->strings["Search by Date"] = "Vyhledávat dle Data"; $a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; From 14694077777322ffb891369f6b24baf178e2f85b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 30 Apr 2014 17:02:06 +0200 Subject: [PATCH 05/30] ZH-CN: update to the strings --- view/zh-cn/messages.po | 2147 +++++++++++++++++++++------------------- view/zh-cn/strings.php | 33 +- 2 files changed, 1137 insertions(+), 1043 deletions(-) diff --git a/view/zh-cn/messages.po b/view/zh-cn/messages.po index 13a52afd64..403eb7e13e 100644 --- a/view/zh-cn/messages.po +++ b/view/zh-cn/messages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-31 18:07+0100\n" -"PO-Revision-Date: 2014-01-04 20:35+0000\n" +"POT-Creation-Date: 2014-04-26 09:22+0200\n" +"PO-Revision-Date: 2014-04-28 04:03+0000\n" "Last-Translator: matthew_exon \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -25,24 +25,24 @@ msgid "This entry was edited" msgstr "这个文章被编辑了" #: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../mod/photos.php:1355 msgid "Private Message" msgstr "私人的新闻" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:663 +#: ../../mod/content.php:727 ../../mod/settings.php:670 msgid "Edit" msgstr "编辑" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../mod/content.php:739 ../../include/conversation.php:612 msgid "Select" msgstr "选择" -#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:695 -#: ../../mod/settings.php:664 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:703 +#: ../../mod/settings.php:671 ../../mod/group.php:171 +#: ../../mod/photos.php:1646 ../../include/conversation.php:613 msgid "Delete" msgstr "删除" @@ -71,7 +71,7 @@ msgid "add tag" msgstr "加标签" #: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../mod/photos.php:1538 msgid "I like this (toggle)" msgstr "我喜欢这(交替)" @@ -80,7 +80,7 @@ msgid "like" msgstr "喜欢" #: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" msgstr "我不喜欢这(交替)" @@ -96,197 +96,198 @@ msgstr "分享这个" msgid "share" msgstr "分享" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "种类:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "归档在:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "看%s的简介@ %s" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "至" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "经过" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "从墙到墙" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "通过从墙到墙" -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s从%s" -#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 +#: ../../mod/content.php:708 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 msgid "Comment" msgstr "评论" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../include/conversation.php:690 ../../include/conversation.php:1102 msgid "Please wait" msgstr "请等一下" -#: ../../object/Item.php:345 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d评论" -#: ../../object/Item.php:347 ../../object/Item.php:360 -#: ../../mod/content.php:604 ../../include/text.php:1928 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1946 msgid "comment" msgid_plural "comments" msgstr[0] "评论" -#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "看多" -#: ../../object/Item.php:633 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/content.php:706 +#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 +#: ../../mod/photos.php:1685 msgid "This is you" msgstr "这是你" -#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 #: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" msgstr "提交" -#: ../../object/Item.php:637 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "粗体字 " -#: ../../object/Item.php:638 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "斜体 " -#: ../../object/Item.php:639 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "下划线" -#: ../../object/Item.php:640 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "引语" -#: ../../object/Item.php:641 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "源代码" -#: ../../object/Item.php:642 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "图片" -#: ../../object/Item.php:643 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "环节" -#: ../../object/Item.php:644 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "录像" -#: ../../object/Item.php:645 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 +#: ../../include/conversation.php:1119 msgid "Preview" msgstr "预演" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "您用插件前要登录" -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "未发现" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "页发现。" -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "权限不够" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 #: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 -#: ../../mod/settings.php:96 ../../mod/settings.php:583 -#: ../../mod/settings.php:588 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:101 ../../mod/settings.php:590 +#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 #: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4215 +#: ../../wall_attach.php:55 ../../include/items.php:4373 msgid "Permission denied." msgstr "权限不够。" -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "交替手机" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "主页" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 +#: ../../include/nav.php:145 msgid "Your posts and conversations" msgstr "你的消息和交谈" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -299,7 +300,7 @@ msgid "Your profile page" msgstr "你的简介页" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "照片" @@ -310,7 +311,7 @@ msgid "Your photos" msgstr "你的照片" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "事件" @@ -338,13 +339,13 @@ msgstr "社会" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" msgstr "别著" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" msgstr "著" @@ -353,6 +354,7 @@ msgstr "著" #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 #: ../../view/theme/clean/config.php:73 #: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:49 msgid "Theme settings" msgstr "主题设置" @@ -374,8 +376,8 @@ msgstr "决定行高在文章和评论" msgid "Set resolution for middle column" msgstr "决定中栏的显示分辨率列表" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 -#: ../../include/nav.php:171 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:173 msgid "Contacts" msgstr "熟人" @@ -409,28 +411,28 @@ msgid "Last likes" msgstr "上次喜欢" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1922 +#: ../../include/conversation.php:246 ../../include/text.php:1940 msgid "event" msgstr "项目" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1878 +#: ../../include/diaspora.php:1908 msgid "status" msgstr "现状" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1924 ../../include/diaspora.php:1878 +#: ../../include/text.php:1942 ../../include/diaspora.php:1908 msgid "photo" msgstr "照片" -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s喜欢%2$s的%3$s" @@ -441,16 +443,16 @@ msgstr "%1$s喜欢%2$s的%3$s" msgid "Last photos" msgstr "上次照片" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 msgid "Contact Photos" msgstr "熟人照片" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 ../../include/user.php:334 @@ -487,8 +489,8 @@ msgstr "邀请朋友们" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 +#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../include/nav.php:169 msgid "Settings" msgstr "配置" @@ -566,7 +568,7 @@ msgid "Set colour scheme" msgstr "选择色彩设计" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1658 +#: ../../include/text.php:1676 msgid "default" msgstr "默认" @@ -604,210 +606,214 @@ msgstr "选择图片在文章和评论的重设尺寸(宽和高)" msgid "Set theme width" msgstr "选择主题宽" -#: ../../boot.php:684 +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "选择款式" + +#: ../../boot.php:692 msgid "Delete this item?" msgstr "删除这个项目?" -#: ../../boot.php:687 +#: ../../boot.php:695 msgid "show fewer" msgstr "显示更小" -#: ../../boot.php:1015 +#: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." msgstr "更新%s美通过。看错误记录。" -#: ../../boot.php:1017 +#: ../../boot.php:1025 #, php-format msgid "Update Error at %s" msgstr "更新错误在%s" -#: ../../boot.php:1127 +#: ../../boot.php:1135 msgid "Create a New Account" msgstr "创造新的账户" -#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 +#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" msgstr "注册" -#: ../../boot.php:1152 ../../include/nav.php:73 +#: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" msgstr "注销" -#: ../../boot.php:1153 ../../include/nav.php:91 +#: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" msgstr "登录" -#: ../../boot.php:1155 +#: ../../boot.php:1163 msgid "Nickname or Email address: " msgstr "绰号或电子邮件地址: " -#: ../../boot.php:1156 +#: ../../boot.php:1164 msgid "Password: " msgstr "密码: " -#: ../../boot.php:1157 +#: ../../boot.php:1165 msgid "Remember me" msgstr "记住我" -#: ../../boot.php:1160 +#: ../../boot.php:1168 msgid "Or login using OpenID: " msgstr "或者用OpenID登记:" -#: ../../boot.php:1166 +#: ../../boot.php:1174 msgid "Forgot your password?" msgstr "忘记你的密码吗?" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 +#: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" msgstr "复位密码" -#: ../../boot.php:1169 +#: ../../boot.php:1177 msgid "Website Terms of Service" msgstr "网站的各项规定" -#: ../../boot.php:1170 +#: ../../boot.php:1178 msgid "terms of service" msgstr "各项规定" -#: ../../boot.php:1172 +#: ../../boot.php:1180 msgid "Website Privacy Policy" msgstr "网站隐私政策" -#: ../../boot.php:1173 +#: ../../boot.php:1181 msgid "privacy policy" msgstr "隐私政策" -#: ../../boot.php:1302 +#: ../../boot.php:1314 msgid "Requested account is not available." msgstr "要求的账户不可用。" -#: ../../boot.php:1341 ../../mod/profile.php:21 +#: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." msgstr "要求的简介联系不上的。" -#: ../../boot.php:1381 ../../boot.php:1485 +#: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" msgstr "修改简介" -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" msgstr "连接" -#: ../../boot.php:1447 +#: ../../boot.php:1459 msgid "Message" msgstr "通知" -#: ../../boot.php:1455 ../../include/nav.php:169 +#: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" msgstr "简介" -#: ../../boot.php:1455 +#: ../../boot.php:1467 msgid "Manage/edit profiles" msgstr "管理/修改简介" -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 +#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" msgstr "换简介照片" -#: ../../boot.php:1462 ../../mod/profiles.php:727 +#: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" msgstr "创造新的简介" -#: ../../boot.php:1472 ../../mod/profiles.php:738 +#: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" msgstr "简介图像" -#: ../../boot.php:1475 ../../mod/profiles.php:740 +#: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" msgstr "给打假可见的" -#: ../../boot.php:1476 ../../mod/profiles.php:741 +#: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" msgstr "修改能见度" -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" msgstr "位置:" -#: ../../boot.php:1503 ../../mod/directory.php:136 +#: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" msgstr "性别:" -#: ../../boot.php:1506 ../../mod/directory.php:138 +#: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" msgstr "现状:" -#: ../../boot.php:1508 ../../mod/directory.php:140 +#: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" msgstr "主页:" -#: ../../boot.php:1584 ../../boot.php:1670 +#: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" msgstr "g A l d F" -#: ../../boot.php:1585 ../../boot.php:1671 +#: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" msgstr "F d" -#: ../../boot.php:1630 ../../boot.php:1711 +#: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" msgstr "[今天]" -#: ../../boot.php:1642 +#: ../../boot.php:1654 msgid "Birthday Reminders" msgstr "提醒生日" -#: ../../boot.php:1643 +#: ../../boot.php:1655 msgid "Birthdays this week:" msgstr "这周的生日:" -#: ../../boot.php:1704 +#: ../../boot.php:1716 msgid "[No description]" msgstr "[无描述]" -#: ../../boot.php:1722 +#: ../../boot.php:1734 msgid "Event Reminders" msgstr "事件提醒" -#: ../../boot.php:1723 +#: ../../boot.php:1735 msgid "Events this week:" msgstr "这周的事件:" -#: ../../boot.php:1960 ../../include/nav.php:76 +#: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" msgstr "现状" -#: ../../boot.php:1963 +#: ../../boot.php:1975 msgid "Status Messages and Posts" msgstr "现状通知和文章" -#: ../../boot.php:1970 +#: ../../boot.php:1982 msgid "Profile Details" msgstr "简介内容" -#: ../../boot.php:1977 ../../mod/photos.php:51 +#: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "相册" -#: ../../boot.php:1981 ../../boot.php:1984 +#: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" msgstr "视频" -#: ../../boot.php:1994 +#: ../../boot.php:2006 msgid "Events and Calendar" msgstr "项目和日历" -#: ../../boot.php:1998 ../../mod/notes.php:44 +#: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "私人便条" -#: ../../boot.php:2001 +#: ../../boot.php:2013 msgid "Only You Can See This" msgstr "只您许看这个" @@ -827,15 +833,15 @@ msgstr "选择现在的心情而告诉朋友们" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 #: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." msgstr "公众看拒绝" -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 +#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4023 +#: ../../include/items.php:4177 msgid "Item not found." msgstr "项目找不到。" @@ -843,7 +849,7 @@ msgstr "项目找不到。" msgid "Access to this profile has been restricted." msgstr "使用权这个简介被限制了." -#: ../../mod/display.php:239 +#: ../../mod/display.php:263 msgid "Item has been removed." msgstr "项目被删除了。" @@ -888,126 +894,126 @@ msgstr "没有安装的插件/应用" msgid "%1$s welcomes %2$s" msgstr "%1$s欢迎%2$s" -#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "注册信息为%s" -#: ../../mod/register.php:99 +#: ../../mod/register.php:100 msgid "" "Registration successful. Please check your email for further instructions." msgstr "注册成功了。请咨询说明再您的收件箱。" -#: ../../mod/register.php:103 +#: ../../mod/register.php:104 msgid "Failed to send email message. Here is the message that failed." msgstr "发邮件失败了。这条试失败的消息。" -#: ../../mod/register.php:108 +#: ../../mod/register.php:109 msgid "Your registration can not be processed." msgstr "处理不了您的注册。" -#: ../../mod/register.php:148 +#: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" msgstr "注册要求再%s" -#: ../../mod/register.php:157 +#: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." msgstr "您的注册等网页主的批准。" -#: ../../mod/register.php:195 ../../mod/uimport.php:50 +#: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "这个网站超过一天最多账户注册。请明天再试。" -#: ../../mod/register.php:223 +#: ../../mod/register.php:224 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。" -#: ../../mod/register.php:224 +#: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" -#: ../../mod/register.php:225 +#: ../../mod/register.php:226 msgid "Your OpenID (optional): " msgstr "您的OpenID(可选的):" -#: ../../mod/register.php:239 +#: ../../mod/register.php:240 msgid "Include your profile in member directory?" msgstr "放您的简介再员目录?" -#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 -#: ../../mod/settings.php:981 ../../mod/settings.php:987 -#: ../../mod/settings.php:995 ../../mod/settings.php:999 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 -#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4064 +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:998 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4218 msgid "Yes" msgstr "是" -#: ../../mod/register.php:243 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 -#: ../../mod/settings.php:987 ../../mod/settings.php:995 -#: ../../mod/settings.php:999 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 -#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 -#: ../../mod/profiles.php:611 +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/profiles.php:615 msgid "No" msgstr "否" -#: ../../mod/register.php:260 +#: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." msgstr "会员身份在这个网站是光通过邀请。" -#: ../../mod/register.php:261 +#: ../../mod/register.php:262 msgid "Your invitation ID: " msgstr "您邀请ID:" -#: ../../mod/register.php:264 ../../mod/admin.php:572 +#: ../../mod/register.php:265 ../../mod/admin.php:573 msgid "Registration" msgstr "注册" -#: ../../mod/register.php:272 +#: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " msgstr "您姓名(例如「张三」):" -#: ../../mod/register.php:273 +#: ../../mod/register.php:274 msgid "Your Email Address: " msgstr "你的电子邮件地址:" -#: ../../mod/register.php:274 +#: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@$sitename」." -#: ../../mod/register.php:275 +#: ../../mod/register.php:276 msgid "Choose a nickname: " msgstr "选择昵称:" -#: ../../mod/register.php:284 ../../mod/uimport.php:64 +#: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" msgstr "进口" -#: ../../mod/register.php:285 +#: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" msgstr "进口您的简介到这个friendica服务器" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "找不到简介。" @@ -1052,7 +1058,7 @@ msgid "Unable to set contact photo." msgstr "不会指定熟人照片。" #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s是成为%2$s的朋友" @@ -1217,7 +1223,7 @@ msgstr "没有接受者。" #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" msgstr "请输入环节URL:" @@ -1249,13 +1255,13 @@ msgstr "你的消息:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 msgid "Upload photo" msgstr "上传照片" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1088 msgid "Insert web link" msgstr "插入网页环节" @@ -1454,12 +1460,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "您真的想删除这个建议吗?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4067 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 +#: ../../include/items.php:4221 msgid "Cancel" msgstr "退消" @@ -1473,103 +1479,103 @@ msgstr "没有建议。如果这是新网站,请24小时后再试。" msgid "Ignore/Hide" msgstr "不理/隐藏" -#: ../../mod/network.php:179 +#: ../../mod/network.php:136 msgid "Search Results For:" msgstr "搜索结果为:" -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" msgstr "删除关键字" -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:42 msgid "Saved Searches" msgstr "保存的搜索" -#: ../../mod/network.php:232 ../../include/group.php:275 +#: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" msgstr "添加" -#: ../../mod/network.php:394 +#: ../../mod/network.php:350 msgid "Commented Order" msgstr "评论时间顺序" -#: ../../mod/network.php:397 +#: ../../mod/network.php:353 msgid "Sort by Comment Date" msgstr "按评论日期顺序排列" -#: ../../mod/network.php:400 +#: ../../mod/network.php:356 msgid "Posted Order" msgstr "贴时间顺序" -#: ../../mod/network.php:403 +#: ../../mod/network.php:359 msgid "Sort by Post Date" msgstr "按发布日期顺序排列" -#: ../../mod/network.php:441 ../../mod/notifications.php:88 +#: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" msgstr "私人" -#: ../../mod/network.php:444 +#: ../../mod/network.php:368 msgid "Posts that mention or involve you" msgstr "提或关您的文章" -#: ../../mod/network.php:450 +#: ../../mod/network.php:374 msgid "New" msgstr "新" -#: ../../mod/network.php:453 +#: ../../mod/network.php:377 msgid "Activity Stream - by date" msgstr "活动河流-按日期" -#: ../../mod/network.php:459 +#: ../../mod/network.php:383 msgid "Shared Links" msgstr "共同环节" -#: ../../mod/network.php:462 +#: ../../mod/network.php:386 msgid "Interesting Links" msgstr "有意思的超链接" -#: ../../mod/network.php:468 +#: ../../mod/network.php:392 msgid "Starred" msgstr "被星" -#: ../../mod/network.php:471 +#: ../../mod/network.php:395 msgid "Favourite Posts" msgstr "最喜欢的文章" -#: ../../mod/network.php:539 +#: ../../mod/network.php:457 #, 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] "警告:这个组bao han%s成员从不安全网络。" -#: ../../mod/network.php:542 +#: ../../mod/network.php:460 msgid "Private messages to this group are at risk of public disclosure." msgstr "私人通信给这组回被公开。" -#: ../../mod/network.php:588 ../../mod/content.php:119 +#: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" msgstr "没有这个组" -#: ../../mod/network.php:599 ../../mod/content.php:130 +#: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" msgstr "组没有成员" -#: ../../mod/network.php:605 ../../mod/content.php:134 +#: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " msgstr "组:" -#: ../../mod/network.php:617 +#: ../../mod/network.php:548 msgid "Contact: " msgstr "熟人:" -#: ../../mod/network.php:619 +#: ../../mod/network.php:550 msgid "Private messages to this person are at risk of public disclosure." msgstr "私人通信给这个人回被公开。" -#: ../../mod/network.php:624 +#: ../../mod/network.php:555 msgid "Invalid contact." msgstr "无效熟人。" @@ -1876,19 +1882,20 @@ msgstr "重要:您要[手工地]准备安排的任务给喂器。" msgid "Theme settings updated." msgstr "主题设置更新了。" -#: ../../mod/admin.php:101 ../../mod/admin.php:570 +#: ../../mod/admin.php:101 ../../mod/admin.php:571 msgid "Site" msgstr "网站" -#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 +#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 msgid "Users" msgstr "用户" -#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 +#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 +#: ../../mod/settings.php:56 msgid "Plugins" msgstr "插件" -#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 +#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 msgid "Themes" msgstr "主题" @@ -1896,11 +1903,11 @@ msgstr "主题" msgid "DB updates" msgstr "数据库更新" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 msgid "Logs" msgstr "记录" -#: ../../mod/admin.php:125 ../../include/nav.php:178 +#: ../../mod/admin.php:125 ../../include/nav.php:180 msgid "Admin" msgstr "管理" @@ -1912,19 +1919,19 @@ msgstr "插件特点" msgid "User registrations waiting for confirmation" msgstr "用户注册等确认" -#: ../../mod/admin.php:187 ../../mod/admin.php:852 +#: ../../mod/admin.php:187 ../../mod/admin.php:853 msgid "Normal Account" msgstr "正常帐户" -#: ../../mod/admin.php:188 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:854 msgid "Soapbox Account" msgstr "演讲台帐户" -#: ../../mod/admin.php:189 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:855 msgid "Community/Celebrity Account" msgstr "社会/名人帐户" -#: ../../mod/admin.php:190 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:856 msgid "Automatic Friend Account" msgstr "自动朋友帐户" @@ -1940,9 +1947,9 @@ msgstr "私人评坛" msgid "Message queues" msgstr "通知排队" -#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 -#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 -#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 +#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 +#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 +#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 msgid "Administration" msgstr "管理" @@ -1974,316 +1981,320 @@ msgstr "不能分析基础URL。至少要://" msgid "Site settings updated." msgstr "网站设置更新了。" -#: ../../mod/admin.php:512 ../../mod/settings.php:810 +#: ../../mod/admin.php:512 ../../mod/settings.php:822 msgid "No special theme for mobile devices" msgstr "没专门适合手机的主题" -#: ../../mod/admin.php:529 ../../mod/contacts.php:402 +#: ../../mod/admin.php:529 ../../mod/contacts.php:408 msgid "Never" msgstr "从未" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 +msgid "At post arrival" +msgstr "收件的时候" + +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "时常" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "每小时" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "每日两次" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "每日" -#: ../../mod/admin.php:538 +#: ../../mod/admin.php:539 msgid "Multi user instance" msgstr "多用户网站" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:557 msgid "Closed" msgstr "关闭" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:558 msgid "Requires approval" msgstr "要批准" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:559 msgid "Open" msgstr "打开" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:563 msgid "No SSL policy, links will track page SSL state" msgstr "没SSL方针,环节将追踪页SSL现状" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:564 msgid "Force all links to use SSL" msgstr "让所有的环节用SSL" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:565 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "自签证书,用SSL再光本地环节(劝止的)" -#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 -#: ../../mod/admin.php:1332 ../../mod/settings.php:601 -#: ../../mod/settings.php:711 ../../mod/settings.php:780 -#: ../../mod/settings.php:856 ../../mod/settings.php:1084 +#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 +#: ../../mod/admin.php:1333 ../../mod/settings.php:608 +#: ../../mod/settings.php:718 ../../mod/settings.php:792 +#: ../../mod/settings.php:871 ../../mod/settings.php:1101 msgid "Save Settings" msgstr "保存设置" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:574 msgid "File upload" msgstr "文件上传" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:575 msgid "Policies" msgstr "政策" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:576 msgid "Advanced" msgstr "高等" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:577 msgid "Performance" msgstr "性能" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:578 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "调动:注意先进的功能。能吧服务器使不能联系。" -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Site name" msgstr "网页名字" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Banner/Logo" msgstr "标题/标志" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "Additional Info" msgstr "别的消息" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "公共服务器:您会这里添加消息要列在dir.friendica.com/siteinfo。" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System language" msgstr "系统语言" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "System theme" msgstr "系统主题" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "默认系统主题-会被用户简介超驰-把主题设置变化" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Mobile system theme" msgstr "手机系统主题" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Theme for mobile devices" msgstr "主题适合手机" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "SSL link policy" msgstr "SSL环节方针" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Determines whether generated links should be forced to use SSL" msgstr "决定产生的环节否则被强迫用SSL" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Old style 'Share'" msgstr "老款式'分享'" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "为重复的项目吧bbcode“share”代码使不活跃" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Hide help entry from navigation menu" msgstr "隐藏帮助在航行选单" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Single user instance" msgstr "单用户网站" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Make this instance multi-user or single-user for the named user" msgstr "弄这网站多用户或单用户为选择的用户" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image size" msgstr "图片最大尺寸" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "最多上传照相的字节。默认是零,意思是无限。" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "Maximum image length" msgstr "最大图片大小" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 msgid "JPEG image quality" msgstr "JPEG图片质量" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。" -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "Register policy" msgstr "注册政策" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Maximum Daily Registrations" msgstr "一天最多注册" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Register text" msgstr "注册正文" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Will be displayed prominently on the registration page." msgstr "被显著的在注册页表示。" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "Accounts abandoned after x days" msgstr "账户丢弃X天后" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "Allowed friend domains" msgstr "允许的朋友域" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 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:599 +#: ../../mod/admin.php:600 msgid "Allowed email domains" msgstr "允许的电子邮件域" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 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:600 +#: ../../mod/admin.php:601 msgid "Block public" msgstr "拦公开" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 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:601 +#: ../../mod/admin.php:602 msgid "Force publish" msgstr "需要出版" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "让所有这网站的的简介表明在网站目录。" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Global directory update URL" msgstr "综合目录更新URL" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL为更新综合目录。如果没有,这个应用用不了综合目录。" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Allow threaded items" msgstr "允许线绳项目" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Allow infinite level threading for items on this site." msgstr "允许无限水平线绳为这网站的项目。" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "Private posts by default for new users" msgstr "新用户默认写私人文章" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "默认新用户文章批准使默认隐私组,没有公开。" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Don't include post content in email notifications" msgstr "别包含文章内容在邮件消息" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "别包含文章/谈论/私消息/等的内容在文件消息被这个网站寄出,为了隐私。" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Disallow public access to addons listed in the apps menu." msgstr "不允许插件的公众使用权在应用选单。" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "复选这个框为把应用选内插件限制仅成员" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "Don't embed private images in posts" msgstr "别嵌入私人图案在文章里" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2291,499 +2302,499 @@ msgid "" "while." msgstr "别把复制嵌入的照相代替本网站的私人照相在文章里。结果是收包括私人照相的熟人要认证才卸载个张照片,会花许久。" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "Allow Users to set remote_self" msgstr "允许用户用遥远的自身" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "选择这个之后,用户们允许表明熟人当遥远的自身在熟人修理页。遥远的自身所有文章被复制到用户文章流。" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Block multiple registrations" msgstr "拦一人多注册" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Disallow users to register additional accounts for use as pages." msgstr "不允许用户注册别的账户为当页。" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support" msgstr "OpenID支持" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support for registration and logins." msgstr "OpenID支持注册和登录。" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Fullname check" msgstr "全名核实" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "UTF-8 Regular expressions" msgstr "UTF-8正则表达式" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Use PHP UTF8 regular expressions" msgstr "用PHP UTF8正则表达式" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Show Community Page" msgstr "表示社会页" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "表示社会页表明这网站所有最近公开的文章" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "Enable OStatus support" msgstr "使OStatus支持可用" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。" +msgstr "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "OStatus conversation completion interval" msgstr "OStatus对话完成间隔" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Enable Diaspora support" msgstr "使Diaspora支持能够" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Provide built-in Diaspora network compatibility." msgstr "提供内装Diaspora网络兼容。" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Only allow Friendica contacts" msgstr "只许Friendica熟人" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都不能用。" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 msgid "Verify SSL" msgstr "证实" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 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 "你想的话,您会使严格证书核实可用。意思是您不能根自签的SSL网站交流。" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:620 msgid "Proxy user" msgstr "代理用户" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Proxy URL" msgstr "代理URL" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Network timeout" msgstr "网络超时" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "输入秒数。输入零为无限(不推荐的)。" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "Delivery interval" msgstr "传送间隔" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 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 "把背景传送过程耽误这多秒为减少系统工作量。推荐:4-5在共用服务器,2-3在私人服务器。0-1在大专门服务器。" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "Poll interval" msgstr "检查时间" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 msgid "Maximum Load Average" msgstr "最大负荷平均" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Use MySQL full text engine" msgstr "用MySQL全正文机车" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress Language" msgstr "封锁语言" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress language information in meta information about a posting." msgstr "遗漏语言消息从文章的描述" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Path to item cache" msgstr "路线到项目缓存" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Cache duration in seconds" msgstr "缓存时间秒" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "缓存文件应该保存多久?默认是86400秒(一天)。" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Path for lock file" msgstr "路线到锁文件" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Temp path" msgstr "临时文件路线" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:633 msgid "Base path to installation" msgstr "基础安装路线" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:635 msgid "New base url" msgstr "新基础URL" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:653 msgid "Update has been marked successful" msgstr "更新当成功标签了" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:663 #, php-format msgid "Executing %s failed. Check system logs." msgstr "把%s实行没通过了。看系统记录。" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:666 #, php-format msgid "Update %s was successfully applied." msgstr "把%s更新成功地实行。" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:670 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "%s更新没回答现状。不知道是否成功。" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:673 #, php-format msgid "Update function %s could not be found." msgstr "找不到更新功能%s。" -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:688 msgid "No failed updates." msgstr "没有不通过地更新。" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "Failed Updates" msgstr "没通过的更新" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "这个不包括1139号更新之前,它们没回答装线。" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:694 msgid "Mark success (if update was manually applied)" msgstr "标注成功(如果手动地把更新实行了)" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:695 msgid "Attempt to execute this update step automatically" msgstr "试图自动地把这步更新实行" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:741 msgid "Registration successful. Email send to user" msgstr "注册成功。邮件寄给用户。" -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:751 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s用户拦/不拦了" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:758 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s用户删除了" -#: ../../mod/admin.php:796 +#: ../../mod/admin.php:797 #, php-format msgid "User '%s' deleted" msgstr "用户「%s」删除了" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' unblocked" msgstr "用户「%s」无拦了" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' blocked" msgstr "用户「%s」拦了" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:900 msgid "Add User" msgstr "添加用户" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:901 msgid "select all" msgstr "都选" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:902 msgid "User registrations waiting for confirm" msgstr "用户注册等待确认" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:903 msgid "User waiting for permanent deletion" msgstr "用户等待长久删除" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:904 msgid "Request date" msgstr "要求日期" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:929 ../../mod/crepair.php:150 -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:930 ../../mod/crepair.php:150 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 msgid "Name" msgstr "名字" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "电子邮件" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:905 msgid "No registrations." msgstr "没有注册。" -#: ../../mod/admin.php:905 ../../mod/notifications.php:161 +#: ../../mod/admin.php:906 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "批准" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:907 msgid "Deny" msgstr "否定" -#: ../../mod/admin.php:908 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "拦" -#: ../../mod/admin.php:909 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "不拦" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:911 msgid "Site admin" msgstr "网站管理员" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 msgid "Account expired" msgstr "帐户过期了" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:915 msgid "New User" msgstr "新用户" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Register date" msgstr "注册日期" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last login" msgstr "上次登录" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last item" msgstr "上项目" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:916 msgid "Deleted since" msgstr "删除从" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:917 ../../mod/settings.php:35 msgid "Account" msgstr "帐户" -#: ../../mod/admin.php:918 +#: ../../mod/admin.php:919 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:920 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?" -#: ../../mod/admin.php:929 +#: ../../mod/admin.php:930 msgid "Name of the new user." msgstr "新用户的名" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname" msgstr "昵称" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname of the new user." msgstr "新用户的昵称" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:932 msgid "Email address of the new user." msgstr "新用户的邮件地址" -#: ../../mod/admin.php:964 +#: ../../mod/admin.php:965 #, php-format msgid "Plugin %s disabled." msgstr "使插件%s不能用。" -#: ../../mod/admin.php:968 +#: ../../mod/admin.php:969 #, php-format msgid "Plugin %s enabled." msgstr "使插件%s能用。" -#: ../../mod/admin.php:978 ../../mod/admin.php:1181 +#: ../../mod/admin.php:979 ../../mod/admin.php:1182 msgid "Disable" msgstr "使不能用" -#: ../../mod/admin.php:980 ../../mod/admin.php:1183 +#: ../../mod/admin.php:981 ../../mod/admin.php:1184 msgid "Enable" msgstr "使能用" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 msgid "Toggle" msgstr "肘节" -#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Author: " msgstr "作家:" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 msgid "Maintainer: " msgstr "保持员:" -#: ../../mod/admin.php:1141 +#: ../../mod/admin.php:1142 msgid "No themes found." msgstr "找不到主题。" -#: ../../mod/admin.php:1203 +#: ../../mod/admin.php:1204 msgid "Screenshot" msgstr "截图" -#: ../../mod/admin.php:1249 +#: ../../mod/admin.php:1250 msgid "[Experimental]" msgstr "[试验]" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1251 msgid "[Unsupported]" msgstr "[没支持]" -#: ../../mod/admin.php:1277 +#: ../../mod/admin.php:1278 msgid "Log settings updated." msgstr "日志设置更新了。" -#: ../../mod/admin.php:1333 +#: ../../mod/admin.php:1334 msgid "Clear" msgstr "清理出" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1340 msgid "Enable Debugging" msgstr "把调试使可用的" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "Log file" msgstr "记录文件" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1342 msgid "Log level" msgstr "记录水平" -#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 +#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 msgid "Update now" msgstr "现在更新" -#: ../../mod/admin.php:1391 +#: ../../mod/admin.php:1392 msgid "Close" msgstr "关闭" -#: ../../mod/admin.php:1397 +#: ../../mod/admin.php:1398 msgid "FTP Host" msgstr "FTP主机" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1399 msgid "FTP Path" msgstr "FTP目录" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1400 msgid "FTP User" msgstr "FTP用户" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1401 msgid "FTP Password" msgstr "FTP密码" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 -#: ../../include/text.php:935 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 +#: ../../include/text.php:939 ../../include/nav.php:118 msgid "Search" msgstr "搜索" #: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." msgstr "没有结果" @@ -2808,75 +2819,75 @@ msgstr "项目没找到" msgid "Edit post" msgstr "编辑文章" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 msgid "upload photo" msgstr "上传照片" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 msgid "Attach file" msgstr "附上文件" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 msgid "attach file" msgstr "附上文件" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 msgid "web link" msgstr "网页环节" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 msgid "Insert video link" msgstr "插入视频环节" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 msgid "video link" msgstr "视频环节" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 msgid "Insert audio link" msgstr "插入录音环节" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 msgid "audio link" msgstr "录音环节" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 msgid "Set your location" msgstr "设定您的位置" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 msgid "set location" msgstr "指定位置" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 msgid "Clear browser location" msgstr "清空浏览器位置" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 msgid "clear location" msgstr "清理出位置" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 msgid "Permission settings" msgstr "权设置" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 msgid "CC: email addresses" msgstr "抄送: 电子邮件地址" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 msgid "Public post" msgstr "公开的消息" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 msgid "Set title" msgstr "指定标题" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 msgid "Categories (comma-separated list)" msgstr "种类(逗号分隔单)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 msgid "Example: bob@example.com, mary@example.com" msgstr "比如: li@example.com, wang@example.com" @@ -2905,7 +2916,7 @@ msgstr "清登录。" msgid "Find on this site" msgstr "找在这网站" -#: ../../mod/directory.php:59 ../../mod/contacts.php:685 +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " msgstr "找着:" @@ -2913,12 +2924,12 @@ msgstr "找着:" msgid "Site Directory" msgstr "网站目录" -#: ../../mod/directory.php:61 ../../mod/contacts.php:686 +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "搜索" -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 +#: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " msgstr "年纪:" @@ -3047,7 +3058,7 @@ msgstr "摇隐私信息无效" msgid "Visible to:" msgstr "可见给:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 msgid "Save" msgstr "保存" @@ -3143,7 +3154,7 @@ msgstr "无效的简介URL。" msgid "Disallowed profile URL." msgstr "不允许的简介地址." -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." msgstr "更新熟人记录失败了。" @@ -3179,7 +3190,7 @@ msgstr "请确认您的介绍/联络要求给%s。" msgid "Confirm" msgstr "确认" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 msgid "[Name Withheld]" msgstr "[名字拒给]" @@ -3231,7 +3242,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet/联合社会化网" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3257,7 +3268,7 @@ msgstr "提交要求" msgid "[Embedded content - reload page to view]" msgstr "[嵌入内容-重新加载页为看]" -#: ../../mod/content.php:496 ../../include/conversation.php:686 +#: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" msgstr "看在上下文" @@ -3267,7 +3278,7 @@ msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d熟人编辑了" -#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." msgstr "用不了熟人记录。" @@ -3275,893 +3286,901 @@ msgstr "用不了熟人记录。" msgid "Could not locate selected profile." msgstr "找不到选择的简介。" -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:178 msgid "Contact updated." msgstr "熟人更新了。" -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been blocked" msgstr "熟人拦了" -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been unblocked" msgstr "熟人否拦了" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been ignored" msgstr "熟人不理了" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been unignored" msgstr "熟人否不理了" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been archived" msgstr "把联系存档了" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been unarchived" msgstr "把联系从存档拿来了" -#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" msgstr "您真的想删除这个熟人吗?" -#: ../../mod/contacts.php:335 +#: ../../mod/contacts.php:341 msgid "Contact has been removed." msgstr "熟人删除了。" -#: ../../mod/contacts.php:373 +#: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" msgstr "您和%s是共同朋友们" -#: ../../mod/contacts.php:377 +#: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" msgstr "您分享给%s" -#: ../../mod/contacts.php:382 +#: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" msgstr "%s给您分享" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." msgstr "没有私人的沟通跟这个熟人" -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was successful)" msgstr "(更新成功)" -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was not successful)" msgstr "(更新不成功)" -#: ../../mod/contacts.php:408 +#: ../../mod/contacts.php:414 msgid "Suggest friends" msgstr "建议朋友们" -#: ../../mod/contacts.php:412 +#: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" msgstr "网络种类: %s" -#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d共同熟人" -#: ../../mod/contacts.php:420 +#: ../../mod/contacts.php:426 msgid "View all contacts" msgstr "看所有的熟人" -#: ../../mod/contacts.php:428 +#: ../../mod/contacts.php:434 msgid "Toggle Blocked status" msgstr "交替拦配置" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 msgid "Unignore" msgstr "停不理" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "忽视" -#: ../../mod/contacts.php:434 +#: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "交替忽视现状" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" msgstr "从存档拿来" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" msgstr "存档" -#: ../../mod/contacts.php:441 +#: ../../mod/contacts.php:447 msgid "Toggle Archive status" msgstr "交替档案现状" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:450 msgid "Repair" msgstr "维修" -#: ../../mod/contacts.php:447 +#: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" msgstr "专家熟人设置" -#: ../../mod/contacts.php:453 +#: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" msgstr "联系跟这个熟人断开了!" -#: ../../mod/contacts.php:456 +#: ../../mod/contacts.php:462 msgid "Contact Editor" msgstr "熟人编器" -#: ../../mod/contacts.php:459 +#: ../../mod/contacts.php:465 msgid "Profile Visibility" msgstr "简历可见量" -#: ../../mod/contacts.php:460 +#: ../../mod/contacts.php:466 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。" -#: ../../mod/contacts.php:461 +#: ../../mod/contacts.php:467 msgid "Contact Information / Notes" msgstr "熟人信息/便条" -#: ../../mod/contacts.php:462 +#: ../../mod/contacts.php:468 msgid "Edit contact notes" msgstr "编辑熟人便条" -#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "看%s的简介[%s]" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "拦/否拦熟人" -#: ../../mod/contacts.php:469 +#: ../../mod/contacts.php:475 msgid "Ignore contact" msgstr "忽视熟人" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:476 msgid "Repair URL settings" msgstr "维修URL设置" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:477 msgid "View conversations" msgstr "看交流" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:479 msgid "Delete contact" msgstr "删除熟人" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:483 msgid "Last update:" msgstr "上个更新:" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:485 msgid "Update public posts" msgstr "更新公开文章" -#: ../../mod/contacts.php:488 +#: ../../mod/contacts.php:494 msgid "Currently blocked" msgstr "现在拦的" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:495 msgid "Currently ignored" msgstr "现在不理的" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:496 msgid "Currently archived" msgstr "现在存档着" -#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "隐藏这个熟人给别人" -#: ../../mod/contacts.php:491 +#: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" msgstr "回答/喜欢关您公开文章还可见的" -#: ../../mod/contacts.php:542 +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "新消息提示" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "发提示在所有这个联络的新消息" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "拿文源别的消息" + +#: ../../mod/contacts.php:550 msgid "Suggestions" msgstr "建议" -#: ../../mod/contacts.php:545 +#: ../../mod/contacts.php:553 msgid "Suggest potential friends" msgstr "建议潜在朋友们" -#: ../../mod/contacts.php:548 ../../mod/group.php:194 +#: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" msgstr "所有的熟人" -#: ../../mod/contacts.php:551 +#: ../../mod/contacts.php:559 msgid "Show all contacts" msgstr "表示所有的熟人" -#: ../../mod/contacts.php:554 +#: ../../mod/contacts.php:562 msgid "Unblocked" msgstr "不拦了" -#: ../../mod/contacts.php:557 +#: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" msgstr "只表示不拦的熟人" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:569 msgid "Blocked" msgstr "拦了" -#: ../../mod/contacts.php:564 +#: ../../mod/contacts.php:572 msgid "Only show blocked contacts" msgstr "只表示拦的熟人" -#: ../../mod/contacts.php:568 +#: ../../mod/contacts.php:576 msgid "Ignored" msgstr "忽视的" -#: ../../mod/contacts.php:571 +#: ../../mod/contacts.php:579 msgid "Only show ignored contacts" msgstr "只表示忽视的熟人" -#: ../../mod/contacts.php:575 +#: ../../mod/contacts.php:583 msgid "Archived" msgstr "在存档" -#: ../../mod/contacts.php:578 +#: ../../mod/contacts.php:586 msgid "Only show archived contacts" msgstr "只表示档案熟人" -#: ../../mod/contacts.php:582 +#: ../../mod/contacts.php:590 msgid "Hidden" msgstr "隐藏的" -#: ../../mod/contacts.php:585 +#: ../../mod/contacts.php:593 msgid "Only show hidden contacts" msgstr "只表示隐藏的熟人" -#: ../../mod/contacts.php:633 +#: ../../mod/contacts.php:641 msgid "Mutual Friendship" msgstr "共同友谊" -#: ../../mod/contacts.php:637 +#: ../../mod/contacts.php:645 msgid "is a fan of yours" msgstr "是您迷" -#: ../../mod/contacts.php:641 +#: ../../mod/contacts.php:649 msgid "you are a fan of" msgstr "你喜欢" -#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "编熟人" -#: ../../mod/contacts.php:684 +#: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "搜索您的熟人" -#: ../../mod/contacts.php:691 ../../mod/settings.php:126 -#: ../../mod/settings.php:627 +#: ../../mod/contacts.php:699 ../../mod/settings.php:131 +#: ../../mod/settings.php:634 msgid "Update" msgstr "更新" -#: ../../mod/settings.php:28 ../../mod/photos.php:79 +#: ../../mod/settings.php:28 ../../mod/photos.php:80 msgid "everybody" msgstr "每人" -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "帐户配置" - #: ../../mod/settings.php:40 msgid "Additional features" msgstr "附加的特点" -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "表示设置" +#: ../../mod/settings.php:45 +msgid "Display" +msgstr "显示" -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "插销设置" +#: ../../mod/settings.php:51 ../../mod/settings.php:774 +msgid "Social Networks" +msgstr "社会化网络" -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "插件设置" +#: ../../mod/settings.php:61 ../../include/nav.php:167 +msgid "Delegations" +msgstr "代表" -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 +#: ../../mod/settings.php:66 msgid "Connected apps" msgstr "连接着应用" -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +#: ../../mod/settings.php:71 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "出口私人信息" -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 +#: ../../mod/settings.php:76 msgid "Remove account" msgstr "删除账户" -#: ../../mod/settings.php:123 +#: ../../mod/settings.php:128 msgid "Missing some important data!" msgstr "有的重要信息失踪的!" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:237 msgid "Failed to connect with email account using the settings provided." msgstr "不能连接电子邮件账户用输入的设置。" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:242 msgid "Email settings updated." msgstr "电子邮件设置更新了" -#: ../../mod/settings.php:252 +#: ../../mod/settings.php:257 msgid "Features updated" msgstr "特点更新了" -#: ../../mod/settings.php:311 +#: ../../mod/settings.php:318 msgid "Relocate message has been send to your contacts" msgstr "调动信息寄给您的熟人" -#: ../../mod/settings.php:325 +#: ../../mod/settings.php:332 msgid "Passwords do not match. Password unchanged." msgstr "密码们不相配。密码没未改变的。" -#: ../../mod/settings.php:330 +#: ../../mod/settings.php:337 msgid "Empty passwords are not allowed. Password unchanged." msgstr "空的密码禁止。密码没未改变的。" -#: ../../mod/settings.php:338 +#: ../../mod/settings.php:345 msgid "Wrong password." msgstr "密码不正确。" -#: ../../mod/settings.php:349 +#: ../../mod/settings.php:356 msgid "Password changed." msgstr "密码变化了。" -#: ../../mod/settings.php:351 +#: ../../mod/settings.php:358 msgid "Password update failed. Please try again." msgstr "密码更新失败了。请再试。" -#: ../../mod/settings.php:416 +#: ../../mod/settings.php:423 msgid " Please use a shorter name." msgstr "请用短一点个名。" -#: ../../mod/settings.php:418 +#: ../../mod/settings.php:425 msgid " Name too short." msgstr "名字太短。" -#: ../../mod/settings.php:427 +#: ../../mod/settings.php:434 msgid "Wrong Password" msgstr "密码不正确" -#: ../../mod/settings.php:432 +#: ../../mod/settings.php:439 msgid " Not valid email." msgstr " 电子邮件地址无效." -#: ../../mod/settings.php:438 +#: ../../mod/settings.php:445 msgid " Cannot change to that email." msgstr "不能变化到这个邮件地址。" -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:500 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "私人评坛没有隐私批准。默认隐私组用者。" -#: ../../mod/settings.php:497 +#: ../../mod/settings.php:504 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "私人评坛没有隐私批准或默认隐私组。" -#: ../../mod/settings.php:527 +#: ../../mod/settings.php:534 msgid "Settings updated." msgstr "设置跟新了" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:669 msgid "Add application" msgstr "加入应用" -#: ../../mod/settings.php:604 ../../mod/settings.php:630 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Key" msgstr "钥匙(Consumer Key)" -#: ../../mod/settings.php:605 ../../mod/settings.php:631 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Secret" msgstr "密码(Consumer Secret)" -#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Redirect" msgstr "重定向" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Icon url" msgstr "图符URL" -#: ../../mod/settings.php:618 +#: ../../mod/settings.php:625 msgid "You can't edit this application." msgstr "您不能编辑这个应用。" -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:668 msgid "Connected Apps" msgstr "连接着应用" -#: ../../mod/settings.php:665 +#: ../../mod/settings.php:672 msgid "Client key starts with" msgstr "客户钥匙头字是" -#: ../../mod/settings.php:666 +#: ../../mod/settings.php:673 msgid "No name" msgstr "无名" -#: ../../mod/settings.php:667 +#: ../../mod/settings.php:674 msgid "Remove authorization" msgstr "撤消权能" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:686 msgid "No Plugin settings configured" msgstr "没插件设置配置了" -#: ../../mod/settings.php:687 +#: ../../mod/settings.php:694 msgid "Plugin Settings" msgstr "插件设置" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "Off" msgstr "关" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "On" msgstr "开" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:716 msgid "Additional Features" msgstr "附加的特点" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "包括的支持为%s连通性是%s" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "enabled" msgstr "能够做的" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "disabled" msgstr "使不能用" -#: ../../mod/settings.php:723 +#: ../../mod/settings.php:731 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:755 +#: ../../mod/settings.php:767 msgid "Email access is disabled on this site." msgstr "这个网站没有邮件使用权" -#: ../../mod/settings.php:762 -msgid "Connector Settings" -msgstr "连接器设置" - -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:779 msgid "Email/Mailbox Setup" msgstr "邮件收件箱设置" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:780 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。" -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:781 msgid "Last successful email check:" msgstr "上个成功收件箱检查:" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:783 msgid "IMAP server name:" msgstr "IMAP服务器名字:" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:784 msgid "IMAP port:" msgstr "IMAP服务器端口:" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:785 msgid "Security:" msgstr "安全:" -#: ../../mod/settings.php:773 ../../mod/settings.php:778 +#: ../../mod/settings.php:785 ../../mod/settings.php:790 msgid "None" msgstr "没有" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:786 msgid "Email login name:" msgstr "邮件登记名:" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:787 msgid "Email password:" msgstr "邮件密码:" -#: ../../mod/settings.php:776 +#: ../../mod/settings.php:788 msgid "Reply-to address:" msgstr "回答地址:" -#: ../../mod/settings.php:777 +#: ../../mod/settings.php:789 msgid "Send public posts to all email contacts:" msgstr "发公开的文章给所有的邮件熟人:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Action after import:" msgstr "进口后行动:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Mark as seen" msgstr "标注看过" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Move to folder" msgstr "搬到文件夹" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:791 msgid "Move to folder:" msgstr "搬到文件夹:" -#: ../../mod/settings.php:854 +#: ../../mod/settings.php:869 msgid "Display Settings" msgstr "表示设置" -#: ../../mod/settings.php:860 ../../mod/settings.php:873 +#: ../../mod/settings.php:875 ../../mod/settings.php:889 msgid "Display Theme:" msgstr "显示主题:" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:876 msgid "Mobile Theme:" msgstr "手机主题:" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Update browser every xx seconds" msgstr "更新游览器每XX秒" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Minimum of 10 seconds, no maximum" msgstr "最小10秒,没有上限" -#: ../../mod/settings.php:863 +#: ../../mod/settings.php:878 msgid "Number of items to display per page:" msgstr "每页表示多少项目:" -#: ../../mod/settings.php:863 ../../mod/settings.php:864 +#: ../../mod/settings.php:878 ../../mod/settings.php:879 msgid "Maximum of 100 items" msgstr "最多100项目" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:879 msgid "Number of items to display per page when viewed from mobile device:" msgstr "用手机看一页展示多少项目:" -#: ../../mod/settings.php:865 +#: ../../mod/settings.php:880 msgid "Don't show emoticons" msgstr "别表示请表符号" -#: ../../mod/settings.php:866 +#: ../../mod/settings.php:881 +msgid "Don't show notices" +msgstr "别表提示" + +#: ../../mod/settings.php:882 msgid "Infinite scroll" msgstr "无限的滚动" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:959 msgid "Normal Account Page" msgstr "平常账户页" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:960 msgid "This account is a normal personal profile" msgstr "这个帐户是正常私人简介" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:963 msgid "Soapbox Page" msgstr "演讲台页" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:964 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "自动批准所有联络/友谊要求当只看的迷" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:967 msgid "Community Forum/Celebrity Account" msgstr "社会评坛/名人账户" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:968 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "自动批准所有联络/友谊要求当看写的迷" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:971 msgid "Automatic Friend Page" msgstr "自动朋友页" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:972 msgid "Automatically approve all connection/friend requests as friends" msgstr "自动批准所有联络/友谊要求当朋友" -#: ../../mod/settings.php:958 +#: ../../mod/settings.php:975 msgid "Private Forum [Experimental]" msgstr "隐私评坛[实验性的 ]" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:976 msgid "Private forum - approved members only" msgstr "隐私评坛-只批准的成员" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(可选的)许这个OpenID这个账户登记。" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:998 msgid "Publish your default profile in your local site directory?" msgstr "出版您默认简介在您当地的网站目录?" -#: ../../mod/settings.php:987 +#: ../../mod/settings.php:1004 msgid "Publish your default profile in the global social directory?" msgstr "出版您默认简介在综合社会目录?" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1012 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "藏起来 发现您的熟人/朋友单不让这个简介看着看?\n " -#: ../../mod/settings.php:999 +#: ../../mod/settings.php:1016 msgid "Hide your profile details from unknown viewers?" msgstr "使简介信息给陌生的看着看不了?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1021 msgid "Allow friends to post to your profile page?" msgstr "允许朋友们贴文章在您的简介页?" -#: ../../mod/settings.php:1010 +#: ../../mod/settings.php:1027 msgid "Allow friends to tag your posts?" msgstr "允许朋友们标签您的文章?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1033 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "允许我们建议您潜力朋友给新成员?" -#: ../../mod/settings.php:1022 +#: ../../mod/settings.php:1039 msgid "Permit unknown people to send you private mail?" msgstr "允许生人寄给您私人邮件?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1047 msgid "Profile is not published." msgstr "简介是没出版" -#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 msgid "or" msgstr "或者" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1055 msgid "Your Identity Address is" msgstr "您的同一个人地址是" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "Automatically expire posts after this many days:" msgstr "自动地过期文章这数天:" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "如果空的,文章不会过期。过期的文章被删除" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1067 msgid "Advanced expiration settings" msgstr "先进的过期设置" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1068 msgid "Advanced Expiration" msgstr "先进的过期" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1069 msgid "Expire posts:" msgstr "把文章过期:" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1070 msgid "Expire personal notes:" msgstr "把私人便条过期:" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1071 msgid "Expire starred posts:" msgstr "把星的文章过期:" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1072 msgid "Expire photos:" msgstr "把照片过期:" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1073 msgid "Only expire posts by others:" msgstr "只别人的文章过期:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1099 msgid "Account Settings" msgstr "帐户设置" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1107 msgid "Password Settings" msgstr "密码设置" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1108 msgid "New Password:" msgstr "新密码:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Confirm:" msgstr "确认:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Leave password fields blank unless changing" msgstr "非变化留空密码栏" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1110 msgid "Current Password:" msgstr "目前密码:" -#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 msgid "Your current password to confirm the changes" msgstr "您目前密码为确认变化" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1111 msgid "Password:" msgstr "密码:" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1115 msgid "Basic Settings" msgstr "基础设置" -#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "全名:" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1117 msgid "Email Address:" msgstr "电子邮件地址:" -#: ../../mod/settings.php:1101 +#: ../../mod/settings.php:1118 msgid "Your Timezone:" msgstr "您的时区:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1119 msgid "Default Post Location:" msgstr "默认文章位置:" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1120 msgid "Use Browser Location:" msgstr "用游览器位置:" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1123 msgid "Security and Privacy Settings" msgstr "安全和隐私设置" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1125 msgid "Maximum Friend Requests/Day:" msgstr "最多友谊要求个天:" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 +#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 msgid "(to prevent spam abuse)" msgstr "(为防止垃圾邮件滥用)" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1126 msgid "Default Post Permissions" msgstr "默认文章准许" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1127 msgid "(click to open/close)" msgstr "(点击为打开/关闭)" -#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 +#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "给组表示" -#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 +#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "给熟人表示" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1138 msgid "Default Private Post" msgstr "默认私人文章" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1139 msgid "Default Public Post" msgstr "默认公开文章" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1143 msgid "Default Permissions for New Posts" msgstr "默认权利为新文章" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1155 msgid "Maximum private messages per day from unknown people:" msgstr "一天最多从生人私人邮件:" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1158 msgid "Notification Settings" msgstr "消息设置" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1159 msgid "By default post a status message when:" msgstr "默认地发现状通知如果:" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1160 msgid "accepting a friend request" msgstr "接受朋友邀请" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1161 msgid "joining a forum/community" msgstr "加入评坛/社会" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1162 msgid "making an interesting profile change" msgstr "把简介有意思地变修改" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1163 msgid "Send a notification email when:" msgstr "发一个消息要是:" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1164 msgid "You receive an introduction" msgstr "你受到一个介绍" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1165 msgid "Your introductions are confirmed" msgstr "你的介绍确认了" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1166 msgid "Someone writes on your profile wall" msgstr "某人写在你的简历墙" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1167 msgid "Someone writes a followup comment" msgstr "某人写一个后续的评论" -#: ../../mod/settings.php:1151 +#: ../../mod/settings.php:1168 msgid "You receive a private message" msgstr "你受到一个私消息" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1169 msgid "You receive a friend suggestion" msgstr "你受到一个朋友建议" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1170 msgid "You are tagged in a post" msgstr "你被在新闻标签" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1171 msgid "You are poked/prodded/etc. in a post" msgstr "您在文章被戳" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1174 msgid "Advanced Account/Page Type Settings" msgstr "专家账户/页种设置" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1175 msgid "Change the behaviour of this account for special situations" msgstr "把这个账户特别情况的时候行动变化" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1178 msgid "Relocate" msgstr "调动" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1179 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "如果您调动这个简介从别的服务器但有的熟人没收到您的更新,尝试按这个钮。" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1180 msgid "Resend relocate message to contacts" msgstr "把调动信息寄给熟人" @@ -4185,265 +4204,265 @@ msgstr "简介不可用为复制。" msgid "Profile Name is required." msgstr "必要简介名" -#: ../../mod/profiles.php:317 +#: ../../mod/profiles.php:321 msgid "Marital Status" msgstr "婚姻状况 " -#: ../../mod/profiles.php:321 +#: ../../mod/profiles.php:325 msgid "Romantic Partner" msgstr "情人" -#: ../../mod/profiles.php:325 +#: ../../mod/profiles.php:329 msgid "Likes" msgstr "喜欢" -#: ../../mod/profiles.php:329 +#: ../../mod/profiles.php:333 msgid "Dislikes" msgstr "不喜欢" -#: ../../mod/profiles.php:333 +#: ../../mod/profiles.php:337 msgid "Work/Employment" msgstr "工作" -#: ../../mod/profiles.php:336 +#: ../../mod/profiles.php:340 msgid "Religion" msgstr "宗教" -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:344 msgid "Political Views" msgstr "政治观念" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:348 msgid "Gender" msgstr "性别" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:352 msgid "Sexual Preference" msgstr "性取向" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:356 msgid "Homepage" msgstr "主页" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:360 msgid "Interests" msgstr "兴趣" -#: ../../mod/profiles.php:360 +#: ../../mod/profiles.php:364 msgid "Address" msgstr "地址" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:371 msgid "Location" msgstr "位置" -#: ../../mod/profiles.php:450 +#: ../../mod/profiles.php:454 msgid "Profile updated." msgstr "简介更新了。" -#: ../../mod/profiles.php:521 +#: ../../mod/profiles.php:525 msgid " and " msgstr "和" -#: ../../mod/profiles.php:529 +#: ../../mod/profiles.php:533 msgid "public profile" msgstr "公开简介" -#: ../../mod/profiles.php:532 +#: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s把%2$s变化成“%3$s”" -#: ../../mod/profiles.php:533 +#: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - 看 %1$s的%2$s" -#: ../../mod/profiles.php:536 +#: ../../mod/profiles.php:540 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s有更新的%2$s,修改%3$s." -#: ../../mod/profiles.php:609 +#: ../../mod/profiles.php:613 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?" -#: ../../mod/profiles.php:629 +#: ../../mod/profiles.php:633 msgid "Edit Profile Details" msgstr "剪辑简介消息" -#: ../../mod/profiles.php:631 +#: ../../mod/profiles.php:635 msgid "Change Profile Photo" msgstr "改变简介照片" -#: ../../mod/profiles.php:632 +#: ../../mod/profiles.php:636 msgid "View this profile" msgstr "看这个简介" -#: ../../mod/profiles.php:633 +#: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" msgstr "造成新的简介用这些设置" -#: ../../mod/profiles.php:634 +#: ../../mod/profiles.php:638 msgid "Clone this profile" msgstr "复制这个简介" -#: ../../mod/profiles.php:635 +#: ../../mod/profiles.php:639 msgid "Delete this profile" msgstr "删除这个简介" -#: ../../mod/profiles.php:636 +#: ../../mod/profiles.php:640 msgid "Profile Name:" msgstr "简介名:" -#: ../../mod/profiles.php:637 +#: ../../mod/profiles.php:641 msgid "Your Full Name:" msgstr "你的全名:" -#: ../../mod/profiles.php:638 +#: ../../mod/profiles.php:642 msgid "Title/Description:" msgstr "标题/描述:" -#: ../../mod/profiles.php:639 +#: ../../mod/profiles.php:643 msgid "Your Gender:" msgstr "你的性:" -#: ../../mod/profiles.php:640 +#: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" msgstr "生日(%s):" -#: ../../mod/profiles.php:641 +#: ../../mod/profiles.php:645 msgid "Street Address:" msgstr "地址:" -#: ../../mod/profiles.php:642 +#: ../../mod/profiles.php:646 msgid "Locality/City:" msgstr "现场/城市:" -#: ../../mod/profiles.php:643 +#: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" msgstr "邮政编码:" -#: ../../mod/profiles.php:644 +#: ../../mod/profiles.php:648 msgid "Country:" msgstr "国家:" -#: ../../mod/profiles.php:645 +#: ../../mod/profiles.php:649 msgid "Region/State:" msgstr "区域/省" -#: ../../mod/profiles.php:646 +#: ../../mod/profiles.php:650 msgid " Marital Status:" msgstr "婚姻状况:" -#: ../../mod/profiles.php:647 +#: ../../mod/profiles.php:651 msgid "Who: (if applicable)" msgstr "谁:(要是使用)" -#: ../../mod/profiles.php:648 +#: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "比如:limou,李某,limou@example。com" -#: ../../mod/profiles.php:649 +#: ../../mod/profiles.php:653 msgid "Since [date]:" msgstr "追溯[日期]:" -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "性取向" -#: ../../mod/profiles.php:651 +#: ../../mod/profiles.php:655 msgid "Homepage URL:" msgstr "主页URL:" -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "故乡:" -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "政治观念:" -#: ../../mod/profiles.php:654 +#: ../../mod/profiles.php:658 msgid "Religious Views:" msgstr " 宗教信仰 :" -#: ../../mod/profiles.php:655 +#: ../../mod/profiles.php:659 msgid "Public Keywords:" msgstr "公开关键字 :" -#: ../../mod/profiles.php:656 +#: ../../mod/profiles.php:660 msgid "Private Keywords:" msgstr "私人关键字" -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "喜欢:" -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "不喜欢:" -#: ../../mod/profiles.php:659 +#: ../../mod/profiles.php:663 msgid "Example: fishing photography software" msgstr "例如:钓鱼 照片 软件" -#: ../../mod/profiles.php:660 +#: ../../mod/profiles.php:664 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(用于建议可能的朋友们,会被别人看)" -#: ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "(Used for searching profiles, never shown to others)" msgstr "(用于搜索简介,没有给别人看)" -#: ../../mod/profiles.php:662 +#: ../../mod/profiles.php:666 msgid "Tell us about yourself..." msgstr "给我们自我介绍..." -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:667 msgid "Hobbies/Interests" msgstr "爱好/兴趣" -#: ../../mod/profiles.php:664 +#: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" msgstr "熟人信息和社会化网络" -#: ../../mod/profiles.php:665 +#: ../../mod/profiles.php:669 msgid "Musical interests" msgstr "音乐兴趣" -#: ../../mod/profiles.php:666 +#: ../../mod/profiles.php:670 msgid "Books, literature" msgstr "书,文学" -#: ../../mod/profiles.php:667 +#: ../../mod/profiles.php:671 msgid "Television" msgstr "电视" -#: ../../mod/profiles.php:668 +#: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" msgstr "电影/跳舞/文化/娱乐" -#: ../../mod/profiles.php:669 +#: ../../mod/profiles.php:673 msgid "Love/romance" msgstr "爱情/浪漫" -#: ../../mod/profiles.php:670 +#: ../../mod/profiles.php:674 msgid "Work/employment" msgstr "工作" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:675 msgid "School/education" msgstr "学院/教育" -#: ../../mod/profiles.php:676 +#: ../../mod/profiles.php:680 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" -#: ../../mod/profiles.php:725 +#: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "编辑/管理简介" @@ -4559,7 +4578,7 @@ msgstr "没别系统通知。" msgid "System Notifications" msgstr "系统通知" -#: ../../mod/message.php:9 ../../include/nav.php:159 +#: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" msgstr "新的消息" @@ -4568,7 +4587,7 @@ msgid "Unable to locate contact information." msgstr "找不到熟人信息。" #: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Messages" msgstr "消息" @@ -4635,7 +4654,7 @@ msgstr "没可用的安全交通。您可能会在发送人的 msgid "Send Reply" msgstr "发回答" -#: ../../mod/like.php:170 ../../include/conversation.php:140 +#: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s不喜欢%2$s的%3$s" @@ -4645,7 +4664,7 @@ msgid "Post successful." msgstr "评论发表了。" #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 +#: ../../include/bb2diaspora.php:133 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -4678,8 +4697,8 @@ msgstr "装换的当地时间:%s" msgid "Please select your timezone:" msgstr "请选择你的时区:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 msgid "Save to Folder:" msgstr "保存再文件夹:" @@ -4707,7 +4726,7 @@ msgstr "所有熟人(跟安全地简介使用权)" msgid "No contacts." msgstr "没有熟人。" -#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 msgid "View Contacts" msgstr "看熟人" @@ -4719,201 +4738,210 @@ msgstr "搜索人物" msgid "No matches" msgstr "没有结果" -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 msgid "Upload New Photos" msgstr "上传新照片" -#: ../../mod/photos.php:143 +#: ../../mod/photos.php:144 msgid "Contact information unavailable" msgstr "熟人信息不可用" -#: ../../mod/photos.php:164 +#: ../../mod/photos.php:165 msgid "Album not found." msgstr "取回不了相册." -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" msgstr "删除相册" -#: ../../mod/photos.php:197 +#: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" msgstr "您真的想删除这个相册和所有里面的照相吗?" -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" msgstr "删除照片" -#: ../../mod/photos.php:285 +#: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" msgstr "您真的想删除这个照相吗?" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s被%3$s标签在%2$s" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 msgid "a photo" msgstr "一张照片" -#: ../../mod/photos.php:761 +#: ../../mod/photos.php:765 msgid "Image exceeds size limit of " msgstr "图片超出最大尺寸" -#: ../../mod/photos.php:769 +#: ../../mod/photos.php:773 msgid "Image file is empty." msgstr "图片文件空的。" -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 +#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." msgstr "处理不了图像." -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 +#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." msgstr "图像上载失败了." -#: ../../mod/photos.php:924 +#: ../../mod/photos.php:928 msgid "No photos selected" msgstr "没有照片挑选了" -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." msgstr "这个项目使用权限的。" -#: ../../mod/photos.php:1088 +#: ../../mod/photos.php:1092 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。" -#: ../../mod/photos.php:1123 +#: ../../mod/photos.php:1127 msgid "Upload Photos" msgstr "上传照片" -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " msgstr "新册名:" -#: ../../mod/photos.php:1128 +#: ../../mod/photos.php:1132 msgid "or existing album name: " msgstr "或现有册名" -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" msgstr "别显示现状报到关于这个上传" -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" msgstr "权利" -#: ../../mod/photos.php:1142 +#: ../../mod/photos.php:1146 msgid "Private Photo" msgstr "私人照相" -#: ../../mod/photos.php:1143 +#: ../../mod/photos.php:1147 msgid "Public Photo" msgstr "公开照相" -#: ../../mod/photos.php:1210 +#: ../../mod/photos.php:1214 msgid "Edit Album" msgstr "编照片册" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "Show Newest First" msgstr "先表示最新的" -#: ../../mod/photos.php:1218 +#: ../../mod/photos.php:1222 msgid "Show Oldest First" msgstr "先表示最老的" -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 msgid "View Photo" msgstr "看照片" -#: ../../mod/photos.php:1286 +#: ../../mod/photos.php:1290 msgid "Permission denied. Access to this item may be restricted." msgstr "无权利。用这个项目可能受限制。" -#: ../../mod/photos.php:1288 +#: ../../mod/photos.php:1292 msgid "Photo not available" msgstr "照片不可获得的 " -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "View photo" msgstr "看照片" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "Edit photo" msgstr "编辑照片" -#: ../../mod/photos.php:1345 +#: ../../mod/photos.php:1349 msgid "Use as profile photo" msgstr "用为资料图" -#: ../../mod/photos.php:1370 +#: ../../mod/photos.php:1374 msgid "View Full Size" msgstr "看全尺寸" -#: ../../mod/photos.php:1444 +#: ../../mod/photos.php:1453 msgid "Tags: " msgstr "标签:" -#: ../../mod/photos.php:1447 +#: ../../mod/photos.php:1456 msgid "[Remove any tag]" msgstr "[删除任何标签]" -#: ../../mod/photos.php:1487 +#: ../../mod/photos.php:1496 msgid "Rotate CW (right)" msgstr "顺时针地转动(左)" -#: ../../mod/photos.php:1488 +#: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" msgstr "反顺时针地转动(右)" -#: ../../mod/photos.php:1490 +#: ../../mod/photos.php:1499 msgid "New album name" msgstr "新册名" -#: ../../mod/photos.php:1493 +#: ../../mod/photos.php:1502 msgid "Caption" msgstr "字幕" -#: ../../mod/photos.php:1495 +#: ../../mod/photos.php:1504 msgid "Add a Tag" msgstr "加标签" -#: ../../mod/photos.php:1499 +#: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" -#: ../../mod/photos.php:1508 +#: ../../mod/photos.php:1517 msgid "Private photo" msgstr "私人照相" -#: ../../mod/photos.php:1509 +#: ../../mod/photos.php:1518 msgid "Public photo" msgstr "公开照相" -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 msgid "Share" msgstr "分享" -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 +#: ../../mod/photos.php:1799 ../../mod/videos.php:308 msgid "View Album" msgstr "看照片册" -#: ../../mod/photos.php:1793 +#: ../../mod/photos.php:1808 msgid "Recent Photos" msgstr "最近的照片" -#: ../../mod/wall_attach.php:69 +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "不好意思,可能你上传的是PHP设置允许的大" + +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "或者,你是不是上传空的文件?" + +#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "文件数目超过最多%d" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "文件上传失败。" @@ -4921,7 +4949,7 @@ msgstr "文件上传失败。" msgid "No videos selected" msgstr "没选择的视频" -#: ../../mod/videos.php:301 ../../include/text.php:1383 +#: ../../mod/videos.php:301 ../../include/text.php:1387 msgid "View Video" msgstr "看视频" @@ -4958,21 +4986,21 @@ msgstr "使这个文章私人" msgid "%1$s is following %2$s's %3$s" msgstr "%1$s关注着%2$s的%3$s" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "Export account" msgstr "出口账户" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "Export all" msgstr "出口一切" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " @@ -4993,7 +5021,7 @@ msgid "Image exceeds size limit of %d" msgstr "图像超标最大极限尺寸 %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "墙照片" @@ -5094,7 +5122,7 @@ msgstr "去除项目标签" msgid "Select a tag to remove: " msgstr "选择标签去除" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" msgstr "移走" @@ -5110,7 +5138,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "编项目" -#: ../../mod/events.php:335 ../../include/text.php:1615 +#: ../../mod/events.php:335 ../../include/text.php:1620 +#: ../../include/text.php:1631 msgid "link to source" msgstr "链接到来源" @@ -5171,34 +5200,34 @@ msgstr "分享这个项目" msgid "No potential page delegates located." msgstr "找不到可能代表页人。" -#: ../../mod/delegate.php:121 ../../include/nav.php:165 +#: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" msgstr "页代表管理" -#: ../../mod/delegate.php:123 +#: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。" -#: ../../mod/delegate.php:124 +#: ../../mod/delegate.php:127 msgid "Existing Page Managers" msgstr "目前页管理员" -#: ../../mod/delegate.php:126 +#: ../../mod/delegate.php:129 msgid "Existing Page Delegates" msgstr "目前页代表" -#: ../../mod/delegate.php:128 +#: ../../mod/delegate.php:131 msgid "Potential Delegates" msgstr "潜力的代表" -#: ../../mod/delegate.php:131 +#: ../../mod/delegate.php:134 msgid "Add" msgstr "加" -#: ../../mod/delegate.php:132 +#: ../../mod/delegate.php:135 msgid "No entries." msgstr "没有项目。" @@ -5241,37 +5270,37 @@ msgstr "建议朋友们" msgid "Suggest a friend for %s" msgstr "建议朋友给%s" -#: ../../mod/item.php:108 +#: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "找不到当初的新闻" -#: ../../mod/item.php:317 +#: ../../mod/item.php:319 msgid "Empty post discarded." msgstr "空心的新闻丢弃了" -#: ../../mod/item.php:884 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "系统错误。x" -#: ../../mod/item.php:909 +#: ../../mod/item.php:917 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" -#: ../../mod/item.php:911 +#: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" msgstr "你可以网上拜访他在%s" -#: ../../mod/item.php:912 +#: ../../mod/item.php:920 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" -#: ../../mod/item.php:916 +#: ../../mod/item.php:924 #, php-format msgid "%s posted an update." msgstr "%s贴上一个新闻。" @@ -5348,11 +5377,11 @@ msgstr "丢弃" msgid "System" msgstr "系统" -#: ../../mod/notifications.php:83 ../../include/nav.php:140 +#: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" msgstr "网络" -#: ../../mod/notifications.php:98 ../../include/nav.php:149 +#: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" msgstr "介绍" @@ -5425,7 +5454,7 @@ msgstr "新关注者:" msgid "No introductions." msgstr "没有介绍。" -#: ../../mod/notifications.php:220 ../../include/nav.php:150 +#: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" msgstr "通知" @@ -5647,7 +5676,7 @@ msgstr "网络" msgid "All Networks" msgstr "所有网络" -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" msgstr "保存的文件夹" @@ -5671,33 +5700,37 @@ msgstr "这个行动超过您订阅的限制。" msgid "This action is not available under your subscription plan." msgstr "这个行动在您的订阅不可用的。" -#: ../../include/api.php:255 ../../include/api.php:266 -#: ../../include/api.php:356 +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 msgid "User not found." msgstr "找不到用户" -#: ../../include/api.php:1024 +#: ../../include/api.php:1123 msgid "There is no status with this id." msgstr "没有什么状态跟这个ID" -#: ../../include/network.php:883 +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "没有这个ID的对话" + +#: ../../include/network.php:886 msgid "view full size" msgstr "看全尺寸" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "开始:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "结束:" -#: ../../include/notifier.php:774 ../../include/delivery.php:457 +#: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "沒有题目" #: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 +#: ../../include/delivery.php:467 msgid "noreply" msgstr "noreply" @@ -5789,7 +5822,7 @@ msgstr "朋友" msgid "%1$s poked %2$s" msgstr "%1$s把%2$s戳" -#: ../../include/conversation.php:211 ../../include/text.php:986 +#: ../../include/conversation.php:211 ../../include/text.php:990 msgid "poked" msgstr "戳了" @@ -5802,129 +5835,129 @@ msgstr "文章/项目" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s标注%2$s的%3$s为偏爱" -#: ../../include/conversation.php:767 +#: ../../include/conversation.php:770 msgid "remove" msgstr "删除" -#: ../../include/conversation.php:771 +#: ../../include/conversation.php:774 msgid "Delete Selected Items" msgstr "删除选的项目" -#: ../../include/conversation.php:870 +#: ../../include/conversation.php:873 msgid "Follow Thread" msgstr "关注线绳" -#: ../../include/conversation.php:871 ../../include/Contact.php:229 +#: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" msgstr "看现状" -#: ../../include/conversation.php:872 ../../include/Contact.php:230 +#: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" msgstr "看简介" -#: ../../include/conversation.php:873 ../../include/Contact.php:231 +#: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" msgstr "看照片" -#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" msgstr "网络文章" -#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "编辑熟人" -#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" msgstr "法私人的新闻" -#: ../../include/conversation.php:877 ../../include/Contact.php:228 +#: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" msgstr "戳" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s likes this." msgstr "%s喜欢这个." -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." msgstr "%s没有喜欢这个." -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" msgstr "%2$d人们喜欢这个" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" msgstr "%2$d人们不喜欢这个" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:964 msgid "and" msgstr "和" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" msgstr ",和%d别人" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s like this." msgstr "%s喜欢这个" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." msgstr "%s不喜欢这个" -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" msgstr "大家可见的" -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" msgstr "请输入视频连接/URL:" -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" msgstr "请输入音响连接/URL:" -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" msgstr "标签:" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" msgstr "你在哪里?" -#: ../../include/conversation.php:1003 +#: ../../include/conversation.php:1006 msgid "Delete item(s)?" msgstr "把项目删除吗?" -#: ../../include/conversation.php:1045 +#: ../../include/conversation.php:1048 msgid "Post to Email" msgstr "电邮发布" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1104 msgid "permissions" msgstr "权利" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:1128 msgid "Post to Groups" msgstr "发到组" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:1129 msgid "Post to Contacts" msgstr "发到熟人" -#: ../../include/conversation.php:1127 +#: ../../include/conversation.php:1130 msgid "Private post" msgstr "私人文章" @@ -5967,261 +6000,261 @@ msgstr[0] "%d熟人没进口了" msgid "Done. You can now login with your username and password" msgstr "完了。您现在会用您用户名和密码登录" -#: ../../include/text.php:300 +#: ../../include/text.php:304 msgid "newer" msgstr "更新" -#: ../../include/text.php:302 +#: ../../include/text.php:306 msgid "older" msgstr "更旧" -#: ../../include/text.php:307 +#: ../../include/text.php:311 msgid "prev" msgstr "上个" -#: ../../include/text.php:309 +#: ../../include/text.php:313 msgid "first" msgstr "首先" -#: ../../include/text.php:341 +#: ../../include/text.php:345 msgid "last" msgstr "最后" -#: ../../include/text.php:344 +#: ../../include/text.php:348 msgid "next" msgstr "下个" -#: ../../include/text.php:836 +#: ../../include/text.php:840 msgid "No contacts" msgstr "没有熟人" -#: ../../include/text.php:845 +#: ../../include/text.php:849 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d熟人" -#: ../../include/text.php:986 +#: ../../include/text.php:990 msgid "poke" msgstr "戳" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "ping" msgstr "砰" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "pinged" msgstr "砰了" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prod" msgstr "柔戳" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prodded" msgstr "柔戳了" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slap" msgstr "掌击" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slapped" msgstr "掌击了" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "finger" msgstr "指" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "fingered" msgstr "指了" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuff" msgstr "窝脖儿" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuffed" msgstr "窝脖儿了" -#: ../../include/text.php:1005 +#: ../../include/text.php:1009 msgid "happy" msgstr "开心" -#: ../../include/text.php:1006 +#: ../../include/text.php:1010 msgid "sad" msgstr "伤心" -#: ../../include/text.php:1007 +#: ../../include/text.php:1011 msgid "mellow" msgstr "轻松" -#: ../../include/text.php:1008 +#: ../../include/text.php:1012 msgid "tired" msgstr "累" -#: ../../include/text.php:1009 +#: ../../include/text.php:1013 msgid "perky" msgstr "机敏" -#: ../../include/text.php:1010 +#: ../../include/text.php:1014 msgid "angry" msgstr "生气" -#: ../../include/text.php:1011 +#: ../../include/text.php:1015 msgid "stupified" msgstr "麻醉" -#: ../../include/text.php:1012 +#: ../../include/text.php:1016 msgid "puzzled" msgstr "纳闷" -#: ../../include/text.php:1013 +#: ../../include/text.php:1017 msgid "interested" msgstr "有兴趣" -#: ../../include/text.php:1014 +#: ../../include/text.php:1018 msgid "bitter" msgstr "苦" -#: ../../include/text.php:1015 +#: ../../include/text.php:1019 msgid "cheerful" msgstr "快乐" -#: ../../include/text.php:1016 +#: ../../include/text.php:1020 msgid "alive" msgstr "活着" -#: ../../include/text.php:1017 +#: ../../include/text.php:1021 msgid "annoyed" msgstr "被烦恼" -#: ../../include/text.php:1018 +#: ../../include/text.php:1022 msgid "anxious" msgstr "心焦" -#: ../../include/text.php:1019 +#: ../../include/text.php:1023 msgid "cranky" msgstr "不稳" -#: ../../include/text.php:1020 +#: ../../include/text.php:1024 msgid "disturbed" msgstr "不安" -#: ../../include/text.php:1021 +#: ../../include/text.php:1025 msgid "frustrated" msgstr "被作梗" -#: ../../include/text.php:1022 +#: ../../include/text.php:1026 msgid "motivated" msgstr "士气高涨" -#: ../../include/text.php:1023 +#: ../../include/text.php:1027 msgid "relaxed" msgstr "轻松" -#: ../../include/text.php:1024 +#: ../../include/text.php:1028 msgid "surprised" msgstr "诧异" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Monday" msgstr "星期一" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Tuesday" msgstr "星期二" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Wednesday" msgstr "星期三" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Thursday" msgstr "星期四" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Friday" msgstr "星期五" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Saturday" msgstr "星期六" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Sunday" msgstr "星期天" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "January" msgstr "一月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "February" msgstr "二月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "March" msgstr "三月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "April" msgstr "四月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "May" msgstr "五月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "June" msgstr "六月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "July" msgstr "七月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "August" msgstr "八月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "September" msgstr "九月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "October" msgstr "十月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "November" msgstr "十一月" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "December" msgstr "十二月" -#: ../../include/text.php:1415 +#: ../../include/text.php:1419 msgid "bytes" msgstr "字节" -#: ../../include/text.php:1439 ../../include/text.php:1451 +#: ../../include/text.php:1443 ../../include/text.php:1455 msgid "Click to open/close" msgstr "点击为开关" -#: ../../include/text.php:1670 +#: ../../include/text.php:1688 msgid "Select an alternate language" msgstr "选择别的语言" -#: ../../include/text.php:1926 +#: ../../include/text.php:1944 msgid "activity" msgstr "活动" -#: ../../include/text.php:1929 +#: ../../include/text.php:1947 msgid "post" msgstr "文章" -#: ../../include/text.php:2084 +#: ../../include/text.php:2115 msgid "Item filed" msgstr "把项目归档了" @@ -6267,151 +6300,166 @@ msgstr "一条私人的消息" msgid "Please visit %s to view and/or reply to your private messages." msgstr "清去%s为了看或回答你私人的消息" -#: ../../include/enotify.php:90 +#: ../../include/enotify.php:91 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s于[url=%2$s]a %3$s[/url]评论了" -#: ../../include/enotify.php:97 +#: ../../include/enotify.php:98 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s于[url=%2$s]%3$s的%4$s[/url]评论了" -#: ../../include/enotify.php:105 +#: ../../include/enotify.php:106 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了" -#: ../../include/enotify.php:115 +#: ../../include/enotify.php:116 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论" -#: ../../include/enotify.php:116 +#: ../../include/enotify.php:117 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s对你有兴趣的项目/ 交谈发表意见" -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "清去%s为了看或回答交谈" -#: ../../include/enotify.php:126 +#: ../../include/enotify.php:127 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notify] %s贴在您的简介墙" -#: ../../include/enotify.php:128 +#: ../../include/enotify.php:129 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s放在您的简介墙在%2$s" -#: ../../include/enotify.php:130 +#: ../../include/enotify.php:131 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s放在[url=%2$s]您的墙[/url]" -#: ../../include/enotify.php:141 +#: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notify] %s标签您" -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s把您在%2$s标签" -#: ../../include/enotify.php:143 +#: ../../include/enotify.php:144 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s[url=%2$s]把您标签[/url]." #: ../../include/enotify.php:155 #, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s分享新的消息" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s分享新的消息在%2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]分享一个消息[/url]." + +#: ../../include/enotify.php:169 +#, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify]您被%1$s戳" -#: ../../include/enotify.php:156 +#: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" msgstr "您被%1$s戳在%2$s" -#: ../../include/enotify.php:157 +#: ../../include/enotify.php:171 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s[url=%2$s]把您戳[/url]。" -#: ../../include/enotify.php:172 +#: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notify] %s标前您的文章" -#: ../../include/enotify.php:173 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s把您的文章在%2$s标签" -#: ../../include/enotify.php:174 +#: ../../include/enotify.php:188 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s把[url=%2$s]您的文章[/url]标签" -#: ../../include/enotify.php:185 +#: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notify] 收到介绍" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:200 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "您从「%1$s」受到一个介绍在%2$s" -#: ../../include/enotify.php:187 +#: ../../include/enotify.php:201 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。" -#: ../../include/enotify.php:190 ../../include/enotify.php:208 +#: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" msgstr "你能看他的简介在%s" -#: ../../include/enotify.php:192 +#: ../../include/enotify.php:206 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "请批准或拒绝介绍在%s" -#: ../../include/enotify.php:199 +#: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notify] 收到朋友建议" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:214 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。" -#: ../../include/enotify.php:201 +#: ../../include/enotify.php:215 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "您从%3$s收到[url=%1$s]一个朋友建议[/url]为%2$s。" -#: ../../include/enotify.php:206 +#: ../../include/enotify.php:220 msgid "Name:" msgstr "名字:" -#: ../../include/enotify.php:207 +#: ../../include/enotify.php:221 msgid "Photo:" msgstr "照片:" -#: ../../include/enotify.php:210 +#: ../../include/enotify.php:224 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "请批准或拒绝建议在%s" -#: ../../include/Scrape.php:583 +#: ../../include/Scrape.php:584 msgid " on Last.fm" msgstr "在Last.fm" @@ -6549,71 +6597,79 @@ msgstr "名录" msgid "People directory" msgstr "人物名录" -#: ../../include/nav.php:140 +#: ../../include/nav.php:132 +msgid "Information" +msgstr "资料" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "资料关于这个Friendica服务器" + +#: ../../include/nav.php:142 msgid "Conversations from your friends" msgstr "从你朋友们的交谈" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Network Reset" msgstr "网络重设" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Load Network page with no filters" msgstr "表示网络页无滤器" -#: ../../include/nav.php:149 +#: ../../include/nav.php:151 msgid "Friend Requests" msgstr "友谊邀请" -#: ../../include/nav.php:151 +#: ../../include/nav.php:153 msgid "See all notifications" msgstr "看所有的通知" -#: ../../include/nav.php:152 +#: ../../include/nav.php:154 msgid "Mark all system notifications seen" msgstr "记号各系统通知看过的" -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Private mail" msgstr "私人的邮件" -#: ../../include/nav.php:157 +#: ../../include/nav.php:159 msgid "Inbox" msgstr "收件箱" -#: ../../include/nav.php:158 +#: ../../include/nav.php:160 msgid "Outbox" msgstr "发件箱" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage" msgstr "代用户" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage other pages" msgstr "管理别的页" -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "代表" - #: ../../include/nav.php:169 +msgid "Account settings" +msgstr "帐户配置" + +#: ../../include/nav.php:171 msgid "Manage/Edit Profiles" msgstr "管理/编辑简介" -#: ../../include/nav.php:171 +#: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" msgstr "管理/编朋友们和熟人们" -#: ../../include/nav.php:178 +#: ../../include/nav.php:180 msgid "Site setup and configuration" msgstr "网站开办和配置" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Navigation" msgstr "航行" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Site map" msgstr "网站地图" @@ -6682,23 +6738,27 @@ msgstr "工作" msgid "School/education:" msgstr "学院/教育" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 -#: ../../include/bbcode.php:621 +#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:918 msgid "Image/photo" msgstr "图像/照片" -#: ../../include/bbcode.php:285 +#: ../../include/bbcode.php:354 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s写了下面的文章" +"%s wrote the following post" +msgstr "%s写了下面的消息" -#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 +#: ../../include/bbcode.php:453 +msgid "" +msgstr "" + +#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 msgid "$1 wrote:" msgstr "$1写:" -#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 msgid "Encrypted content" msgstr "加密的内容" @@ -6770,6 +6830,14 @@ msgstr "pump.io" msgid "Twitter" msgstr "Twitter" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora连接" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "形形色色" @@ -6843,12 +6911,12 @@ msgstr "秒" msgid "%1$d %2$s ago" msgstr "%1$d %2$s以前" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/datetime.php:472 ../../include/items.php:1964 #, php-format msgid "%s's birthday" msgstr "%s的生日" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/datetime.php:473 ../../include/items.php:1965 #, php-format msgid "Happy Birthday %s" msgstr "生日快乐%s" @@ -6885,155 +6953,164 @@ msgstr "文章预演" msgid "Allow previewing posts and comments before publishing them" msgstr "允许文章和评论出版前预演" -#: ../../include/features.php:37 +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "自动提示论坛" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。" + +#: ../../include/features.php:38 msgid "Network Sidebar Widgets" msgstr "网络工具栏小窗口" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Search by Date" msgstr "按日期搜索" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Ability to select posts by date ranges" msgstr "能按时期范围选择文章" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Group Filter" msgstr "组滤器" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" msgstr "使光表示网络文章从选择的组小窗口" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Network Filter" msgstr "网络滤器" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" msgstr "使光表示网络文章从选择的网络小窗口" -#: ../../include/features.php:41 +#: ../../include/features.php:42 msgid "Save search terms for re-use" msgstr "保存搜索关键为再用" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Network Tabs" msgstr "网络分页" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Network Personal Tab" msgstr "网络私人分页" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "使表示光网络文章您参加了分页可用" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Network New Tab" msgstr "网络新分页" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "使表示光网络文章在12小时内分页可用" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Network Shared Links Tab" msgstr "网络分享链接分页" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" msgstr "使表示光网络文章包括链接分页可用" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Post/Comment Tools" msgstr "文章/评论工具" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Multiple Deletion" msgstr "多删除" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" msgstr "选择和删除多文章/评论一次" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit Sent Posts" msgstr "编辑发送的文章" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" msgstr "编辑或修改文章和评论发送后" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Tagging" msgstr "标签" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Ability to tag existing posts" msgstr "能把目前的文章标签" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Post Categories" msgstr "文章种类" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Add categories to your posts" msgstr "加入种类给您的文章" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Ability to file posts under folders" msgstr "能把文章归档在文件夹 " -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Dislike Posts" msgstr "不喜欢文章" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Ability to dislike posts/comments" msgstr "能不喜欢文章/评论" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Star Posts" msgstr "文章星" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" msgstr "能把优秀文章跟星标注" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" msgstr "分享通知从Diaspora网络" -#: ../../include/diaspora.php:2269 +#: ../../include/diaspora.php:2299 msgid "Attachments:" msgstr "附件:" -#: ../../include/acl_selectors.php:325 +#: ../../include/acl_selectors.php:326 msgid "Visible to everybody" msgstr "任何人可见的" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "A new person is sharing with you at " msgstr "一位新人给你分享在" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "You have a new follower at " msgstr "你有新的关注者在" -#: ../../include/items.php:4062 +#: ../../include/items.php:4216 msgid "Do you really want to delete this item?" msgstr "您真的想删除这个项目吗?" -#: ../../include/items.php:4285 +#: ../../include/items.php:4443 msgid "Archives" msgstr "档案" -#: ../../include/oembed.php:140 +#: ../../include/oembed.php:174 msgid "Embedded content" msgstr "嵌入内容" -#: ../../include/oembed.php:149 +#: ../../include/oembed.php:183 msgid "Embedding disabled" msgstr "嵌入不能用" @@ -7291,7 +7368,7 @@ msgstr "结束关注了" msgid "Drop Contact" msgstr "删除熟人" -#: ../../include/dba.php:44 +#: ../../include/dba.php:45 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "找不到DNS信息为数据库服务器「%s」" diff --git a/view/zh-cn/strings.php b/view/zh-cn/strings.php index 68c4cb9076..73deb5aba0 100644 --- a/view/zh-cn/strings.php +++ b/view/zh-cn/strings.php @@ -118,6 +118,7 @@ $a->strings["font size"] = "字体尺寸"; $a->strings["base font size for your interface"] = "您的界面基础字体尺寸"; $a->strings["Set resize level for images in posts and comments (width and height)"] = "选择图片在文章和评论的重设尺寸(宽和高)"; $a->strings["Set theme width"] = "选择主题宽"; +$a->strings["Set style"] = "选择款式"; $a->strings["Delete this item?"] = "删除这个项目?"; $a->strings["show fewer"] = "显示更小"; $a->strings["Update %s failed. See error logs."] = "更新%s美通过。看错误记录。"; @@ -415,6 +416,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "网站设置更新了。"; $a->strings["No special theme for mobile devices"] = "没专门适合手机的主题"; $a->strings["Never"] = "从未"; +$a->strings["At post arrival"] = "收件的时候"; $a->strings["Frequently"] = "时常"; $a->strings["Hourly"] = "每小时"; $a->strings["Twice daily"] = "每日两次"; @@ -495,7 +497,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "用PHP UTF8正则表达式"; $a->strings["Show Community Page"] = "表示社会页"; $a->strings["Display a Community page showing all recent public postings on this site."] = "表示社会页表明这网站所有最近公开的文章"; $a->strings["Enable OStatus support"] = "使OStatus支持可用"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供OStatus(StatusNet,GNU Social,等)兼容性。所有OStatus的交通是公开的,所以私事警告偶尔来表示。"; $a->strings["OStatus conversation completion interval"] = "OStatus对话完成间隔"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "喂器要多久查一次新文章在OStatus交流?这会花许多系统资源。"; $a->strings["Enable Diaspora support"] = "使Diaspora支持能够"; @@ -761,6 +763,9 @@ $a->strings["Currently ignored"] = "现在不理的"; $a->strings["Currently archived"] = "现在存档着"; $a->strings["Hide this contact from others"] = "隐藏这个熟人给别人"; $a->strings["Replies/likes to your public posts may still be visible"] = "回答/喜欢关您公开文章还可见的"; +$a->strings["Notification for new posts"] = "新消息提示"; +$a->strings["Send a notification of every new post of this contact"] = "发提示在所有这个联络的新消息"; +$a->strings["Fetch further information for feeds"] = "拿文源别的消息"; $a->strings["Suggestions"] = "建议"; $a->strings["Suggest potential friends"] = "建议潜在朋友们"; $a->strings["All Contacts"] = "所有的熟人"; @@ -782,11 +787,10 @@ $a->strings["Edit contact"] = "编熟人"; $a->strings["Search your contacts"] = "搜索您的熟人"; $a->strings["Update"] = "更新"; $a->strings["everybody"] = "每人"; -$a->strings["Account settings"] = "帐户配置"; $a->strings["Additional features"] = "附加的特点"; -$a->strings["Display settings"] = "表示设置"; -$a->strings["Connector settings"] = "插销设置"; -$a->strings["Plugin settings"] = "插件设置"; +$a->strings["Display"] = "显示"; +$a->strings["Social Networks"] = "社会化网络"; +$a->strings["Delegations"] = "代表"; $a->strings["Connected apps"] = "连接着应用"; $a->strings["Export personal data"] = "出口私人信息"; $a->strings["Remove account"] = "删除账户"; @@ -828,7 +832,6 @@ $a->strings["enabled"] = "能够做的"; $a->strings["disabled"] = "使不能用"; $a->strings["StatusNet"] = "StatusNet"; $a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权"; -$a->strings["Connector Settings"] = "连接器设置"; $a->strings["Email/Mailbox Setup"] = "邮件收件箱设置"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"; $a->strings["Last successful email check:"] = "上个成功收件箱检查:"; @@ -853,6 +856,7 @@ $a->strings["Number of items to display per page:"] = "每页表示多少项目 $a->strings["Maximum of 100 items"] = "最多100项目"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "用手机看一页展示多少项目:"; $a->strings["Don't show emoticons"] = "别表示请表符号"; +$a->strings["Don't show notices"] = "别表提示"; $a->strings["Infinite scroll"] = "无限的滚动"; $a->strings["Normal Account Page"] = "平常账户页"; $a->strings["This account is a normal personal profile"] = "这个帐户是正常私人简介"; @@ -1111,6 +1115,8 @@ $a->strings["Public photo"] = "公开照相"; $a->strings["Share"] = "分享"; $a->strings["View Album"] = "看照片册"; $a->strings["Recent Photos"] = "最近的照片"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "不好意思,可能你上传的是PHP设置允许的大"; +$a->strings["Or - did you try to upload an empty file?"] = "或者,你是不是上传空的文件?"; $a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d"; $a->strings["File upload failed."] = "文件上传失败。"; $a->strings["No videos selected"] = "没选择的视频"; @@ -1289,6 +1295,7 @@ $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["User not found."] = "找不到用户"; $a->strings["There is no status with this id."] = "没有什么状态跟这个ID"; +$a->strings["There is no conversation with this id."] = "没有这个ID的对话"; $a->strings["view full size"] = "看全尺寸"; $a->strings["Starts:"] = "开始:"; $a->strings["Finishes:"] = "结束:"; @@ -1444,6 +1451,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s放在[url=%2\ $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s标签您"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s把您在%2\$s标签"; $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s[url=%2\$s]把您标签[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s分享新的消息"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s分享新的消息在%2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]分享一个消息[/url]."; $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify]您被%1\$s戳"; $a->strings["%1\$s poked you at %2\$s"] = "您被%1\$s戳在%2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s]把您戳[/url]。"; @@ -1493,6 +1503,8 @@ $a->strings["Search site content"] = "搜索网站内容"; $a->strings["Conversations on this site"] = "这个网站的交谈"; $a->strings["Directory"] = "名录"; $a->strings["People directory"] = "人物名录"; +$a->strings["Information"] = "资料"; +$a->strings["Information about this friendica instance"] = "资料关于这个Friendica服务器"; $a->strings["Conversations from your friends"] = "从你朋友们的交谈"; $a->strings["Network Reset"] = "网络重设"; $a->strings["Load Network page with no filters"] = "表示网络页无滤器"; @@ -1504,7 +1516,7 @@ $a->strings["Inbox"] = "收件箱"; $a->strings["Outbox"] = "发件箱"; $a->strings["Manage"] = "代用户"; $a->strings["Manage other pages"] = "管理别的页"; -$a->strings["Delegations"] = "代表"; +$a->strings["Account settings"] = "帐户配置"; $a->strings["Manage/Edit Profiles"] = "管理/编辑简介"; $a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们"; $a->strings["Site setup and configuration"] = "网站开办和配置"; @@ -1527,7 +1539,8 @@ $a->strings["Love/Romance:"] = "爱情/浪漫"; $a->strings["Work/employment:"] = "工作"; $a->strings["School/education:"] = "学院/教育"; $a->strings["Image/photo"] = "图像/照片"; -$a->strings["%s wrote the following post"] = "%s写了下面的文章"; +$a->strings["%s wrote the following post"] = "%s写了下面的消息"; +$a->strings[""] = ""; $a->strings["$1 wrote:"] = "$1写:"; $a->strings["Encrypted content"] = "加密的内容"; $a->strings["Unknown | Not categorised"] = "未知的 |无分类"; @@ -1547,6 +1560,8 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora连接"; +$a->strings["Statusnet"] = "Statusnet"; $a->strings["Miscellaneous"] = "形形色色"; $a->strings["year"] = "年"; $a->strings["month"] = "月"; @@ -1575,6 +1590,8 @@ $a->strings["Richtext Editor"] = "富文本格式编辑"; $a->strings["Enable richtext editor"] = "使富文本格式编辑可用"; $a->strings["Post Preview"] = "文章预演"; $a->strings["Allow previewing posts and comments before publishing them"] = "允许文章和评论出版前预演"; +$a->strings["Auto-mention Forums"] = "自动提示论坛"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "添加/删除提示论坛页选择/淘汰在ACL窗户的时候。"; $a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口"; $a->strings["Search by Date"] = "按日期搜索"; $a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; From 1741dd2a1d5cf636cfef510700728bd1c9878b23 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 30 Apr 2014 17:02:45 +0200 Subject: [PATCH 06/30] NB-NO: update to the strings --- view/nb-no/messages.po | 2147 +++++++++++++++++++++------------------- view/nb-no/strings.php | 33 +- 2 files changed, 1137 insertions(+), 1043 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 621b97f3ba..7304eab339 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-31 18:07+0100\n" -"PO-Revision-Date: 2014-01-22 19:57+0000\n" +"POT-Creation-Date: 2014-04-26 09:22+0200\n" +"PO-Revision-Date: 2014-04-29 07:37+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -23,24 +23,24 @@ msgid "This entry was edited" msgstr "Denne oppføringen ble endret" #: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../mod/photos.php:1355 msgid "Private Message" msgstr "Privat melding" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:663 +#: ../../mod/content.php:727 ../../mod/settings.php:670 msgid "Edit" msgstr "Endre" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../mod/content.php:739 ../../include/conversation.php:612 msgid "Select" msgstr "Velg" -#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:695 -#: ../../mod/settings.php:664 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:703 +#: ../../mod/settings.php:671 ../../mod/group.php:171 +#: ../../mod/photos.php:1646 ../../include/conversation.php:613 msgid "Delete" msgstr "Slett" @@ -69,7 +69,7 @@ msgid "add tag" msgstr "Legg til merkelapp" #: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../mod/photos.php:1538 msgid "I like this (toggle)" msgstr "Jeg liker dette (skru på/av)" @@ -78,7 +78,7 @@ msgid "like" msgstr "liker" #: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" msgstr "Jeg liker ikke dette (skru på/av)" @@ -94,199 +94,200 @@ msgstr "Del denne" msgid "share" msgstr "Del" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "Kategorier:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "Lagret i:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Besøk %ss profil [%s]" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "til" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "via" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "vegg-til-vegg" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "via vegg-til-vegg" -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s fra %s" -#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 +#: ../../mod/content.php:708 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 msgid "Comment" msgstr "Kommentar" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../include/conversation.php:690 ../../include/conversation.php:1102 msgid "Please wait" msgstr "Vennligst vent" -#: ../../object/Item.php:345 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" -#: ../../object/Item.php:347 ../../object/Item.php:360 -#: ../../mod/content.php:604 ../../include/text.php:1928 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1946 msgid "comment" msgid_plural "comments" msgstr[0] "kommentar" msgstr[1] "kommentarer" -#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "vis mer" -#: ../../object/Item.php:633 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/content.php:706 +#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 +#: ../../mod/photos.php:1685 msgid "This is you" msgstr "Dette er deg" -#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 #: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" msgstr "Lagre" -#: ../../object/Item.php:637 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "uthevet" -#: ../../object/Item.php:638 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "kursiv" -#: ../../object/Item.php:639 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "understrek" -#: ../../object/Item.php:640 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "sitat" -#: ../../object/Item.php:641 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "kode" -#: ../../object/Item.php:642 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "Bilde/fotografi" -#: ../../object/Item.php:643 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "lenke" -#: ../../object/Item.php:644 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "video" -#: ../../object/Item.php:645 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 +#: ../../include/conversation.php:1119 msgid "Preview" msgstr "forhåndsvisning" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Du må være innlogget for å bruke tillegg." -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "Ikke funnet" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "Fant ikke siden." -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Tilgang nektet" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 #: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 -#: ../../mod/settings.php:96 ../../mod/settings.php:583 -#: ../../mod/settings.php:588 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:101 ../../mod/settings.php:590 +#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 #: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4215 +#: ../../wall_attach.php:55 ../../include/items.php:4373 msgid "Permission denied." msgstr "Ingen tilgang." -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "Velg mobilvisning" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "Hjem" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 +#: ../../include/nav.php:145 msgid "Your posts and conversations" msgstr "Dine innlegg og samtaler" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -299,7 +300,7 @@ msgid "Your profile page" msgstr "Din profilside" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "Bilder" @@ -310,7 +311,7 @@ msgid "Your photos" msgstr "Dine bilder" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "Hendelser" @@ -338,13 +339,13 @@ msgstr "Fellesskap" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" msgstr "ikke vis" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" msgstr "vis" @@ -353,6 +354,7 @@ msgstr "vis" #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 #: ../../view/theme/clean/config.php:73 #: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:49 msgid "Theme settings" msgstr "Temainnstillinger" @@ -374,8 +376,8 @@ msgstr "Angi linjeavstand for innlegg og kommentarer" msgid "Set resolution for middle column" msgstr "Angi oppløsning for midtkolonnen" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 -#: ../../include/nav.php:171 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:173 msgid "Contacts" msgstr "Kontakter" @@ -409,28 +411,28 @@ msgid "Last likes" msgstr "Siste liker" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1922 +#: ../../include/conversation.php:246 ../../include/text.php:1940 msgid "event" msgstr "hendelse" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1878 +#: ../../include/diaspora.php:1908 msgid "status" msgstr "status" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 +#: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1924 ../../include/diaspora.php:1878 +#: ../../include/text.php:1942 ../../include/diaspora.php:1908 msgid "photo" msgstr "bilde" -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s liker %2$s's %3$s" @@ -441,16 +443,16 @@ msgstr "%1$s liker %2$s's %3$s" msgid "Last photos" msgstr "Siste bilder" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 msgid "Contact Photos" msgstr "Kontaktbilder" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 ../../include/user.php:334 @@ -487,8 +489,8 @@ msgstr "Inviterer venner" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 +#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../include/nav.php:169 msgid "Settings" msgstr "Innstillinger" @@ -566,7 +568,7 @@ msgid "Set colour scheme" msgstr "Angi fargekart" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1658 +#: ../../include/text.php:1676 msgid "default" msgstr "standard" @@ -604,210 +606,214 @@ msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og msgid "Set theme width" msgstr "Angi temabredde" -#: ../../boot.php:684 +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Angi stil" + +#: ../../boot.php:692 msgid "Delete this item?" msgstr "Slett dette elementet?" -#: ../../boot.php:687 +#: ../../boot.php:695 msgid "show fewer" msgstr "vis færre" -#: ../../boot.php:1015 +#: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggene." -#: ../../boot.php:1017 +#: ../../boot.php:1025 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil i %s" -#: ../../boot.php:1127 +#: ../../boot.php:1135 msgid "Create a New Account" msgstr "Lag en ny konto" -#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 +#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" msgstr "Registrer" -#: ../../boot.php:1152 ../../include/nav.php:73 +#: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" msgstr "Logg ut" -#: ../../boot.php:1153 ../../include/nav.php:91 +#: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" msgstr "Logg inn" -#: ../../boot.php:1155 +#: ../../boot.php:1163 msgid "Nickname or Email address: " msgstr "Kallenavn eller epostadresse: " -#: ../../boot.php:1156 +#: ../../boot.php:1164 msgid "Password: " msgstr "Passord: " -#: ../../boot.php:1157 +#: ../../boot.php:1165 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1160 +#: ../../boot.php:1168 msgid "Or login using OpenID: " msgstr "Eller logg inn med OpenID:" -#: ../../boot.php:1166 +#: ../../boot.php:1174 msgid "Forgot your password?" msgstr "Glemt passordet?" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 +#: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" msgstr "Passord tilbakestilling" -#: ../../boot.php:1169 +#: ../../boot.php:1177 msgid "Website Terms of Service" msgstr "Nettstedets bruksbetingelser" -#: ../../boot.php:1170 +#: ../../boot.php:1178 msgid "terms of service" msgstr "bruksbetingelser" -#: ../../boot.php:1172 +#: ../../boot.php:1180 msgid "Website Privacy Policy" msgstr "Nettstedets retningslinjer for personvern" -#: ../../boot.php:1173 +#: ../../boot.php:1181 msgid "privacy policy" msgstr "retningslinjer for personvern" -#: ../../boot.php:1302 +#: ../../boot.php:1314 msgid "Requested account is not available." msgstr "Profil utilgjengelig." -#: ../../boot.php:1341 ../../mod/profile.php:21 +#: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." msgstr "Profil utilgjengelig." -#: ../../boot.php:1381 ../../boot.php:1485 +#: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" msgstr "Rediger profil" -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" msgstr "Forbindelse" -#: ../../boot.php:1447 +#: ../../boot.php:1459 msgid "Message" msgstr "Melding" -#: ../../boot.php:1455 ../../include/nav.php:169 +#: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" msgstr "Profiler" -#: ../../boot.php:1455 +#: ../../boot.php:1467 msgid "Manage/edit profiles" msgstr "Behandle/endre profiler" -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 +#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" msgstr "Endre profilbilde" -#: ../../boot.php:1462 ../../mod/profiles.php:727 +#: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" msgstr "Lag ny profil" -#: ../../boot.php:1472 ../../mod/profiles.php:738 +#: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" msgstr "Profilbilde" -#: ../../boot.php:1475 ../../mod/profiles.php:740 +#: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" msgstr "synlig for alle" -#: ../../boot.php:1476 ../../mod/profiles.php:741 +#: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" msgstr "Endre synlighet" -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" msgstr "Plassering:" -#: ../../boot.php:1503 ../../mod/directory.php:136 +#: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" msgstr "Kjønn:" -#: ../../boot.php:1506 ../../mod/directory.php:138 +#: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" msgstr "Status:" -#: ../../boot.php:1508 ../../mod/directory.php:140 +#: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" msgstr "Hjemmeside:" -#: ../../boot.php:1584 ../../boot.php:1670 +#: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" msgstr "g A l F d" -#: ../../boot.php:1585 ../../boot.php:1671 +#: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" msgstr "F d" -#: ../../boot.php:1630 ../../boot.php:1711 +#: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" msgstr "[idag]" -#: ../../boot.php:1642 +#: ../../boot.php:1654 msgid "Birthday Reminders" msgstr "Fødselsdager" -#: ../../boot.php:1643 +#: ../../boot.php:1655 msgid "Birthdays this week:" msgstr "Fødselsdager denne uken:" -#: ../../boot.php:1704 +#: ../../boot.php:1716 msgid "[No description]" msgstr "[Ingen beskrivelse]" -#: ../../boot.php:1722 +#: ../../boot.php:1734 msgid "Event Reminders" msgstr "Påminnelser om hendelser" -#: ../../boot.php:1723 +#: ../../boot.php:1735 msgid "Events this week:" msgstr "Hendelser denne uken:" -#: ../../boot.php:1960 ../../include/nav.php:76 +#: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" msgstr "Status" -#: ../../boot.php:1963 +#: ../../boot.php:1975 msgid "Status Messages and Posts" msgstr "Status meldinger og innlegg" -#: ../../boot.php:1970 +#: ../../boot.php:1982 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../boot.php:1977 ../../mod/photos.php:51 +#: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Fotoalbum" -#: ../../boot.php:1981 ../../boot.php:1984 +#: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" msgstr "Videoer" -#: ../../boot.php:1994 +#: ../../boot.php:2006 msgid "Events and Calendar" msgstr "Hendelser og kalender" -#: ../../boot.php:1998 ../../mod/notes.php:44 +#: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Personlige notater" -#: ../../boot.php:2001 +#: ../../boot.php:2013 msgid "Only You Can See This" msgstr "Bare du kan se dette" @@ -827,15 +833,15 @@ msgstr "Angi din stemning og fortell dine venner" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 #: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." msgstr "Offentlig tilgang ikke tillatt." -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 +#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4023 +#: ../../include/items.php:4177 msgid "Item not found." msgstr "Enheten ble ikke funnet." @@ -843,7 +849,7 @@ msgstr "Enheten ble ikke funnet." msgid "Access to this profile has been restricted." msgstr "Tilgang til denne profilen er blitt begrenset." -#: ../../mod/display.php:239 +#: ../../mod/display.php:263 msgid "Item has been removed." msgstr "Elementet har blitt slettet." @@ -888,126 +894,126 @@ msgstr "Ingen installerte plugins/tillegg/apper" msgid "%1$s welcomes %2$s" msgstr "%1$s hilser %2$s" -#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Registeringsdetaljer for %s" -#: ../../mod/register.php:99 +#: ../../mod/register.php:100 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner." -#: ../../mod/register.php:103 +#: ../../mod/register.php:104 msgid "Failed to send email message. Here is the message that failed." msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes." -#: ../../mod/register.php:108 +#: ../../mod/register.php:109 msgid "Your registration can not be processed." msgstr "Din registrering kan ikke behandles." -#: ../../mod/register.php:148 +#: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" msgstr "Henvendelse om registrering ved %s" -#: ../../mod/register.php:157 +#: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." msgstr "Din registrering venter på godkjenning fra eier av stedet." -#: ../../mod/register.php:195 ../../mod/uimport.php:50 +#: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen." -#: ../../mod/register.php:223 +#: ../../mod/register.php:224 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"." -#: ../../mod/register.php:224 +#: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene." -#: ../../mod/register.php:225 +#: ../../mod/register.php:226 msgid "Your OpenID (optional): " msgstr "Din OpenID (valgfritt):" -#: ../../mod/register.php:239 +#: ../../mod/register.php:240 msgid "Include your profile in member directory?" msgstr "Legg til profilen din i medlemskatalogen?" -#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 -#: ../../mod/settings.php:981 ../../mod/settings.php:987 -#: ../../mod/settings.php:995 ../../mod/settings.php:999 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 -#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4064 +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:998 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4218 msgid "Yes" msgstr "Ja" -#: ../../mod/register.php:243 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 -#: ../../mod/settings.php:987 ../../mod/settings.php:995 -#: ../../mod/settings.php:999 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 -#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 -#: ../../mod/profiles.php:611 +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/profiles.php:615 msgid "No" msgstr "Nei" -#: ../../mod/register.php:260 +#: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon." -#: ../../mod/register.php:261 +#: ../../mod/register.php:262 msgid "Your invitation ID: " msgstr "Din invitasjons-ID:" -#: ../../mod/register.php:264 ../../mod/admin.php:572 +#: ../../mod/register.php:265 ../../mod/admin.php:573 msgid "Registration" msgstr "Registrering" -#: ../../mod/register.php:272 +#: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Ditt fulle navn (f.eks. Ola Nordmann):" -#: ../../mod/register.php:273 +#: ../../mod/register.php:274 msgid "Your Email Address: " msgstr "Din e-postadresse:" -#: ../../mod/register.php:274 +#: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@$sitename\"." -#: ../../mod/register.php:275 +#: ../../mod/register.php:276 msgid "Choose a nickname: " msgstr "Velg et kallenavn:" -#: ../../mod/register.php:284 ../../mod/uimport.php:64 +#: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" msgstr "Importer" -#: ../../mod/register.php:285 +#: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" msgstr "Importer din profil til denne Friendica-instansen." #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "Fant ikke profilen." @@ -1052,7 +1058,7 @@ msgid "Unable to set contact photo." msgstr "Fikk ikke satt kontaktbilde." #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s er nå venner med %2$s" @@ -1217,7 +1223,7 @@ msgstr "Ingen mottaker." #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" msgstr "Vennligst skriv inn en lenke URL:" @@ -1249,13 +1255,13 @@ msgstr "Din melding:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1084 msgid "Upload photo" msgstr "Last opp bilde" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1088 msgid "Insert web link" msgstr "Sett inn web-adresse" @@ -1454,12 +1460,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "Vil du virkelig slette dette forslaget?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4067 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 +#: ../../include/items.php:4221 msgid "Cancel" msgstr "Avbryt" @@ -1473,72 +1479,72 @@ msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst pr msgid "Ignore/Hide" msgstr "Ignorér/Skjul" -#: ../../mod/network.php:179 +#: ../../mod/network.php:136 msgid "Search Results For:" msgstr "Søkeresultater for:" -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" msgstr "Fjern uttrykk" -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:42 msgid "Saved Searches" msgstr "Lagrede søk" -#: ../../mod/network.php:232 ../../include/group.php:275 +#: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" msgstr "legg til" -#: ../../mod/network.php:394 +#: ../../mod/network.php:350 msgid "Commented Order" msgstr "Etter kommentarer" -#: ../../mod/network.php:397 +#: ../../mod/network.php:353 msgid "Sort by Comment Date" msgstr "Sorter etter kommentardato" -#: ../../mod/network.php:400 +#: ../../mod/network.php:356 msgid "Posted Order" msgstr "Etter innlegg" -#: ../../mod/network.php:403 +#: ../../mod/network.php:359 msgid "Sort by Post Date" msgstr "Sorter etter innleggsdato" -#: ../../mod/network.php:441 ../../mod/notifications.php:88 +#: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" msgstr "Personlig" -#: ../../mod/network.php:444 +#: ../../mod/network.php:368 msgid "Posts that mention or involve you" msgstr "Innlegg som nevner eller involverer deg" -#: ../../mod/network.php:450 +#: ../../mod/network.php:374 msgid "New" msgstr "Ny" -#: ../../mod/network.php:453 +#: ../../mod/network.php:377 msgid "Activity Stream - by date" msgstr "Aktivitetsstrøm - etter dato" -#: ../../mod/network.php:459 +#: ../../mod/network.php:383 msgid "Shared Links" msgstr "Delte lenker" -#: ../../mod/network.php:462 +#: ../../mod/network.php:386 msgid "Interesting Links" msgstr "Interessante lenker" -#: ../../mod/network.php:468 +#: ../../mod/network.php:392 msgid "Starred" msgstr "Med stjerne" -#: ../../mod/network.php:471 +#: ../../mod/network.php:395 msgid "Favourite Posts" msgstr "Favorittinnlegg" -#: ../../mod/network.php:539 +#: ../../mod/network.php:457 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -1546,31 +1552,31 @@ msgid_plural "" msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk." msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk." -#: ../../mod/network.php:542 +#: ../../mod/network.php:460 msgid "Private messages to this group are at risk of public disclosure." msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort." -#: ../../mod/network.php:588 ../../mod/content.php:119 +#: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" msgstr "Gruppen finnes ikke" -#: ../../mod/network.php:599 ../../mod/content.php:130 +#: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" msgstr "Gruppen er tom" -#: ../../mod/network.php:605 ../../mod/content.php:134 +#: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " msgstr "Gruppe:" -#: ../../mod/network.php:617 +#: ../../mod/network.php:548 msgid "Contact: " msgstr "Kontakt:" -#: ../../mod/network.php:619 +#: ../../mod/network.php:550 msgid "Private messages to this person are at risk of public disclosure." msgstr "Private meldinger til denne personen risikerer å bli offentliggjort." -#: ../../mod/network.php:624 +#: ../../mod/network.php:555 msgid "Invalid contact." msgstr "Ugyldig kontakt." @@ -1877,19 +1883,20 @@ msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering." msgid "Theme settings updated." msgstr "Temainnstillinger oppdatert." -#: ../../mod/admin.php:101 ../../mod/admin.php:570 +#: ../../mod/admin.php:101 ../../mod/admin.php:571 msgid "Site" msgstr "Nettsted" -#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 +#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 msgid "Users" msgstr "Brukere" -#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 +#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 +#: ../../mod/settings.php:56 msgid "Plugins" msgstr "Tillegg" -#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 +#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 msgid "Themes" msgstr "Tema" @@ -1897,11 +1904,11 @@ msgstr "Tema" msgid "DB updates" msgstr "Databaseoppdateringer" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 msgid "Logs" msgstr "Logger" -#: ../../mod/admin.php:125 ../../include/nav.php:178 +#: ../../mod/admin.php:125 ../../include/nav.php:180 msgid "Admin" msgstr "Administrator" @@ -1913,19 +1920,19 @@ msgstr "Utvidelse - egenskaper" msgid "User registrations waiting for confirmation" msgstr "Brukerregistreringer venter på bekreftelse" -#: ../../mod/admin.php:187 ../../mod/admin.php:852 +#: ../../mod/admin.php:187 ../../mod/admin.php:853 msgid "Normal Account" msgstr "Vanlig konto" -#: ../../mod/admin.php:188 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:854 msgid "Soapbox Account" msgstr "Talerstol-konto" -#: ../../mod/admin.php:189 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:855 msgid "Community/Celebrity Account" msgstr "Gruppe-/kjendiskonto" -#: ../../mod/admin.php:190 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:856 msgid "Automatic Friend Account" msgstr "Automatisk vennekonto" @@ -1941,9 +1948,9 @@ msgstr "Privat forum" msgid "Message queues" msgstr "Meldingskøer" -#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 -#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 -#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 +#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 +#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 +#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 msgid "Administration" msgstr "Administrasjon" @@ -1975,316 +1982,320 @@ msgstr "Kan ikke tolke base URL. Må ha minst ://" msgid "Site settings updated." msgstr "Nettstedets innstillinger er oppdatert." -#: ../../mod/admin.php:512 ../../mod/settings.php:810 +#: ../../mod/admin.php:512 ../../mod/settings.php:822 msgid "No special theme for mobile devices" msgstr "Ikke eget tema for mobile enheter" -#: ../../mod/admin.php:529 ../../mod/contacts.php:402 +#: ../../mod/admin.php:529 ../../mod/contacts.php:408 msgid "Never" msgstr "Aldri" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 +msgid "At post arrival" +msgstr "Ved mottak av innlegg" + +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Ofte" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Hver time" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "To ganger daglig" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Daglig" -#: ../../mod/admin.php:538 +#: ../../mod/admin.php:539 msgid "Multi user instance" msgstr "Flerbrukerinstans" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:557 msgid "Closed" msgstr "Stengt" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:558 msgid "Requires approval" msgstr "Krever godkjenning" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:559 msgid "Open" msgstr "Åpen" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:563 msgid "No SSL policy, links will track page SSL state" msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:564 msgid "Force all links to use SSL" msgstr "Tving alle lenker til å bruke SSL" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:565 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)" -#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 -#: ../../mod/admin.php:1332 ../../mod/settings.php:601 -#: ../../mod/settings.php:711 ../../mod/settings.php:780 -#: ../../mod/settings.php:856 ../../mod/settings.php:1084 +#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 +#: ../../mod/admin.php:1333 ../../mod/settings.php:608 +#: ../../mod/settings.php:718 ../../mod/settings.php:792 +#: ../../mod/settings.php:871 ../../mod/settings.php:1101 msgid "Save Settings" msgstr "Lagre innstillinger" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:574 msgid "File upload" msgstr "Last opp fil" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:575 msgid "Policies" msgstr "Retningslinjer" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:576 msgid "Advanced" msgstr "Avansert" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:577 msgid "Performance" msgstr "Ytelse" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:578 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Omplasser - ADVARSEL: avansert funksjon. Kan gjøre denne tjeneren utilgjengelig." -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Site name" msgstr "Nettstedets navn" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "Additional Info" msgstr "Ekstra informasjon" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "For offentlige tjenere: du kan legge til ekstra informasjon her som vil bli vist på dir.friendica.com/siteinfo." -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System language" msgstr "Systemspråk" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "System theme" msgstr "Systemtema" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - endre temainnstillinger" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Mobile system theme" msgstr "Mobilt tema til systemet" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Theme for mobile devices" msgstr "Tema for mobile enheter" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "SSL link policy" msgstr "Retningslinjer for SSL og lenker" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Determines whether generated links should be forced to use SSL" msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Old style 'Share'" msgstr "\"Deling\" på gamlemåten" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Skrur av bbcode \"dele\" for gjentatte elementer." -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Hide help entry from navigation menu" msgstr "Skjul punktet om hjelp fra navigasjonsmenyen" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Single user instance" msgstr "Enkeltbrukerinstans" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Make this instance multi-user or single-user for the named user" msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image size" msgstr "Maksimum bildestørrelse" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense." -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "Maximum image length" msgstr "Maksimal bildelenge" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense." -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 msgid "JPEG image quality" msgstr "JPEG-bildekvalitet" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:593 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet." -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "Register policy" msgstr "Registrer retningslinjer" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Maximum Daily Registrations" msgstr "Maksimalt antall daglige registreringer" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt." -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Register text" msgstr "Registrer tekst" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Will be displayed prominently on the registration page." msgstr "Vil bli vist på en fremtredende måte på registreringssiden." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "Accounts abandoned after x days" msgstr "Kontoer forlatt etter x dager" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense." -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "Allowed friend domains" msgstr "Tillate vennedomener" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener." -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 msgid "Allowed email domains" msgstr "Tillate e-postdomener" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener." -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "Block public" msgstr "Utesteng publikum" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn." -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "Force publish" msgstr "Tving publisering" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen." -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Global directory update URL" msgstr "URL for oppdatering av Global-katalog" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet." -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Allow threaded items" msgstr "Tillat en tråd av elementer " -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Allow infinite level threading for items on this site." msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet." -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "Private posts by default for new users" msgstr "Private meldinger som standard for nye brukere" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Don't include post content in email notifications" msgstr "Ikke inkluder innholdet i en melding i epostvarsler" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Disallow public access to addons listed in the apps menu." msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "Don't embed private images in posts" msgstr "Ikke innebygg private bilder i innlegg" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:608 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2292,501 +2303,501 @@ msgid "" "while." msgstr "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "Allow Users to set remote_self" msgstr "Tillat brukere å sette remote_self" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ved å sette hake her får hver bruker lov å markere hver kontakt som en remote_self i dialogen for kontaktreparasjon. Å sette denne haken på en kontakt medfører speiling av hvert innlegg fra denne kontakten i brukerens strøm. " -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Block multiple registrations" msgstr "Blokker flere registreringer" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "Disallow users to register additional accounts for use as pages." msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider." -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support" msgstr "OpenID-støtte" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "OpenID support for registration and logins." msgstr "OpenID-støtte for registrering og innlogging." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Fullname check" msgstr "Sjekk fullt navn" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)." -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "UTF-8 Regular expressions" msgstr "UTF-8 regulære uttrykk" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Use PHP UTF8 regular expressions" msgstr "Bruk PHP UTF8 regulære uttrykk" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Show Community Page" msgstr "Vis Felleskap-side" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet." -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "Enable OStatus support" msgstr "Aktiver Ostatus-støtte" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til." +msgstr "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til." -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "OStatus conversation completion interval" msgstr "OStatus intervall for samtalefullførelse" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Enable Diaspora support" msgstr "Aktiver Diaspora-støtte" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Provide built-in Diaspora network compatibility." msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Only allow Friendica contacts" msgstr "Bare tillat Friendica-kontakter" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert." -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 msgid "Verify SSL" msgstr "Bekreft SSL" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 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 "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater." -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:620 msgid "Proxy user" msgstr "Brukernavn til mellomtjener" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Proxy URL" msgstr "Mellomtjener URL" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Network timeout" msgstr "Tidsavbrudd for nettverk" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)." -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "Delivery interval" msgstr "Leveringsintervall" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 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 "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere." -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "Poll interval" msgstr "Spørreintervall" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall." -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 msgid "Maximum Load Average" msgstr "Maksimal snittlast" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:625 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50." -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Use MySQL full text engine" msgstr "Bruk MySQL fulltekstmotor" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn." -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress Language" msgstr "Ikke vis språk" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Suppress language information in meta information about a posting." msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg." -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Path to item cache" msgstr "Sti til mellomlager for elementer" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Cache duration in seconds" msgstr "Mellomlagringens varighet i sekunder" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)." -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Path for lock file" msgstr "Sti til fillås" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Temp path" msgstr "Temp-sti" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:633 msgid "Base path to installation" msgstr "Sti til installasjonsbasen" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:635 msgid "New base url" msgstr "Ny base URL" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:653 msgid "Update has been marked successful" msgstr "Oppdatering har blitt markert som vellykket" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:663 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Utføring av %s mislyktes. Sjekk systemlogger." -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:666 #, php-format msgid "Update %s was successfully applied." msgstr "Oppdatering %s ble iverksatt på en vellykket måte." -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:670 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket." -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:673 #, php-format msgid "Update function %s could not be found." msgstr "Oppdateringsfunksjon %s ble ikke funnet." -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:688 msgid "No failed updates." msgstr "Ingen mislykkede oppdateringer." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "Failed Updates" msgstr "Mislykkede oppdateringer" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status." -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:694 msgid "Mark success (if update was manually applied)" msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:695 msgid "Attempt to execute this update step automatically" msgstr "Forsøk å utføre dette oppdateringspunktet automatisk" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:741 msgid "Registration successful. Email send to user" msgstr "Vellykket registrering. E-post er sendt til bruker" -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:751 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s bruker blokkert/ikke blokkert" msgstr[1] "%s brukere blokkert/ikke blokkert" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:758 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s bruker slettet" msgstr[1] "%s brukere slettet" -#: ../../mod/admin.php:796 +#: ../../mod/admin.php:797 #, php-format msgid "User '%s' deleted" msgstr "Brukeren '%s' er slettet" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' unblocked" msgstr "Brukeren '%s' er ikke blokkert" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:805 #, php-format msgid "User '%s' blocked" msgstr "Brukeren '%s' er blokkert" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:900 msgid "Add User" msgstr "Legg til bruker" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:901 msgid "select all" msgstr "velg alle" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:902 msgid "User registrations waiting for confirm" msgstr "Brukerregistreringer venter på bekreftelse" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:903 msgid "User waiting for permanent deletion" msgstr "Bruker venter på permanent sletting" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:904 msgid "Request date" msgstr "Forespørselsdato" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:929 ../../mod/crepair.php:150 -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:930 ../../mod/crepair.php:150 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 msgid "Name" msgstr "Navn" -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "E-post" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:905 msgid "No registrations." msgstr "Ingen registreringer." -#: ../../mod/admin.php:905 ../../mod/notifications.php:161 +#: ../../mod/admin.php:906 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Godkjenn" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:907 msgid "Deny" msgstr "Nekt" -#: ../../mod/admin.php:908 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "Blokker" -#: ../../mod/admin.php:909 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 +#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "Ikke blokker" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:911 msgid "Site admin" msgstr "Nettstedets administrator" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:912 msgid "Account expired" msgstr "Konto utgått" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:915 msgid "New User" msgstr "Ny bruker" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Register date" msgstr "Registreringsdato" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last login" msgstr "Siste innlogging" -#: ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Last item" msgstr "Siste element" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:916 msgid "Deleted since" msgstr "Slettet siden" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:917 ../../mod/settings.php:35 msgid "Account" msgstr "Konto" -#: ../../mod/admin.php:918 +#: ../../mod/admin.php:919 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:920 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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?" -#: ../../mod/admin.php:929 +#: ../../mod/admin.php:930 msgid "Name of the new user." msgstr "Navnet til den nye brukeren." -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname" msgstr "Kallenavn" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:931 msgid "Nickname of the new user." msgstr "Kallenavnet til den nye brukeren." -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:932 msgid "Email address of the new user." msgstr "E-postadressen til den nye brukeren." -#: ../../mod/admin.php:964 +#: ../../mod/admin.php:965 #, php-format msgid "Plugin %s disabled." msgstr "Tillegget %s er avskrudd." -#: ../../mod/admin.php:968 +#: ../../mod/admin.php:969 #, php-format msgid "Plugin %s enabled." msgstr "Tillegget %s er aktivert." -#: ../../mod/admin.php:978 ../../mod/admin.php:1181 +#: ../../mod/admin.php:979 ../../mod/admin.php:1182 msgid "Disable" msgstr "Skru av" -#: ../../mod/admin.php:980 ../../mod/admin.php:1183 +#: ../../mod/admin.php:981 ../../mod/admin.php:1184 msgid "Enable" msgstr "Aktiver" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 msgid "Toggle" msgstr "Veksle" -#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Author: " msgstr "Forfatter:" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 msgid "Maintainer: " msgstr "Vedlikeholder:" -#: ../../mod/admin.php:1141 +#: ../../mod/admin.php:1142 msgid "No themes found." msgstr "Ingen temaer funnet." -#: ../../mod/admin.php:1203 +#: ../../mod/admin.php:1204 msgid "Screenshot" msgstr "Skjermbilde" -#: ../../mod/admin.php:1249 +#: ../../mod/admin.php:1250 msgid "[Experimental]" msgstr "[Eksperimentell]" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1251 msgid "[Unsupported]" msgstr "[Ikke støttet]" -#: ../../mod/admin.php:1277 +#: ../../mod/admin.php:1278 msgid "Log settings updated." msgstr "Logginnstillinger er oppdatert." -#: ../../mod/admin.php:1333 +#: ../../mod/admin.php:1334 msgid "Clear" msgstr "Tøm" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1340 msgid "Enable Debugging" msgstr "Aktiver feilsøking" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "Log file" msgstr "Loggfil" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1341 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas." -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1342 msgid "Log level" msgstr "Loggnivå" -#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 +#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 msgid "Update now" msgstr "Oppdater nå" -#: ../../mod/admin.php:1391 +#: ../../mod/admin.php:1392 msgid "Close" msgstr "Lukk" -#: ../../mod/admin.php:1397 +#: ../../mod/admin.php:1398 msgid "FTP Host" msgstr "FTP-tjener" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1399 msgid "FTP Path" msgstr "FTP-sti" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1400 msgid "FTP User" msgstr "FTP-bruker" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1401 msgid "FTP Password" msgstr "FTP-passord" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 -#: ../../include/text.php:935 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 +#: ../../include/text.php:939 ../../include/nav.php:118 msgid "Search" msgstr "Søk" #: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." msgstr "Fant ikke noe." @@ -2811,75 +2822,75 @@ msgstr "Fant ikke elementet" msgid "Edit post" msgstr "Endre innlegg" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 msgid "upload photo" msgstr "last opp bilde" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 msgid "Attach file" msgstr "Legg ved fil" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 msgid "attach file" msgstr "legg ved fil" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 msgid "web link" msgstr "web-adresse" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 msgid "Insert video link" msgstr "Sett inn video-link" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 msgid "video link" msgstr "videolink" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 msgid "Insert audio link" msgstr "Sett inn lydlink" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 msgid "audio link" msgstr "lydlink" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 msgid "Set your location" msgstr "Angi din plassering" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 msgid "set location" msgstr "angi plassering" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 msgid "Clear browser location" msgstr "Fjern nettleserplassering" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 msgid "clear location" msgstr "fjern plassering" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 msgid "Permission settings" msgstr "Tillatelser" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 msgid "CC: email addresses" msgstr "Kopi: e-postadresser" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 msgid "Public post" msgstr "Offentlig innlegg" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 msgid "Set title" msgstr "Lagre tittel" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 msgid "Categories (comma-separated list)" msgstr "Kategorier (kommaseparert liste)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 msgid "Example: bob@example.com, mary@example.com" msgstr "Eksempel: ola@example.com, kari@example.com" @@ -2908,7 +2919,7 @@ msgstr "Vennligst logg inn." msgid "Find on this site" msgstr "Finn på dette nettstedet" -#: ../../mod/directory.php:59 ../../mod/contacts.php:685 +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " msgstr "Fant:" @@ -2916,12 +2927,12 @@ msgstr "Fant:" msgid "Site Directory" msgstr "Stedets katalog" -#: ../../mod/directory.php:61 ../../mod/contacts.php:686 +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Finn" -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 +#: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " msgstr "Alder:" @@ -3050,7 +3061,7 @@ msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig." msgid "Visible to:" msgstr "Synlig for:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 msgid "Save" msgstr "Lagre" @@ -3147,7 +3158,7 @@ msgstr "Ugyldig profil-URL." msgid "Disallowed profile URL." msgstr "Underkjent profil-URL." -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." msgstr "Mislyktes med å oppdatere kontaktposten." @@ -3183,7 +3194,7 @@ msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s." msgid "Confirm" msgstr "Bekreft" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 msgid "[Name Withheld]" msgstr "[Navnet tilbakeholdt]" @@ -3235,7 +3246,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federeated Social Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3261,7 +3272,7 @@ msgstr "Send forespørsel" msgid "[Embedded content - reload page to view]" msgstr "[Innebygget innhold - hent siden på nytt for å se det]" -#: ../../mod/content.php:496 ../../include/conversation.php:686 +#: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" msgstr "Vis i sammenheng" @@ -3272,7 +3283,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d kontakt redigert." msgstr[1] "%d kontakter redigert" -#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." msgstr "Fikk ikke tilgang til kontaktposten." @@ -3280,894 +3291,902 @@ msgstr "Fikk ikke tilgang til kontaktposten." msgid "Could not locate selected profile." msgstr "Kunne ikke lokalisere valgt profil." -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:178 msgid "Contact updated." msgstr "Kontakt oppdatert." -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been blocked" msgstr "Kontakten er blokkert" -#: ../../mod/contacts.php:272 +#: ../../mod/contacts.php:278 msgid "Contact has been unblocked" msgstr "Kontakten er ikke blokkert lenger" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been ignored" msgstr "Kontakten er ignorert" -#: ../../mod/contacts.php:282 +#: ../../mod/contacts.php:288 msgid "Contact has been unignored" msgstr "Kontakten er ikke ignorert lenger" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been archived" msgstr "Kontakt har blitt arkivert" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:299 msgid "Contact has been unarchived" msgstr "Kontakt har blitt hentet tilbake fra arkivet" -#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" msgstr "Ønsker du virkelig å slette denne kontakten?" -#: ../../mod/contacts.php:335 +#: ../../mod/contacts.php:341 msgid "Contact has been removed." msgstr "Kontakten er fjernet." -#: ../../mod/contacts.php:373 +#: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" msgstr "Du er gjensidig venn med %s" -#: ../../mod/contacts.php:377 +#: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" msgstr "Du deler med %s" -#: ../../mod/contacts.php:382 +#: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" msgstr "%s deler med deg" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten." -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was successful)" msgstr "(Oppdatering vellykket)" -#: ../../mod/contacts.php:406 +#: ../../mod/contacts.php:412 msgid "(Update was not successful)" msgstr "(Oppdatering mislykket)" -#: ../../mod/contacts.php:408 +#: ../../mod/contacts.php:414 msgid "Suggest friends" msgstr "Foreslå venner" -#: ../../mod/contacts.php:412 +#: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" msgstr "Nettverkstype: %s" -#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d felles kontakt" msgstr[1] "%d felles kontakter" -#: ../../mod/contacts.php:420 +#: ../../mod/contacts.php:426 msgid "View all contacts" msgstr "Vis alle kontakter" -#: ../../mod/contacts.php:428 +#: ../../mod/contacts.php:434 msgid "Toggle Blocked status" msgstr "Veksle blokkeringsstatus" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 msgid "Unignore" msgstr "Fjern ignorering" -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "Ignorer" -#: ../../mod/contacts.php:434 +#: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "Veksle ingnorertstatus" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" msgstr "Hent ut av arkivet" -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" msgstr "Arkiver" -#: ../../mod/contacts.php:441 +#: ../../mod/contacts.php:447 msgid "Toggle Archive status" msgstr "Veksle arkivertstatus" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:450 msgid "Repair" msgstr "Reparer" -#: ../../mod/contacts.php:447 +#: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" msgstr "Avanserte kontaktinnstillinger" -#: ../../mod/contacts.php:453 +#: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" msgstr "Kommunikasjon tapt med denne kontakten!" -#: ../../mod/contacts.php:456 +#: ../../mod/contacts.php:462 msgid "Contact Editor" msgstr "Endre kontakt" -#: ../../mod/contacts.php:459 +#: ../../mod/contacts.php:465 msgid "Profile Visibility" msgstr "Profilens synlighet" -#: ../../mod/contacts.php:460 +#: ../../mod/contacts.php:466 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte." -#: ../../mod/contacts.php:461 +#: ../../mod/contacts.php:467 msgid "Contact Information / Notes" msgstr "Kontaktinformasjon/-notater" -#: ../../mod/contacts.php:462 +#: ../../mod/contacts.php:468 msgid "Edit contact notes" msgstr "Endre kontaktnotater" -#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besøk %ss profil [%s]" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Blokker kontakt/fjern blokkering for kontakt" -#: ../../mod/contacts.php:469 +#: ../../mod/contacts.php:475 msgid "Ignore contact" msgstr "Ignorer kontakt" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:476 msgid "Repair URL settings" msgstr "Reparer URL-innstillinger" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:477 msgid "View conversations" msgstr "Vis samtaler" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:479 msgid "Delete contact" msgstr "Slett kontakt" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:483 msgid "Last update:" msgstr "Siste oppdatering:" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:485 msgid "Update public posts" msgstr "Oppdater offentlige innlegg" -#: ../../mod/contacts.php:488 +#: ../../mod/contacts.php:494 msgid "Currently blocked" msgstr "Blokkert nå" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:495 msgid "Currently ignored" msgstr "Ignorert nå" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:496 msgid "Currently archived" msgstr "For øyeblikket arkivert" -#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "Skjul denne kontakten for andre" -#: ../../mod/contacts.php:491 +#: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Svar/liker til dine offentlige innlegg kan fortsatt være synlige" -#: ../../mod/contacts.php:542 +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Varsling om nye innlegg" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Send et varsel ved hvert nytt innlegg fra denne kontakten" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Hent ytterligere informasjon til strømmer" + +#: ../../mod/contacts.php:550 msgid "Suggestions" msgstr "Forslag" -#: ../../mod/contacts.php:545 +#: ../../mod/contacts.php:553 msgid "Suggest potential friends" msgstr "Foreslå mulige venner" -#: ../../mod/contacts.php:548 ../../mod/group.php:194 +#: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" msgstr "Alle kontakter" -#: ../../mod/contacts.php:551 +#: ../../mod/contacts.php:559 msgid "Show all contacts" msgstr "Vis alle kontakter" -#: ../../mod/contacts.php:554 +#: ../../mod/contacts.php:562 msgid "Unblocked" msgstr "Ikke blokkert" -#: ../../mod/contacts.php:557 +#: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" msgstr "Bare vis ikke blokkerte kontakter" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:569 msgid "Blocked" msgstr "Blokkert" -#: ../../mod/contacts.php:564 +#: ../../mod/contacts.php:572 msgid "Only show blocked contacts" msgstr "Bare vis blokkerte kontakter" -#: ../../mod/contacts.php:568 +#: ../../mod/contacts.php:576 msgid "Ignored" msgstr "Ignorert" -#: ../../mod/contacts.php:571 +#: ../../mod/contacts.php:579 msgid "Only show ignored contacts" msgstr "Bare vis ignorerte kontakter" -#: ../../mod/contacts.php:575 +#: ../../mod/contacts.php:583 msgid "Archived" msgstr "Arkivert" -#: ../../mod/contacts.php:578 +#: ../../mod/contacts.php:586 msgid "Only show archived contacts" msgstr "Bare vis arkiverte kontakter" -#: ../../mod/contacts.php:582 +#: ../../mod/contacts.php:590 msgid "Hidden" msgstr "Skjult" -#: ../../mod/contacts.php:585 +#: ../../mod/contacts.php:593 msgid "Only show hidden contacts" msgstr "Bare vis skjulte kontakter" -#: ../../mod/contacts.php:633 +#: ../../mod/contacts.php:641 msgid "Mutual Friendship" msgstr "Gjensidig vennskap" -#: ../../mod/contacts.php:637 +#: ../../mod/contacts.php:645 msgid "is a fan of yours" msgstr "er en tilhenger av deg" -#: ../../mod/contacts.php:641 +#: ../../mod/contacts.php:649 msgid "you are a fan of" msgstr "du er en tilhenger av" -#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Endre kontakt" -#: ../../mod/contacts.php:684 +#: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Søk i dine kontakter" -#: ../../mod/contacts.php:691 ../../mod/settings.php:126 -#: ../../mod/settings.php:627 +#: ../../mod/contacts.php:699 ../../mod/settings.php:131 +#: ../../mod/settings.php:634 msgid "Update" msgstr "Oppdater" -#: ../../mod/settings.php:28 ../../mod/photos.php:79 +#: ../../mod/settings.php:28 ../../mod/photos.php:80 msgid "everybody" msgstr "alle" -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Kontoinnstillinger" - #: ../../mod/settings.php:40 msgid "Additional features" msgstr "Tilleggsfunksjoner" -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Visningsinnstillinger" +#: ../../mod/settings.php:45 +msgid "Display" +msgstr "Vis" -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Koblingsinnstillinger" +#: ../../mod/settings.php:51 ../../mod/settings.php:774 +msgid "Social Networks" +msgstr "Sosiale nettverk" -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Tilleggsinnstillinger" +#: ../../mod/settings.php:61 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Delegasjoner" -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 +#: ../../mod/settings.php:66 msgid "Connected apps" msgstr "Tilkoblede programmer" -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +#: ../../mod/settings.php:71 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Eksporter personlige data" -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 +#: ../../mod/settings.php:76 msgid "Remove account" msgstr "Fjern konto" -#: ../../mod/settings.php:123 +#: ../../mod/settings.php:128 msgid "Missing some important data!" msgstr "Mangler noen viktige data!" -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:237 msgid "Failed to connect with email account using the settings provided." msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene." -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:242 msgid "Email settings updated." msgstr "E-postinnstillinger er oppdatert." -#: ../../mod/settings.php:252 +#: ../../mod/settings.php:257 msgid "Features updated" msgstr "Funksjoner oppdatert" -#: ../../mod/settings.php:311 +#: ../../mod/settings.php:318 msgid "Relocate message has been send to your contacts" msgstr "Omplasseringsmelding har blitt sendt til dine kontakter" -#: ../../mod/settings.php:325 +#: ../../mod/settings.php:332 msgid "Passwords do not match. Password unchanged." msgstr "Passordene er ikke like. Passord uendret." -#: ../../mod/settings.php:330 +#: ../../mod/settings.php:337 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke lov. Passord uendret." -#: ../../mod/settings.php:338 +#: ../../mod/settings.php:345 msgid "Wrong password." msgstr "Feil passord." -#: ../../mod/settings.php:349 +#: ../../mod/settings.php:356 msgid "Password changed." msgstr "Passord endret." -#: ../../mod/settings.php:351 +#: ../../mod/settings.php:358 msgid "Password update failed. Please try again." msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen." -#: ../../mod/settings.php:416 +#: ../../mod/settings.php:423 msgid " Please use a shorter name." msgstr "Vennligst bruk et kortere navn." -#: ../../mod/settings.php:418 +#: ../../mod/settings.php:425 msgid " Name too short." msgstr "Navnet er for kort." -#: ../../mod/settings.php:427 +#: ../../mod/settings.php:434 msgid "Wrong Password" msgstr "Feil passord" -#: ../../mod/settings.php:432 +#: ../../mod/settings.php:439 msgid " Not valid email." msgstr "Ugyldig e-postadresse." -#: ../../mod/settings.php:438 +#: ../../mod/settings.php:445 msgid " Cannot change to that email." msgstr "Kan ikke endre til den e-postadressen." -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:500 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe." -#: ../../mod/settings.php:497 +#: ../../mod/settings.php:504 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe." -#: ../../mod/settings.php:527 +#: ../../mod/settings.php:534 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:669 msgid "Add application" msgstr "Legg til program" -#: ../../mod/settings.php:604 ../../mod/settings.php:630 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:605 ../../mod/settings.php:631 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Redirect" msgstr "Omdiriger" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Icon url" msgstr "Ikon URL" -#: ../../mod/settings.php:618 +#: ../../mod/settings.php:625 msgid "You can't edit this application." msgstr "Du kan ikke redigere dette programmet." -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:668 msgid "Connected Apps" msgstr "Tilkoblede programmer" -#: ../../mod/settings.php:665 +#: ../../mod/settings.php:672 msgid "Client key starts with" msgstr "Klientnøkkelen starter med" -#: ../../mod/settings.php:666 +#: ../../mod/settings.php:673 msgid "No name" msgstr "Ingen navn" -#: ../../mod/settings.php:667 +#: ../../mod/settings.php:674 msgid "Remove authorization" msgstr "Fjern tillatelse" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:686 msgid "No Plugin settings configured" msgstr "Ingen tilleggsinnstillinger konfigurert" -#: ../../mod/settings.php:687 +#: ../../mod/settings.php:694 msgid "Plugin Settings" msgstr "Tilleggsinnstillinger" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "Off" msgstr "Av" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:708 msgid "On" msgstr "På" -#: ../../mod/settings.php:709 +#: ../../mod/settings.php:716 msgid "Additional Features" msgstr "Tilleggsfunksjoner" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Innebygget støtte for %s forbindelse er %s" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "enabled" msgstr "aktivert" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../mod/settings.php:730 ../../mod/settings.php:731 msgid "disabled" msgstr "avskrudd" -#: ../../mod/settings.php:723 +#: ../../mod/settings.php:731 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:755 +#: ../../mod/settings.php:767 msgid "Email access is disabled on this site." msgstr "E-posttilgang er avskrudd på dette stedet." -#: ../../mod/settings.php:762 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" - -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:779 msgid "Email/Mailbox Setup" msgstr "E-post-/postboksinnstillinger" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:780 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes." -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:781 msgid "Last successful email check:" msgstr "Siste vellykkede e-postsjekk:" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:783 msgid "IMAP server name:" msgstr "IMAP-tjeners navn:" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:784 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:785 msgid "Security:" msgstr "Sikkerhet:" -#: ../../mod/settings.php:773 ../../mod/settings.php:778 +#: ../../mod/settings.php:785 ../../mod/settings.php:790 msgid "None" msgstr "Ingen" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:786 msgid "Email login name:" msgstr "E-post brukernavn:" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:787 msgid "Email password:" msgstr "E-post passord:" -#: ../../mod/settings.php:776 +#: ../../mod/settings.php:788 msgid "Reply-to address:" msgstr "Svar-til-adresse:" -#: ../../mod/settings.php:777 +#: ../../mod/settings.php:789 msgid "Send public posts to all email contacts:" msgstr "Send offentlige meldinger til alle e-postkontakter:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Action after import:" msgstr "Handling etter import:" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Mark as seen" msgstr "Marker som sett" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:790 msgid "Move to folder" msgstr "Flytt til mappe" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:791 msgid "Move to folder:" msgstr "Flytt til mappe:" -#: ../../mod/settings.php:854 +#: ../../mod/settings.php:869 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../mod/settings.php:860 ../../mod/settings.php:873 +#: ../../mod/settings.php:875 ../../mod/settings.php:889 msgid "Display Theme:" msgstr "Vis tema:" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:876 msgid "Mobile Theme:" msgstr "Mobilt tema:" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekund" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:877 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../mod/settings.php:863 +#: ../../mod/settings.php:878 msgid "Number of items to display per page:" msgstr "Antall elementer som vises per side:" -#: ../../mod/settings.php:863 ../../mod/settings.php:864 +#: ../../mod/settings.php:878 ../../mod/settings.php:879 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:879 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Antall elementer å vise per side ved visning på mobil enhet:" -#: ../../mod/settings.php:865 +#: ../../mod/settings.php:880 msgid "Don't show emoticons" msgstr "Ikke vis uttrykksikoner" -#: ../../mod/settings.php:866 +#: ../../mod/settings.php:881 +msgid "Don't show notices" +msgstr "Ikke vis varsler" + +#: ../../mod/settings.php:882 msgid "Infinite scroll" msgstr "Uendelig rulling" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:959 msgid "Normal Account Page" msgstr "Vanlig konto-side" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:960 msgid "This account is a normal personal profile" msgstr "Denne kontoen er en vanlig personlig profil" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:963 msgid "Soapbox Page" msgstr "Talerstol-side" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:964 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:967 msgid "Community Forum/Celebrity Account" msgstr "Fellesskapsforum/Kjendis-side" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:968 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:971 msgid "Automatic Friend Page" msgstr "Automatisk venn-side" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:972 msgid "Automatically approve all connection/friend requests as friends" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner" -#: ../../mod/settings.php:958 +#: ../../mod/settings.php:975 msgid "Private Forum [Experimental]" msgstr "Privat forum [Eksperimentell]" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:976 msgid "Private forum - approved members only" msgstr "Privat forum - kun godkjente medlemmer" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:988 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen." -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:998 msgid "Publish your default profile in your local site directory?" msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?" -#: ../../mod/settings.php:987 +#: ../../mod/settings.php:1004 msgid "Publish your default profile in the global social directory?" msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1012 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?" -#: ../../mod/settings.php:999 +#: ../../mod/settings.php:1016 msgid "Hide your profile details from unknown viewers?" msgstr "Skjul dine profildetaljer fra ukjente besøkende?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1021 msgid "Allow friends to post to your profile page?" msgstr "Tillat venner å poste innlegg på din profilside?" -#: ../../mod/settings.php:1010 +#: ../../mod/settings.php:1027 msgid "Allow friends to tag your posts?" msgstr "Tillat venner å merke dine innlegg?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1033 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../mod/settings.php:1022 +#: ../../mod/settings.php:1039 msgid "Permit unknown people to send you private mail?" msgstr "Tillat ukjente personer å sende deg privat post?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1047 msgid "Profile is not published." msgstr "Profilen er ikke publisert." -#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 msgid "or" msgstr "eller" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1055 msgid "Your Identity Address is" msgstr "Din identitetsadresse er" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "Automatically expire posts after this many days:" msgstr "Innlegg utgår automatisk etter så mange dager:" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1066 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes." -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1067 msgid "Advanced expiration settings" msgstr "Avanserte innstillinger for å utgå" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1068 msgid "Advanced Expiration" msgstr "Avansert utgå" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1069 msgid "Expire posts:" msgstr "Innlegg utgår:" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1070 msgid "Expire personal notes:" msgstr "Personlige notater utgår:" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1071 msgid "Expire starred posts:" msgstr "Innlegg med stjerne utgår:" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1072 msgid "Expire photos:" msgstr "Bilder utgår:" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1073 msgid "Only expire posts by others:" msgstr "Kun innlegg fra andre utgår:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1099 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1107 msgid "Password Settings" msgstr "Passordinnstillinger" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1108 msgid "New Password:" msgstr "Nytt passord:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Confirm:" msgstr "Bekreft:" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1109 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå tomme hvis du ikke skal bytte" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1110 msgid "Current Password:" msgstr "Gjeldende passord:" -#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 +#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 msgid "Your current password to confirm the changes" msgstr "Ditt gjeldende passord for å bekrefte endringene" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1111 msgid "Password:" msgstr "Passord:" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1115 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Fullt navn:" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1117 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../mod/settings.php:1101 +#: ../../mod/settings.php:1118 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1119 msgid "Default Post Location:" msgstr "Standard oppholdssted når du poster:" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1120 msgid "Use Browser Location:" msgstr "Bruk nettleserens oppholdssted:" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1123 msgid "Security and Privacy Settings" msgstr "Sikkerhet og privatlivsinnstillinger" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1125 msgid "Maximum Friend Requests/Day:" msgstr "Maksimum venneforespørsler/dag:" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 +#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 msgid "(to prevent spam abuse)" msgstr "(for å forhindre søppelpost)" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1126 msgid "Default Post Permissions" msgstr "Standardtillatelser ved posting" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1127 msgid "(click to open/close)" msgstr "(klikk for å åpne/lukke)" -#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 +#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "Vis til grupper" -#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 +#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "Vis til kontakter" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1138 msgid "Default Private Post" msgstr "Standard privat innlegg" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1139 msgid "Default Public Post" msgstr "Standard offentlig innlegg" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1143 msgid "Default Permissions for New Posts" msgstr "Standard tillatelser for nye innlegg" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1155 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1158 msgid "Notification Settings" msgstr "Beskjedinnstillinger" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1159 msgid "By default post a status message when:" msgstr "Standard å legge inn en statusmelding når:" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1160 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1161 msgid "joining a forum/community" msgstr "blir med i et forum/fellesskap" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1162 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1163 msgid "Send a notification email when:" msgstr "Send en e-post med beskjed når:" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1164 msgid "You receive an introduction" msgstr "Du mottar en introduksjon" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1165 msgid "Your introductions are confirmed" msgstr "Dine introduksjoner er bekreftet" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1166 msgid "Someone writes on your profile wall" msgstr "Noen skriver på veggen til profilen din" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1167 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgingskommentar" -#: ../../mod/settings.php:1151 +#: ../../mod/settings.php:1168 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1169 msgid "You receive a friend suggestion" msgstr "Du mottar et venneforslag" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1170 msgid "You are tagged in a post" msgstr "Du er merket i et innlegg" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1171 msgid "You are poked/prodded/etc. in a post" msgstr "Du er dyttet/dultet/etc i et innlegg" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1174 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte konto-/sidetype-innstillinger" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1175 msgid "Change the behaviour of this account for special situations" msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1178 msgid "Relocate" msgstr "Omplasser" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1179 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Hvis du har flyttet denne profilen fra en annen tjener, og noen av dine kontakter ikke mottar dine oppdateringer, prøv å trykke denne knappen." -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1180 msgid "Resend relocate message to contacts" msgstr "Send omplasseringsmelding på nytt til kontakter" @@ -4191,265 +4210,265 @@ msgstr "Profilen er utilgjengelig for kloning." msgid "Profile Name is required." msgstr "Profilnavn er påkrevet." -#: ../../mod/profiles.php:317 +#: ../../mod/profiles.php:321 msgid "Marital Status" msgstr "Ekteskapelig status" -#: ../../mod/profiles.php:321 +#: ../../mod/profiles.php:325 msgid "Romantic Partner" msgstr "Romantisk partner" -#: ../../mod/profiles.php:325 +#: ../../mod/profiles.php:329 msgid "Likes" msgstr "Liker" -#: ../../mod/profiles.php:329 +#: ../../mod/profiles.php:333 msgid "Dislikes" msgstr "Liker ikke" -#: ../../mod/profiles.php:333 +#: ../../mod/profiles.php:337 msgid "Work/Employment" msgstr "Arbeid/ansatt hos" -#: ../../mod/profiles.php:336 +#: ../../mod/profiles.php:340 msgid "Religion" msgstr "Religion" -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:344 msgid "Political Views" msgstr "Politisk ståsted" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:348 msgid "Gender" msgstr "Kjønn" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:352 msgid "Sexual Preference" msgstr "Seksuell orientering" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:356 msgid "Homepage" msgstr "Hjemmeside" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:360 msgid "Interests" msgstr "Interesser" -#: ../../mod/profiles.php:360 +#: ../../mod/profiles.php:364 msgid "Address" msgstr "Adresse" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:371 msgid "Location" msgstr "Plassering" -#: ../../mod/profiles.php:450 +#: ../../mod/profiles.php:454 msgid "Profile updated." msgstr "Profil oppdatert." -#: ../../mod/profiles.php:521 +#: ../../mod/profiles.php:525 msgid " and " msgstr "og" -#: ../../mod/profiles.php:529 +#: ../../mod/profiles.php:533 msgid "public profile" msgstr "offentlig profil" -#: ../../mod/profiles.php:532 +#: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s endret %2$s til “%3$s”" -#: ../../mod/profiles.php:533 +#: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" msgstr "- Besøk %1$s sin %2$s" -#: ../../mod/profiles.php:536 +#: ../../mod/profiles.php:540 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s har oppdatert %2$s, endret %3$s." -#: ../../mod/profiles.php:609 +#: ../../mod/profiles.php:613 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?" -#: ../../mod/profiles.php:629 +#: ../../mod/profiles.php:633 msgid "Edit Profile Details" msgstr "Endre profildetaljer" -#: ../../mod/profiles.php:631 +#: ../../mod/profiles.php:635 msgid "Change Profile Photo" msgstr "Endre profilbilde" -#: ../../mod/profiles.php:632 +#: ../../mod/profiles.php:636 msgid "View this profile" msgstr "Vis denne profilen" -#: ../../mod/profiles.php:633 +#: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" msgstr "Opprett en ny profil med disse innstillingene" -#: ../../mod/profiles.php:634 +#: ../../mod/profiles.php:638 msgid "Clone this profile" msgstr "Klon denne profilen" -#: ../../mod/profiles.php:635 +#: ../../mod/profiles.php:639 msgid "Delete this profile" msgstr "Slette denne profilen" -#: ../../mod/profiles.php:636 +#: ../../mod/profiles.php:640 msgid "Profile Name:" msgstr "Profilnavn:" -#: ../../mod/profiles.php:637 +#: ../../mod/profiles.php:641 msgid "Your Full Name:" msgstr "Ditt fulle navn:" -#: ../../mod/profiles.php:638 +#: ../../mod/profiles.php:642 msgid "Title/Description:" msgstr "Tittel/Beskrivelse:" -#: ../../mod/profiles.php:639 +#: ../../mod/profiles.php:643 msgid "Your Gender:" msgstr "Ditt kjønn:" -#: ../../mod/profiles.php:640 +#: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" msgstr "Fødselsdag (%s):" -#: ../../mod/profiles.php:641 +#: ../../mod/profiles.php:645 msgid "Street Address:" msgstr "Gateadresse:" -#: ../../mod/profiles.php:642 +#: ../../mod/profiles.php:646 msgid "Locality/City:" msgstr "Plassering/by:" -#: ../../mod/profiles.php:643 +#: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" msgstr "Postnummer:" -#: ../../mod/profiles.php:644 +#: ../../mod/profiles.php:648 msgid "Country:" msgstr "Land:" -#: ../../mod/profiles.php:645 +#: ../../mod/profiles.php:649 msgid "Region/State:" msgstr "Region/fylke:" -#: ../../mod/profiles.php:646 +#: ../../mod/profiles.php:650 msgid " Marital Status:" msgstr " Sivilstand:" -#: ../../mod/profiles.php:647 +#: ../../mod/profiles.php:651 msgid "Who: (if applicable)" msgstr "Hvem: (hvis gjeldende)" -#: ../../mod/profiles.php:648 +#: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com" -#: ../../mod/profiles.php:649 +#: ../../mod/profiles.php:653 msgid "Since [date]:" msgstr "Fra [dato]:" -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Seksuell orientering:" -#: ../../mod/profiles.php:651 +#: ../../mod/profiles.php:655 msgid "Homepage URL:" msgstr "Hjemmeside URL:" -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "Hjemsted:" -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Politisk ståsted:" -#: ../../mod/profiles.php:654 +#: ../../mod/profiles.php:658 msgid "Religious Views:" msgstr "Religiøst ståsted:" -#: ../../mod/profiles.php:655 +#: ../../mod/profiles.php:659 msgid "Public Keywords:" msgstr "Offentlige nøkkelord:" -#: ../../mod/profiles.php:656 +#: ../../mod/profiles.php:660 msgid "Private Keywords:" msgstr "Private nøkkelord:" -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "Liker:" -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "Liker ikke:" -#: ../../mod/profiles.php:659 +#: ../../mod/profiles.php:663 msgid "Example: fishing photography software" msgstr "Eksempel: fisking fotografering programvare" -#: ../../mod/profiles.php:660 +#: ../../mod/profiles.php:664 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)" -#: ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "(Used for searching profiles, never shown to others)" msgstr "(Brukes for å søke i profiler, vises aldri til andre)" -#: ../../mod/profiles.php:662 +#: ../../mod/profiles.php:666 msgid "Tell us about yourself..." msgstr "Fortell oss om deg selv..." -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:667 msgid "Hobbies/Interests" msgstr "Hobbier/interesser" -#: ../../mod/profiles.php:664 +#: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" msgstr "Kontaktinformasjon og sosiale nettverk" -#: ../../mod/profiles.php:665 +#: ../../mod/profiles.php:669 msgid "Musical interests" msgstr "Musikksmak" -#: ../../mod/profiles.php:666 +#: ../../mod/profiles.php:670 msgid "Books, literature" msgstr "Bøker, litteratur" -#: ../../mod/profiles.php:667 +#: ../../mod/profiles.php:671 msgid "Television" msgstr "TV" -#: ../../mod/profiles.php:668 +#: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" msgstr "Film/dans/kultur/underholdning" -#: ../../mod/profiles.php:669 +#: ../../mod/profiles.php:673 msgid "Love/romance" msgstr "Kjærlighet/romanse" -#: ../../mod/profiles.php:670 +#: ../../mod/profiles.php:674 msgid "Work/employment" msgstr "Arbeid/ansatt hos" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:675 msgid "School/education" msgstr "Skole/utdanning" -#: ../../mod/profiles.php:676 +#: ../../mod/profiles.php:680 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "Dette er din offentlige profil.
Den kan ses av alle på Internet." -#: ../../mod/profiles.php:725 +#: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Rediger/Behandle profiler" @@ -4565,7 +4584,7 @@ msgstr "Ingen flere systemvarsler." msgid "System Notifications" msgstr "Systemvarsler" -#: ../../mod/message.php:9 ../../include/nav.php:159 +#: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" msgstr "Ny melding" @@ -4574,7 +4593,7 @@ msgid "Unable to locate contact information." msgstr "Mislyktes med å finne kontaktinformasjon." #: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Messages" msgstr "Meldinger" @@ -4642,7 +4661,7 @@ msgstr "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje msgid "Send Reply" msgstr "Send svar" -#: ../../mod/like.php:170 ../../include/conversation.php:140 +#: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s liker ikke %2$s's %3$s" @@ -4652,7 +4671,7 @@ msgid "Post successful." msgstr "Innlegg vellykket." #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 +#: ../../include/bb2diaspora.php:133 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -4685,8 +4704,8 @@ msgstr "Konvertert lokaltid: %s" msgid "Please select your timezone:" msgstr "Vennligst velg din tidssone:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 msgid "Save to Folder:" msgstr "Lagre til mappe:" @@ -4714,7 +4733,7 @@ msgstr "Alle kontakter (med sikret profiltilgang)" msgid "No contacts." msgstr "Ingen kontakter." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 msgid "View Contacts" msgstr "Vis kontakter" @@ -4726,201 +4745,210 @@ msgstr "Personsøk" msgid "No matches" msgstr "Ingen treff" -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 msgid "Upload New Photos" msgstr "Last opp nye bilder" -#: ../../mod/photos.php:143 +#: ../../mod/photos.php:144 msgid "Contact information unavailable" msgstr "Kontaktinformasjon utilgjengelig" -#: ../../mod/photos.php:164 +#: ../../mod/photos.php:165 msgid "Album not found." msgstr "Album ble ikke funnet." -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" msgstr "Slett album" -#: ../../mod/photos.php:197 +#: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?" -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" msgstr "Slett bilde" -#: ../../mod/photos.php:285 +#: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" msgstr "Ønsker du virkelig å slette dette bildet?" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s ble merket i %2$s av %3$s" -#: ../../mod/photos.php:656 +#: ../../mod/photos.php:660 msgid "a photo" msgstr "et bilde" -#: ../../mod/photos.php:761 +#: ../../mod/photos.php:765 msgid "Image exceeds size limit of " msgstr "Bilde overstiger størrelsesbegrensningen på " -#: ../../mod/photos.php:769 +#: ../../mod/photos.php:773 msgid "Image file is empty." msgstr "Bildefilen er tom." -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 +#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." msgstr "Ikke i stand til å behandle bildet." -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 +#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." msgstr "Mislyktes med å laste opp bilde." -#: ../../mod/photos.php:924 +#: ../../mod/photos.php:928 msgid "No photos selected" msgstr "Ingen bilder er valgt" -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." msgstr "Tilgang til dette elementet er begrenset." -#: ../../mod/photos.php:1088 +#: ../../mod/photos.php:1092 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring." -#: ../../mod/photos.php:1123 +#: ../../mod/photos.php:1127 msgid "Upload Photos" msgstr "Last opp bilder" -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " msgstr "Nytt albumnavn:" -#: ../../mod/photos.php:1128 +#: ../../mod/photos.php:1132 msgid "or existing album name: " msgstr "eller eksisterende albumnavn:" -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" msgstr "Ikke vis statusoppdatering for denne opplastingen" -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" msgstr "Tillatelser" -#: ../../mod/photos.php:1142 +#: ../../mod/photos.php:1146 msgid "Private Photo" msgstr "Privat bilde" -#: ../../mod/photos.php:1143 +#: ../../mod/photos.php:1147 msgid "Public Photo" msgstr "Offentlig bilde" -#: ../../mod/photos.php:1210 +#: ../../mod/photos.php:1214 msgid "Edit Album" msgstr "Endre album" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "Show Newest First" msgstr "Vis nyeste først" -#: ../../mod/photos.php:1218 +#: ../../mod/photos.php:1222 msgid "Show Oldest First" msgstr "Vis eldste først" -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 msgid "View Photo" msgstr "Vis bilde" -#: ../../mod/photos.php:1286 +#: ../../mod/photos.php:1290 msgid "Permission denied. Access to this item may be restricted." msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset." -#: ../../mod/photos.php:1288 +#: ../../mod/photos.php:1292 msgid "Photo not available" msgstr "Bilde ikke tilgjengelig" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "View photo" msgstr "Vis foto" -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:1348 msgid "Edit photo" msgstr "Endre bilde" -#: ../../mod/photos.php:1345 +#: ../../mod/photos.php:1349 msgid "Use as profile photo" msgstr "Bruk som profilbilde" -#: ../../mod/photos.php:1370 +#: ../../mod/photos.php:1374 msgid "View Full Size" msgstr "Vis i full størrelse" -#: ../../mod/photos.php:1444 +#: ../../mod/photos.php:1453 msgid "Tags: " msgstr "Tagger:" -#: ../../mod/photos.php:1447 +#: ../../mod/photos.php:1456 msgid "[Remove any tag]" msgstr "[Fjern en tag]" -#: ../../mod/photos.php:1487 +#: ../../mod/photos.php:1496 msgid "Rotate CW (right)" msgstr "Roter med klokka (høyre)" -#: ../../mod/photos.php:1488 +#: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" msgstr "Roter mot klokka (venstre)" -#: ../../mod/photos.php:1490 +#: ../../mod/photos.php:1499 msgid "New album name" msgstr "Nytt albumnavn" -#: ../../mod/photos.php:1493 +#: ../../mod/photos.php:1502 msgid "Caption" msgstr "Overskrift" -#: ../../mod/photos.php:1495 +#: ../../mod/photos.php:1504 msgid "Add a Tag" msgstr "Legg til tag" -#: ../../mod/photos.php:1499 +#: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1508 +#: ../../mod/photos.php:1517 msgid "Private photo" msgstr "Privat bilde" -#: ../../mod/photos.php:1509 +#: ../../mod/photos.php:1518 msgid "Public photo" msgstr "Offentlig bilde" -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 msgid "Share" msgstr "Del" -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 +#: ../../mod/photos.php:1799 ../../mod/videos.php:308 msgid "View Album" msgstr "Vis album" -#: ../../mod/photos.php:1793 +#: ../../mod/photos.php:1808 msgid "Recent Photos" msgstr "Nye bilder" -#: ../../mod/wall_attach.php:69 +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater" + +#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Eller - forsøkte du å laste opp en tom fil?" + +#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "Filstørrelsen er større enn begrensning på %d" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "Opplasting av filen mislyktes." @@ -4928,7 +4956,7 @@ msgstr "Opplasting av filen mislyktes." msgid "No videos selected" msgstr "Ingen videoer er valgt" -#: ../../mod/videos.php:301 ../../include/text.php:1383 +#: ../../mod/videos.php:301 ../../include/text.php:1387 msgid "View Video" msgstr "Vis video" @@ -4965,21 +4993,21 @@ msgstr "Gjør dette innlegget privat" msgid "%1$s is following %2$s's %3$s" msgstr "%1$s følger %2$s sin %3$s" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "Export account" msgstr "Eksporter konto" -#: ../../mod/uexport.php:72 +#: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener." -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "Export all" msgstr "Eksporter alt" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " @@ -5000,7 +5028,7 @@ msgid "Image exceeds size limit of %d" msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Veggbilder" @@ -5101,7 +5129,7 @@ msgstr "Fjern tag" msgid "Select a tag to remove: " msgstr "Velg en tag å fjerne:" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" msgstr "Slett" @@ -5117,7 +5145,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "Rediger hendelse" -#: ../../mod/events.php:335 ../../include/text.php:1615 +#: ../../mod/events.php:335 ../../include/text.php:1620 +#: ../../include/text.php:1631 msgid "link to source" msgstr "lenke til kilde" @@ -5178,34 +5207,34 @@ msgstr "Del denne hendelsen" msgid "No potential page delegates located." msgstr "Fant ingen potensielle sidedelegater." -#: ../../mod/delegate.php:121 ../../include/nav.php:165 +#: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" msgstr "Deleger sidebehandling" -#: ../../mod/delegate.php:123 +#: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på." -#: ../../mod/delegate.php:124 +#: ../../mod/delegate.php:127 msgid "Existing Page Managers" msgstr "Eksisterende sidebehandlere" -#: ../../mod/delegate.php:126 +#: ../../mod/delegate.php:129 msgid "Existing Page Delegates" msgstr "Eksisterende sidedelegater" -#: ../../mod/delegate.php:128 +#: ../../mod/delegate.php:131 msgid "Potential Delegates" msgstr "Mulige delegater" -#: ../../mod/delegate.php:131 +#: ../../mod/delegate.php:134 msgid "Add" msgstr "Legg til" -#: ../../mod/delegate.php:132 +#: ../../mod/delegate.php:135 msgid "No entries." msgstr "Ingen oppføringer" @@ -5248,37 +5277,37 @@ msgstr "Foreslå venner" msgid "Suggest a friend for %s" msgstr "Foreslå en venn for %s" -#: ../../mod/item.php:108 +#: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Mislyktes med å lokalisere opprinnelig melding." -#: ../../mod/item.php:317 +#: ../../mod/item.php:319 msgid "Empty post discarded." msgstr "Tom melding forkastet." -#: ../../mod/item.php:884 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "Systemfeil. Meldingen ble ikke lagret." -#: ../../mod/item.php:909 +#: ../../mod/item.php:917 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica." -#: ../../mod/item.php:911 +#: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" msgstr "Du kan besøke dem online på %s" -#: ../../mod/item.php:912 +#: ../../mod/item.php:920 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene." -#: ../../mod/item.php:916 +#: ../../mod/item.php:924 #, php-format msgid "%s posted an update." msgstr "%s postet en oppdatering." @@ -5355,11 +5384,11 @@ msgstr "Forkast" msgid "System" msgstr "System" -#: ../../mod/notifications.php:83 ../../include/nav.php:140 +#: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" msgstr "Nettverk" -#: ../../mod/notifications.php:98 ../../include/nav.php:149 +#: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" msgstr "Introduksjoner" @@ -5432,7 +5461,7 @@ msgstr "Ny følgesvenn" msgid "No introductions." msgstr "Ingen introduksjoner." -#: ../../mod/notifications.php:220 ../../include/nav.php:150 +#: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" msgstr "Varslinger" @@ -5656,7 +5685,7 @@ msgstr "Nettverk" msgid "All Networks" msgstr "Alle nettverk" -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" msgstr "Lagrede mapper" @@ -5680,33 +5709,37 @@ msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan." msgid "This action is not available under your subscription plan." msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan." -#: ../../include/api.php:255 ../../include/api.php:266 -#: ../../include/api.php:356 +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 msgid "User not found." msgstr "Brukeren ble ikke funnet." -#: ../../include/api.php:1024 +#: ../../include/api.php:1123 msgid "There is no status with this id." msgstr "Det er ingen status tilknyttet denne id-en." -#: ../../include/network.php:883 +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Det finnes ingen samtale med denne id-en." + +#: ../../include/network.php:886 msgid "view full size" msgstr "Vis i full størrelse" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Starter:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Slutter:" -#: ../../include/notifier.php:774 ../../include/delivery.php:457 +#: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "(uten emne)" #: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 +#: ../../include/delivery.php:467 msgid "noreply" msgstr "ikke svar" @@ -5798,7 +5831,7 @@ msgstr "Venner" msgid "%1$s poked %2$s" msgstr "%1$s dyttet %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:986 +#: ../../include/conversation.php:211 ../../include/text.php:990 msgid "poked" msgstr "dyttet" @@ -5811,129 +5844,129 @@ msgstr "innlegg/element" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s merket %2$s's %3$s som en favoritt" -#: ../../include/conversation.php:767 +#: ../../include/conversation.php:770 msgid "remove" msgstr "slett" -#: ../../include/conversation.php:771 +#: ../../include/conversation.php:774 msgid "Delete Selected Items" msgstr "Slette valgte elementer" -#: ../../include/conversation.php:870 +#: ../../include/conversation.php:873 msgid "Follow Thread" msgstr "Følg tråd" -#: ../../include/conversation.php:871 ../../include/Contact.php:229 +#: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" msgstr "Vis status" -#: ../../include/conversation.php:872 ../../include/Contact.php:230 +#: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" msgstr "Vis profil" -#: ../../include/conversation.php:873 ../../include/Contact.php:231 +#: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" msgstr "Vis bilder" -#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" msgstr "Nettverksinnlegg" -#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "Endre kontakt" -#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" msgstr "Send privat melding" -#: ../../include/conversation.php:877 ../../include/Contact.php:228 +#: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" msgstr "Dytt" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s likes this." msgstr "%s liker dette." -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" msgstr "%2$d personer liker dette" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" msgstr "%2$d personer liker ikke dette" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:964 msgid "and" msgstr "og" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" msgstr ", og %d andre personer" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s like this." msgstr "%s liker dette." -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" msgstr "Synlig for alle" -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" msgstr "Vennligst skriv inn en videolenke/-URL:" -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" msgstr "Vennligst skriv inn en lydlenke/-URL:" -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" msgstr "Merkelapp begrep:" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" msgstr "Hvor er du akkurat nå?" -#: ../../include/conversation.php:1003 +#: ../../include/conversation.php:1006 msgid "Delete item(s)?" msgstr "Slett element(er)?" -#: ../../include/conversation.php:1045 +#: ../../include/conversation.php:1048 msgid "Post to Email" msgstr "Innlegg til e-post" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1104 msgid "permissions" msgstr "tillatelser" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:1128 msgid "Post to Groups" msgstr "Innlegg til grupper" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:1129 msgid "Post to Contacts" msgstr "Innlegg til kontakter" -#: ../../include/conversation.php:1127 +#: ../../include/conversation.php:1130 msgid "Private post" msgstr "Privat innlegg" @@ -5977,262 +6010,262 @@ msgstr[1] "%d kontakter ikke importert" msgid "Done. You can now login with your username and password" msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord" -#: ../../include/text.php:300 +#: ../../include/text.php:304 msgid "newer" msgstr "nyere" -#: ../../include/text.php:302 +#: ../../include/text.php:306 msgid "older" msgstr "eldre" -#: ../../include/text.php:307 +#: ../../include/text.php:311 msgid "prev" msgstr "forrige" -#: ../../include/text.php:309 +#: ../../include/text.php:313 msgid "first" msgstr "første" -#: ../../include/text.php:341 +#: ../../include/text.php:345 msgid "last" msgstr "siste" -#: ../../include/text.php:344 +#: ../../include/text.php:348 msgid "next" msgstr "neste" -#: ../../include/text.php:836 +#: ../../include/text.php:840 msgid "No contacts" msgstr "Ingen kontakter" -#: ../../include/text.php:845 +#: ../../include/text.php:849 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d kontakt" msgstr[1] "%d kontakter" -#: ../../include/text.php:986 +#: ../../include/text.php:990 msgid "poke" msgstr "dytt" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "ping" msgstr "ping" -#: ../../include/text.php:987 +#: ../../include/text.php:991 msgid "pinged" msgstr "pinget" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prod" msgstr "dult" -#: ../../include/text.php:988 +#: ../../include/text.php:992 msgid "prodded" msgstr "dultet" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slap" msgstr "klaske" -#: ../../include/text.php:989 +#: ../../include/text.php:993 msgid "slapped" msgstr "klasket" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "finger" msgstr "fingre" -#: ../../include/text.php:990 +#: ../../include/text.php:994 msgid "fingered" msgstr "fingret" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuff" msgstr "avslå" -#: ../../include/text.php:991 +#: ../../include/text.php:995 msgid "rebuffed" msgstr "avslo" -#: ../../include/text.php:1005 +#: ../../include/text.php:1009 msgid "happy" msgstr "glad" -#: ../../include/text.php:1006 +#: ../../include/text.php:1010 msgid "sad" msgstr "trist" -#: ../../include/text.php:1007 +#: ../../include/text.php:1011 msgid "mellow" msgstr "dempet" -#: ../../include/text.php:1008 +#: ../../include/text.php:1012 msgid "tired" msgstr "trøtt" -#: ../../include/text.php:1009 +#: ../../include/text.php:1013 msgid "perky" msgstr "oppkvikket" -#: ../../include/text.php:1010 +#: ../../include/text.php:1014 msgid "angry" msgstr "sint" -#: ../../include/text.php:1011 +#: ../../include/text.php:1015 msgid "stupified" msgstr "tanketom" -#: ../../include/text.php:1012 +#: ../../include/text.php:1016 msgid "puzzled" msgstr "forundret" -#: ../../include/text.php:1013 +#: ../../include/text.php:1017 msgid "interested" msgstr "interessert" -#: ../../include/text.php:1014 +#: ../../include/text.php:1018 msgid "bitter" msgstr "bitter" -#: ../../include/text.php:1015 +#: ../../include/text.php:1019 msgid "cheerful" msgstr "munter" -#: ../../include/text.php:1016 +#: ../../include/text.php:1020 msgid "alive" msgstr "livlig" -#: ../../include/text.php:1017 +#: ../../include/text.php:1021 msgid "annoyed" msgstr "irritert" -#: ../../include/text.php:1018 +#: ../../include/text.php:1022 msgid "anxious" msgstr "nervøs" -#: ../../include/text.php:1019 +#: ../../include/text.php:1023 msgid "cranky" msgstr "grinete" -#: ../../include/text.php:1020 +#: ../../include/text.php:1024 msgid "disturbed" msgstr "forstyrret" -#: ../../include/text.php:1021 +#: ../../include/text.php:1025 msgid "frustrated" msgstr "frustrert" -#: ../../include/text.php:1022 +#: ../../include/text.php:1026 msgid "motivated" msgstr "motivert" -#: ../../include/text.php:1023 +#: ../../include/text.php:1027 msgid "relaxed" msgstr "avslappet" -#: ../../include/text.php:1024 +#: ../../include/text.php:1028 msgid "surprised" msgstr "overrasket" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Monday" msgstr "mandag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Tuesday" msgstr "tirsdag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Wednesday" msgstr "onsdag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Thursday" msgstr "torsdag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Friday" msgstr "fredag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Saturday" msgstr "lørdag" -#: ../../include/text.php:1192 +#: ../../include/text.php:1196 msgid "Sunday" msgstr "søndag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "January" msgstr "januar" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "February" msgstr "februar" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "March" msgstr "mars" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "April" msgstr "april" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "May" msgstr "mai" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "June" msgstr "juni" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "July" msgstr "juli" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "August" msgstr "august" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "September" msgstr "september" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "October" msgstr "oktober" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "November" msgstr "november" -#: ../../include/text.php:1196 +#: ../../include/text.php:1200 msgid "December" msgstr "desember" -#: ../../include/text.php:1415 +#: ../../include/text.php:1419 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1439 ../../include/text.php:1451 +#: ../../include/text.php:1443 ../../include/text.php:1455 msgid "Click to open/close" msgstr "Klikk for å åpne/lukke" -#: ../../include/text.php:1670 +#: ../../include/text.php:1688 msgid "Select an alternate language" msgstr "Velg et annet språk" -#: ../../include/text.php:1926 +#: ../../include/text.php:1944 msgid "activity" msgstr "aktivitet" -#: ../../include/text.php:1929 +#: ../../include/text.php:1947 msgid "post" msgstr "innlegg" -#: ../../include/text.php:2084 +#: ../../include/text.php:2115 msgid "Item filed" msgstr "Element arkivert" @@ -6278,151 +6311,166 @@ msgstr "en privat melding" msgid "Please visit %s to view and/or reply to your private messages." msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." -#: ../../include/enotify.php:90 +#: ../../include/enotify.php:91 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s kommenterte på [url=%2$s]a %3$s[/url]" -#: ../../include/enotify.php:97 +#: ../../include/enotify.php:98 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s kommenterte på [url=%2$s]%3$s sin %4$s[/url]" -#: ../../include/enotify.php:105 +#: ../../include/enotify.php:106 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s kommenterte på [url=%2$s] din %3$s[/url]" -#: ../../include/enotify.php:115 +#: ../../include/enotify.php:116 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notify] Kommentar til samtale #%1$d av %2$s" -#: ../../include/enotify.php:116 +#: ../../include/enotify.php:117 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s kommenterte på et element/en samtale du har fulgt." -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Vennligst besøk %s for å se og/eller svare på samtalen." -#: ../../include/enotify.php:126 +#: ../../include/enotify.php:127 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notify] %s skrev et innlegg på veggen til din profil" -#: ../../include/enotify.php:128 +#: ../../include/enotify.php:129 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skrev et innlegg på veggen til din profil %2$s" -#: ../../include/enotify.php:130 +#: ../../include/enotify.php:131 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s skrev et innlegg til [url=%2$s]din vegg[/url]" -#: ../../include/enotify.php:141 +#: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notify] %s merket deg" -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s merket deg %2$s" -#: ../../include/enotify.php:143 +#: ../../include/enotify.php:144 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]merket deg[/url]." #: ../../include/enotify.php:155 #, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s delte et nytt innlegg" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s delte et nytt innlegg på %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]delte et innlegg[/url]." + +#: ../../include/enotify.php:169 +#, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s dyttet deg" -#: ../../include/enotify.php:156 +#: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s dyttet deg %2$s" -#: ../../include/enotify.php:157 +#: ../../include/enotify.php:171 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]dyttet deg[/url]." -#: ../../include/enotify.php:172 +#: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notify] %s merket ditt innlegg" -#: ../../include/enotify.php:173 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s merket ditt innlegg %2$s" -#: ../../include/enotify.php:174 +#: ../../include/enotify.php:188 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s merket [url=%2$s]ditt innlegg[/url]" -#: ../../include/enotify.php:185 +#: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notify] Introduksjon mottatt" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:200 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du mottok en introduksjon fra '%1$s' %2$s" -#: ../../include/enotify.php:187 +#: ../../include/enotify.php:201 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du mottok [url=%1$s]en introduksjon[/url] fra %2$s." -#: ../../include/enotify.php:190 ../../include/enotify.php:208 +#: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" msgstr "Du kan besøke profilen deres på %s" -#: ../../include/enotify.php:192 +#: ../../include/enotify.php:206 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Vennligst besøk %s for å godkjenne eller avslå introduksjonen." -#: ../../include/enotify.php:199 +#: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notify] Venneforslag mottatt" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:214 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du mottok et venneforslag fra '%1$s' %2$s" -#: ../../include/enotify.php:201 +#: ../../include/enotify.php:215 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du mottok [url=%1$s]et venneforslag[/url] om %2$s fra %3$s." -#: ../../include/enotify.php:206 +#: ../../include/enotify.php:220 msgid "Name:" msgstr "Navn:" -#: ../../include/enotify.php:207 +#: ../../include/enotify.php:221 msgid "Photo:" msgstr "Bilde:" -#: ../../include/enotify.php:210 +#: ../../include/enotify.php:224 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Vennligst besøk %s for å godkjenne eller avslå forslaget." -#: ../../include/Scrape.php:583 +#: ../../include/Scrape.php:584 msgid " on Last.fm" msgstr "på Last.fm" @@ -6560,71 +6608,79 @@ msgstr "Katalog" msgid "People directory" msgstr "Personkatalog" -#: ../../include/nav.php:140 +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informasjon" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informasjon om denne Friendica-instansen." + +#: ../../include/nav.php:142 msgid "Conversations from your friends" msgstr "Samtaler fra dine venner" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Network Reset" msgstr "Nettverk tilbakestilling" -#: ../../include/nav.php:141 +#: ../../include/nav.php:143 msgid "Load Network page with no filters" msgstr "Hent Nettverk-siden uten filter" -#: ../../include/nav.php:149 +#: ../../include/nav.php:151 msgid "Friend Requests" msgstr "Venneforespørsler" -#: ../../include/nav.php:151 +#: ../../include/nav.php:153 msgid "See all notifications" msgstr "Se alle varslinger" -#: ../../include/nav.php:152 +#: ../../include/nav.php:154 msgid "Mark all system notifications seen" msgstr "Merk alle systemvarsler som sett" -#: ../../include/nav.php:156 +#: ../../include/nav.php:158 msgid "Private mail" msgstr "Privat post" -#: ../../include/nav.php:157 +#: ../../include/nav.php:159 msgid "Inbox" msgstr "Innboks" -#: ../../include/nav.php:158 +#: ../../include/nav.php:160 msgid "Outbox" msgstr "Utboks" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage" msgstr "Behandle" -#: ../../include/nav.php:162 +#: ../../include/nav.php:164 msgid "Manage other pages" msgstr "Behandle andre sider" -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegasjoner" - #: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/nav.php:171 msgid "Manage/Edit Profiles" msgstr "Behandle/endre profiler" -#: ../../include/nav.php:171 +#: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" msgstr "Behandle/endre venner og kontakter" -#: ../../include/nav.php:178 +#: ../../include/nav.php:180 msgid "Site setup and configuration" msgstr "Nettstedsoppsett og konfigurasjon" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Navigation" msgstr "Navigasjon" -#: ../../include/nav.php:182 +#: ../../include/nav.php:184 msgid "Site map" msgstr "Nettstedskart" @@ -6693,23 +6749,27 @@ msgstr "Arbeid/ansatt hos:" msgid "School/education:" msgstr "Skole/utdanning:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 -#: ../../include/bbcode.php:621 +#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:918 msgid "Image/photo" msgstr "Bilde/fotografi" -#: ../../include/bbcode.php:285 +#: ../../include/bbcode.php:354 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s skrev det følgende innlegget" +"%s wrote the following post" +msgstr "%s skrev følgende innlegg" -#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 +#: ../../include/bbcode.php:453 +msgid "" +msgstr "" + +#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 msgid "$1 wrote:" msgstr "$1 skrev:" -#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 msgid "Encrypted content" msgstr "Kryptert innhold" @@ -6781,6 +6841,14 @@ msgstr "pump.io" msgid "Twitter" msgstr "Twitter" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora-forbindelse" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "Diverse" @@ -6854,12 +6922,12 @@ msgstr "sekunder" msgid "%1$d %2$s ago" msgstr "%1$d %2$s siden" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/datetime.php:472 ../../include/items.php:1964 #, php-format msgid "%s's birthday" msgstr "%s sin bursdag" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/datetime.php:473 ../../include/items.php:1965 #, php-format msgid "Happy Birthday %s" msgstr "Gratulerer med dagen, %s" @@ -6896,155 +6964,164 @@ msgstr "Forhåndsvisning av innlegg" msgid "Allow previewing posts and comments before publishing them" msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering" -#: ../../include/features.php:37 +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-nevning av forum" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet." + +#: ../../include/features.php:38 msgid "Network Sidebar Widgets" msgstr "Småprogrammer i sidestolpen for Nettverk" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Search by Date" msgstr "Søk etter dato" -#: ../../include/features.php:38 +#: ../../include/features.php:39 msgid "Ability to select posts by date ranges" msgstr "Mulighet for å velge innlegg etter datoområder" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Group Filter" msgstr "Gruppefilter" -#: ../../include/features.php:39 +#: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Network Filter" msgstr "Nettverksfilter" -#: ../../include/features.php:40 +#: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk" -#: ../../include/features.php:41 +#: ../../include/features.php:42 msgid "Save search terms for re-use" msgstr "Lagre søkeuttrykk for gjenbruk" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Network Tabs" msgstr "Nettverksfaner" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Network Personal Tab" msgstr "Nettverk personlig fane" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Network New Tab" msgstr "Nettverk Ny fane" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Network Shared Links Tab" msgstr "Nettverk Delte lenker fane" -#: ../../include/features.php:49 +#: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Post/Comment Tools" msgstr "Innleggs-/kommentarverktøy" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Multiple Deletion" msgstr "Slett flere" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" msgstr "Velg og slett flere innlegg/kommentarer på en gang" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit Sent Posts" msgstr "Endre sendte innlegg" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" msgstr "Endre og korriger innlegg og kommentarer etter sending" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Tagging" msgstr "Merking" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Ability to tag existing posts" msgstr "Mulighet til å merke eksisterende innlegg" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Post Categories" msgstr "Innleggskategorier" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Add categories to your posts" msgstr "Legg til kategorier til dine innlegg" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Ability to file posts under folders" msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Dislike Posts" msgstr "Liker ikke innlegg" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Ability to dislike posts/comments" msgstr "Mulighet til å ikke like innlegg/kommentarer" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Star Posts" msgstr "Stjerneinnlegg" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" msgstr "Dele varslinger fra Diaspora nettverket" -#: ../../include/diaspora.php:2269 +#: ../../include/diaspora.php:2299 msgid "Attachments:" msgstr "Vedlegg:" -#: ../../include/acl_selectors.php:325 +#: ../../include/acl_selectors.php:326 msgid "Visible to everybody" msgstr "Synlig for alle" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "A new person is sharing with you at " msgstr "En ny person deler med deg hos" -#: ../../include/items.php:3539 +#: ../../include/items.php:3693 msgid "You have a new follower at " msgstr "Du har en ny følgesvenn på " -#: ../../include/items.php:4062 +#: ../../include/items.php:4216 msgid "Do you really want to delete this item?" msgstr "Ønsker du virkelig å slette dette elementet?" -#: ../../include/items.php:4285 +#: ../../include/items.php:4443 msgid "Archives" msgstr "Arkiverer" -#: ../../include/oembed.php:140 +#: ../../include/oembed.php:174 msgid "Embedded content" msgstr "Innebygd innhold" -#: ../../include/oembed.php:149 +#: ../../include/oembed.php:183 msgid "Embedding disabled" msgstr "Innebygging avskrudd" @@ -7302,7 +7379,7 @@ msgstr "sluttet å følge" msgid "Drop Contact" msgstr "Fjern kontakt" -#: ../../include/dba.php:44 +#: ../../include/dba.php:45 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' " diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index 3b6d3a77e1..235dfff9f4 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -120,6 +120,7 @@ $a->strings["font size"] = "skriftstørrelse"; $a->strings["base font size for your interface"] = "standard skriftstørrelse i ditt brukergrensesnitt"; $a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"; $a->strings["Set theme width"] = "Angi temabredde"; +$a->strings["Set style"] = "Angi stil"; $a->strings["Delete this item?"] = "Slett dette elementet?"; $a->strings["show fewer"] = "vis færre"; $a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene."; @@ -418,6 +419,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert."; $a->strings["No special theme for mobile devices"] = "Ikke eget tema for mobile enheter"; $a->strings["Never"] = "Aldri"; +$a->strings["At post arrival"] = "Ved mottak av innlegg"; $a->strings["Frequently"] = "Ofte"; $a->strings["Hourly"] = "Hver time"; $a->strings["Twice daily"] = "To ganger daglig"; @@ -498,7 +500,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Bruk PHP UTF8 regulære uttry $a->strings["Show Community Page"] = "Vis Felleskap-side"; $a->strings["Display a Community page showing all recent public postings on this site."] = "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet."; $a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte"; -$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."] = "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til."; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til."; $a->strings["OStatus conversation completion interval"] = "OStatus intervall for samtalefullførelse"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave."; $a->strings["Enable Diaspora support"] = "Aktiver Diaspora-støtte"; @@ -769,6 +771,9 @@ $a->strings["Currently ignored"] = "Ignorert nå"; $a->strings["Currently archived"] = "For øyeblikket arkivert"; $a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre"; $a->strings["Replies/likes to your public posts may still be visible"] = "Svar/liker til dine offentlige innlegg kan fortsatt være synlige"; +$a->strings["Notification for new posts"] = "Varsling om nye innlegg"; +$a->strings["Send a notification of every new post of this contact"] = "Send et varsel ved hvert nytt innlegg fra denne kontakten"; +$a->strings["Fetch further information for feeds"] = "Hent ytterligere informasjon til strømmer"; $a->strings["Suggestions"] = "Forslag"; $a->strings["Suggest potential friends"] = "Foreslå mulige venner"; $a->strings["All Contacts"] = "Alle kontakter"; @@ -790,11 +795,10 @@ $a->strings["Edit contact"] = "Endre kontakt"; $a->strings["Search your contacts"] = "Søk i dine kontakter"; $a->strings["Update"] = "Oppdater"; $a->strings["everybody"] = "alle"; -$a->strings["Account settings"] = "Kontoinnstillinger"; $a->strings["Additional features"] = "Tilleggsfunksjoner"; -$a->strings["Display settings"] = "Visningsinnstillinger"; -$a->strings["Connector settings"] = "Koblingsinnstillinger"; -$a->strings["Plugin settings"] = "Tilleggsinnstillinger"; +$a->strings["Display"] = "Vis"; +$a->strings["Social Networks"] = "Sosiale nettverk"; +$a->strings["Delegations"] = "Delegasjoner"; $a->strings["Connected apps"] = "Tilkoblede programmer"; $a->strings["Export personal data"] = "Eksporter personlige data"; $a->strings["Remove account"] = "Fjern konto"; @@ -836,7 +840,6 @@ $a->strings["enabled"] = "aktivert"; $a->strings["disabled"] = "avskrudd"; $a->strings["StatusNet"] = "StatusNet"; $a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet."; -$a->strings["Connector Settings"] = "Koblingsinnstillinger"; $a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."; $a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:"; @@ -861,6 +864,7 @@ $a->strings["Number of items to display per page:"] = "Antall elementer som vise $a->strings["Maximum of 100 items"] = "Maksimum 100 elementer"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Antall elementer å vise per side ved visning på mobil enhet:"; $a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner"; +$a->strings["Don't show notices"] = "Ikke vis varsler"; $a->strings["Infinite scroll"] = "Uendelig rulling"; $a->strings["Normal Account Page"] = "Vanlig konto-side"; $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; @@ -1120,6 +1124,8 @@ $a->strings["Public photo"] = "Offentlig bilde"; $a->strings["Share"] = "Del"; $a->strings["View Album"] = "Vis album"; $a->strings["Recent Photos"] = "Nye bilder"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater"; +$a->strings["Or - did you try to upload an empty file?"] = "Eller - forsøkte du å laste opp en tom fil?"; $a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; $a->strings["File upload failed."] = "Opplasting av filen mislyktes."; $a->strings["No videos selected"] = "Ingen videoer er valgt"; @@ -1300,6 +1306,7 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = " $a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."; $a->strings["User not found."] = "Brukeren ble ikke funnet."; $a->strings["There is no status with this id."] = "Det er ingen status tilknyttet denne id-en."; +$a->strings["There is no conversation with this id."] = "Det finnes ingen samtale med denne id-en."; $a->strings["view full size"] = "Vis i full størrelse"; $a->strings["Starts:"] = "Starter:"; $a->strings["Finishes:"] = "Slutter:"; @@ -1457,6 +1464,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innl $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merket deg"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merket deg %2\$s"; $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merket deg[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s delte et nytt innlegg"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s delte et nytt innlegg på %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]delte et innlegg[/url]."; $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s dyttet deg"; $a->strings["%1\$s poked you at %2\$s"] = "%1\$s dyttet deg %2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]dyttet deg[/url]."; @@ -1506,6 +1516,8 @@ $a->strings["Search site content"] = "Søk i nettstedets innhold"; $a->strings["Conversations on this site"] = "Samtaler på dette nettstedet"; $a->strings["Directory"] = "Katalog"; $a->strings["People directory"] = "Personkatalog"; +$a->strings["Information"] = "Informasjon"; +$a->strings["Information about this friendica instance"] = "Informasjon om denne Friendica-instansen."; $a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; $a->strings["Network Reset"] = "Nettverk tilbakestilling"; $a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter"; @@ -1517,7 +1529,7 @@ $a->strings["Inbox"] = "Innboks"; $a->strings["Outbox"] = "Utboks"; $a->strings["Manage"] = "Behandle"; $a->strings["Manage other pages"] = "Behandle andre sider"; -$a->strings["Delegations"] = "Delegasjoner"; +$a->strings["Account settings"] = "Kontoinnstillinger"; $a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler"; $a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; $a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; @@ -1540,7 +1552,8 @@ $a->strings["Love/Romance:"] = "Kjærlighet/romanse:"; $a->strings["Work/employment:"] = "Arbeid/ansatt hos:"; $a->strings["School/education:"] = "Skole/utdanning:"; $a->strings["Image/photo"] = "Bilde/fotografi"; -$a->strings["%s wrote the following post"] = "%s skrev det følgende innlegget"; +$a->strings["%s wrote the following post"] = "%s skrev følgende innlegg"; +$a->strings[""] = ""; $a->strings["$1 wrote:"] = "$1 skrev:"; $a->strings["Encrypted content"] = "Kryptert innhold"; $a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; @@ -1560,6 +1573,8 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora-forbindelse"; +$a->strings["Statusnet"] = "StatusNet"; $a->strings["Miscellaneous"] = "Diverse"; $a->strings["year"] = "år"; $a->strings["month"] = "måned"; @@ -1588,6 +1603,8 @@ $a->strings["Richtext Editor"] = "Rik tekstredigering"; $a->strings["Enable richtext editor"] = "Skru på rik tekstredigering"; $a->strings["Post Preview"] = "Forhåndsvisning av innlegg"; $a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering"; +$a->strings["Auto-mention Forums"] = "Auto-nevning av forum"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet."; $a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk"; $a->strings["Search by Date"] = "Søk etter dato"; $a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder"; From 27ff19a92c42ac2d08ae14c0fd25f3700b64ed78 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 30 Apr 2014 17:05:01 +0200 Subject: [PATCH 07/30] FR: update to some templates --- view/fr/passchanged_eml.tpl | 26 +++++++++++----------- view/fr/register_open_eml.tpl | 38 ++++++++++++++++++++++----------- view/fr/register_verify_eml.tpl | 24 ++++++++++----------- 3 files changed, 49 insertions(+), 39 deletions(-) diff --git a/view/fr/passchanged_eml.tpl b/view/fr/passchanged_eml.tpl index 4ea8899fc6..ff518670e1 100644 --- a/view/fr/passchanged_eml.tpl +++ b/view/fr/passchanged_eml.tpl @@ -1,20 +1,20 @@ -Cher(e) $username, +Cher/Chère $[username], + Votre mot de passe a été changé comme demandé. Merci de +mémoriser cette information (ou de changer immédiatement pour un +mot de passe que vous retiendrez). - Votre mot de passe a été modifié comme demandé. Merci de conserver -cette information pour un usage ultérieur (ou bien de changer votre mot de -passe immédiatement en quelque chose dont vous vous souviendrez). -Vos informations de connexion sont désormais : +Vos identifiants sont comme suit : -Site : $siteurl -Pseudo/Courriel : $email -Mot de passe : $new_password +Adresse du site: $[siteurl] +Utilisateur: $[email] +Mot de passe: $[new_password] -Vous pouvez changer ce mot de passe depuis la page des « réglages » de votre compte, -après connexion +Vous pouvez changer ce mot de passe depuis vos 'Réglages' une fois connecté. -Sincèrement votre, - l'administrateur de $sitename - +Sincèrement, + l'administrateur de $[sitename] + + \ No newline at end of file diff --git a/view/fr/register_open_eml.tpl b/view/fr/register_open_eml.tpl index 5d9e737c32..427ad561ab 100644 --- a/view/fr/register_open_eml.tpl +++ b/view/fr/register_open_eml.tpl @@ -1,22 +1,34 @@ -Cher(e) $username, +Cher $[username], + Merci de vous être inscrit sur $[sitename]. Votre compte est bien créé. +Vos informations de connexion sont comme suit : - Merci de votre inscription à $sitename. Votre compte a été créé. -Les informations de connexion sont les suivantes : -Site : $siteurl -Pseudo/Courriel : $email -Mot de passe : $password +Adresse du site: $[siteurl] +Utilisateur: $[email] +Mot de passe: $[password] -Vous pouvez changer de mot de passe dans la page des « Réglages » de votre compte, -après connexion. +Vous pouvez changer votre mot de passe depuis la page "Réglages" une fois +connecté. -Merci de prendre quelques minutes pour découvrir les autres réglages disponibles -sur cette page. +Merci de prender quelques instants pour vérifier les autres réglages de cette page. -Merci, et bienvenue sur $sitename. +Vous pouvez aussi ajouter quelques informatiques de base à votre profil par défaut +(sur la page "Profils") pour que les autres membres vous trouvent facilement. + +Nous vous recommandons d'indiquer un nom complet, d'ajouter une photo +de profil, quelques "mots-clés" (très efficace pour rencontrer des gens) - et +peut-être aussi votre pays de résidence ; sauf si vous souhaitez être plus +précis, bien sûr. + +Nous avons le plus grand respect pour votre vie privée, et aucun de ces éléments n'est nécessaire. +Si vous êtes nouveau et ne connaissez personne, ils peuvent cependant vous +aider à vous faire quelques nouveaux et intéressants contacts. + + +Merci, et bienvenue sur $[sitename]. Sincèrement votre, - l'administrateur de $sitename + l'administrateur de $[sitename] - + \ No newline at end of file diff --git a/view/fr/register_verify_eml.tpl b/view/fr/register_verify_eml.tpl index 9cb31a6a82..35d0a730b3 100644 --- a/view/fr/register_verify_eml.tpl +++ b/view/fr/register_verify_eml.tpl @@ -1,27 +1,25 @@ -Une nouvelle demande d'inscription a été reçue sur $sitename, et elle -nécessite votre approbation. +Une nouvelle demande d'inscription a été reçue par $[sitename], elle +nécessite votre approbation. -Les informations de connexion sont les suivantes : +Les détails du compte sont: -Nom complet : $username -Site : $siteurl -Pseudo/Courriel : $email +Nom complet: $[username] +Adresse du site: $[siteurl] +Utilisateur: $[email] -Pour approuver cette demande, merci de suivre le lien : +Pour approuver, merci de visiter le lien suivant: -$siteurl/regmod/allow/$hash +$[siteurl]/regmod/allow/$[hash] -Pour rejeter cette demande et supprimer le compte associé, -merci de suivre le lien : +Pour refuser et supprimer le compte: -$siteurl/regmod/deny/$hash +$[siteurl]/regmod/deny/$[hash] -En vous remerçiant. - +Merci d'avance. From fd7e17f91e3fc0693e30a411e57972d1196f95c0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 5 May 2014 13:44:33 +0200 Subject: [PATCH 08/30] save selection to suppress language results (fix 961) --- mod/admin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/admin.php b/mod/admin.php index b7d5a50636..e03d88b275 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -403,6 +403,7 @@ function admin_page_site_post(&$a){ set_config('system','poll_interval',$poll_interval); set_config('system','maxloadavg',$maxloadavg); set_config('config','sitename',$sitename); + set_config('system','suppress_language',$suppress_language); if ($banner==""){ // don't know why, but del_config doesn't work... q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1", From 0dac5bf804a77fed3569efbe034acdd796401a45 Mon Sep 17 00:00:00 2001 From: Sven Anders Date: Tue, 6 May 2014 14:15:15 +0200 Subject: [PATCH 09/30] Make uimport URL work for Sites with subfolder BUGFIX: If you have a site like http://exmaple.com/friendica you will get a wrong url --- view/templates/register.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/templates/register.tpl b/view/templates/register.tpl index 15fcf29938..aacf76529e 100644 --- a/view/templates/register.tpl +++ b/view/templates/register.tpl @@ -61,7 +61,7 @@

{{$importh}}

From bb4296e6865233daab6ab62e406e78320af718d7 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 12 May 2014 05:46:02 -0400 Subject: [PATCH 10/30] exclude know contacts from unknown contact list --- include/acl_selectors.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 90c9a35d4f..0a9b2c90ae 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -556,6 +556,9 @@ function acl_lookup(&$a, $out_type = 'json') { if ($conv_id) { /* if $conv_id is set, get unknow contacts in thread */ + /* but first get know contacts url to filter them out */ + function _contact_link($i){ return dbesc($i['link']); } + $known_contacts = array_map(_contact_link, $contacts); $unknow_contacts=array(); $r = q("select `author-avatar`,`author-name`,`author-link` @@ -563,10 +566,15 @@ function acl_lookup(&$a, $out_type = 'json') { and ( `author-name` LIKE '%%%s%%' OR `author-link` LIKE '%%%s%%' - )", + ) and + `author-link` NOT IN ('%s') + GROUP BY `author-link` + ORDER BY `author-name` ASC + ", intval($conv_id), dbesc($search), - dbesc($search) + dbesc($search), + implode("','", $known_contacts) ); if (is_array($r) && count($r)){ foreach($r as $row) { From d7b514c2c079e8e3f960ef5c23ccd4105c25f722 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 12 May 2014 15:33:20 +0200 Subject: [PATCH 11/30] add check for expiration time in item_store() --- include/items.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/items.php b/include/items.php index 27be613d70..f6779bc1ab 100755 --- a/include/items.php +++ b/include/items.php @@ -989,6 +989,21 @@ function item_store($arr,$force_parent = false) { if(! x($arr,'type')) $arr['type'] = 'remote'; + + + /* check for create date and expire time */ + $uid = intval($arr['uid']); + $r = q("SELECT expire FROM user WHERE expire != 0 AND uid = %d", $uid); + if(count($r)) { + $expire_interval = $r[0]['expire']; + $expire_date = new DateTime( '- '.$expire_interval.' days', new DateTimeZone('UTC')); + $created_date = new DateTime($arr['created'], new DateTimeZone('UTC')); + if ($created_date < $expire_date) { + logger('item-store: item created ('.$arr['created'].') before expiration time ('.$expire_date->format(DateTime::W3C).'). ignored. ' . print_r($arr,true), LOGGER_DEBUG); + return 0; + } + } + // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin. if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) From f55a22cb19c0fc871331e1b3c236a8bbbcb80add Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 12 May 2014 19:02:03 +0200 Subject: [PATCH 12/30] fix query as @annado comment --- include/items.php | 142 +++++++++++++++++++++++----------------------- 1 file changed, 72 insertions(+), 70 deletions(-) diff --git a/include/items.php b/include/items.php index f6779bc1ab..2f03818a76 100755 --- a/include/items.php +++ b/include/items.php @@ -176,7 +176,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) '$thumb' => xmlify($owner['thumb']), '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) , '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) , - '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) , + '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) , '$birthday' => ((strlen($birthday)) ? '' . xmlify($birthday) . '' : ''), '$community' => (($owner['page-flags'] == PAGE_COMMUNITY) ? '1' : '') )); @@ -261,7 +261,7 @@ function construct_activity_object($item) { } return ''; -} +} function construct_activity_target($item) { @@ -425,7 +425,7 @@ function get_atom_elements($feed, $item, $contact = array()) { $res = array(); $author = $item->get_author(); - if($author) { + if($author) { $res['author-name'] = unxmlify($author->get_name()); $res['author-link'] = unxmlify($author->get_link()); } @@ -554,14 +554,14 @@ function get_atom_elements($feed, $item, $contact = array()) { $res['body'] = limit_body_size($res['body']); - // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust - // the content type. Our own network only emits text normally, though it might have been converted to + // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust + // the content type. Our own network only emits text normally, though it might have been converted to // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will // have to assume it is all html and needs to be purified. - // It doesn't matter all that much security wise - because before this content is used anywhere, we are - // going to escape any tags we find regardless, but this lets us import a limited subset of html from - // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining + // It doesn't matter all that much security wise - because before this content is used anywhere, we are + // going to escape any tags we find regardless, but this lets us import a limited subset of html from + // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining // html. if((strpos($res['body'],'<') !== false) && (strpos($res['body'],'>') !== false)) { @@ -720,7 +720,7 @@ function get_atom_elements($feed, $item, $contact = array()) { if(! $type) $type = 'application/octet-stream'; - $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]'; + $att_arr[] = '[attach]href="' . $link . '" length="' . $len . '" type="' . $type . '" title="' . $title . '"[/attach]'; } $res['attach'] = implode(',', $att_arr); } @@ -990,17 +990,19 @@ function item_store($arr,$force_parent = false) { $arr['type'] = 'remote'; - + /* check for create date and expire time */ $uid = intval($arr['uid']); - $r = q("SELECT expire FROM user WHERE expire != 0 AND uid = %d", $uid); + $r = q("SELECT expire FROM user WHERE uid = %d", $uid); if(count($r)) { $expire_interval = $r[0]['expire']; - $expire_date = new DateTime( '- '.$expire_interval.' days', new DateTimeZone('UTC')); - $created_date = new DateTime($arr['created'], new DateTimeZone('UTC')); - if ($created_date < $expire_date) { - logger('item-store: item created ('.$arr['created'].') before expiration time ('.$expire_date->format(DateTime::W3C).'). ignored. ' . print_r($arr,true), LOGGER_DEBUG); - return 0; + if ($expire_interval>0) { + $expire_date = new DateTime( '- '.$expire_interval.' days', new DateTimeZone('UTC')); + $created_date = new DateTime($arr['created'], new DateTimeZone('UTC')); + if ($created_date < $expire_date) { + logger('item-store: item created ('.$arr['created'].') before expiration time ('.$expire_date->format(DateTime::W3C).'). ignored. ' . print_r($arr,true), LOGGER_DEBUG); + return 0; + } } } @@ -1662,7 +1664,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { $final_dfrn_id = ''; if($perm) { - if((($perm == 'rw') && (! intval($contact['writable']))) + if((($perm == 'rw') && (! intval($contact['writable']))) || (($perm == 'r') && (intval($contact['writable'])))) { q("update contact set writable = %d where id = %d", intval(($perm == 'rw') ? 1 : 0), @@ -1672,7 +1674,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { } } - if(($contact['duplex'] && strlen($contact['pubkey'])) + if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey'])) || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) { openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']); @@ -1690,7 +1692,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { if($final_dfrn_id != $orig_id) { logger('dfrn_deliver: wrong dfrn_id.'); - // did not decode properly - cannot trust this site + // did not decode properly - cannot trust this site return 3; } @@ -1713,16 +1715,16 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { if($page) $postvars['page'] = $page; - + if($rino && $rino_allowed && (! $dissolve)) { $key = substr(random_string(),0,16); $data = bin2hex(aes_encrypt($postvars['data'],$key)); $postvars['data'] = $data; - logger('rino: sent key = ' . $key, LOGGER_DEBUG); + logger('rino: sent key = ' . $key, LOGGER_DEBUG); - if($dfrn_version >= 2.1) { - if(($contact['duplex'] && strlen($contact['pubkey'])) + if($dfrn_version >= 2.1) { + if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey'])) || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) { @@ -1773,7 +1775,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { $res = parse_xml_string($xml); - return $res->status; + return $res->status; } @@ -1806,12 +1808,12 @@ function edited_timestamp_is_newer($existing, $update) { * $importer = the contact_record (joined to user_record) of the local user who owns this relationship. * It is this person's stuff that is going to be updated. * $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity - * from an external network and MAY create an appropriate contact record. Otherwise, we MUST + * from an external network and MAY create an appropriate contact record. Otherwise, we MUST * have a contact record. - * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or + * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or * might not) try and subscribe to it. * $datedir sorts in reverse order - * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been + * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been * imported prior to its children being seen in the stream unless we are certain * of how the feed is arranged/ordered. * With $pass = 1, we only pull parent items out of the stream. @@ -1972,7 +1974,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) * * $bdtext is just a readable placeholder in case the event is shared * with others. We will replace it during presentation to our $importer - * to contain a sparkle link and perhaps a photo. + * to contain a sparkle link and perhaps a photo. * */ @@ -2003,7 +2005,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) ); // This function is called twice without reloading the contact - // Make sure we only create one event. This is why &$contact + // Make sure we only create one event. This is why &$contact // is a reference var in this function $contact['bdyear'] = substr($birthday,0,4); @@ -2042,7 +2044,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s'); } if($deleted && is_array($contact)) { - $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id` + $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id` WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1", dbesc($uri), intval($importer['uid']), @@ -2456,19 +2458,19 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $datarray['contact-id'] = $contact['id']; if(! link_compare($datarray['owner-link'],$contact['url'])) { - // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, + // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, // but otherwise there's a possible data mixup on the sender's system. // the tgroup delivery code called from item_store will correct it if it's a forum, - // but we're going to unconditionally correct it here so that the post will always be owned by our contact. + // but we're going to unconditionally correct it here so that the post will always be owned by our contact. logger('consume_feed: Correcting item owner.', LOGGER_DEBUG); $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; $datarray['owner-avatar'] = $contact['thumb']; } - // We've allowed "followers" to reach this point so we can decide if they are + // We've allowed "followers" to reach this point so we can decide if they are // posting an @-tag delivery, which followers are allowed to do for certain - // page types. Now that we've parsed the post, let's check if it is legit. Otherwise ignore it. + // page types. Now that we've parsed the post, let's check if it is legit. Otherwise ignore it. if(($contact['rel'] == CONTACT_IS_FOLLOWER) && (! tgroup_check($importer['uid'],$datarray))) continue; @@ -2826,7 +2828,7 @@ function local_delivery($importer,$data) { dbesc_array($msg); - $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg)) + $r = dbq("INSERT INTO `mail` (`" . implode("`, `", array_keys($msg)) . "`) VALUES ('" . implode("', '", array_values($msg)) . "')" ); // send notifications. @@ -2910,18 +2912,18 @@ function local_delivery($importer,$data) { } else $sql_extra = " and contact.self = 1 and item.wall = 1 "; - - // was the top-level post for this reply written by somebody on this site? - // Specifically, the recipient? + + // was the top-level post for this reply written by somebody on this site? + // Specifically, the recipient? $is_a_remote_delete = false; // POSSIBLE CLEANUP --> Why select so many fields when only forum_mode and wall are used? - $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`, - `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item` - INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + $r = q("select `item`.`id`, `item`.`uri`, `item`.`tag`, `item`.`forum_mode`,`item`.`origin`,`item`.`wall`, + `contact`.`name`, `contact`.`url`, `contact`.`thumb` from `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' or `item`.`thr-parent` = '%s') - AND `item`.`uid` = %d + AND `item`.`uid` = %d $sql_extra LIMIT 1", dbesc($parent_uri), @@ -2933,8 +2935,8 @@ function local_delivery($importer,$data) { $is_a_remote_delete = true; // Does this have the characteristics of a community or private group comment? - // If it's a reply to a wall post on a community/prvgroup page it's a - // valid community comment. Also forum_mode makes it valid for sure. + // If it's a reply to a wall post on a community/prvgroup page it's a + // valid community comment. Also forum_mode makes it valid for sure. // If neither, it's not. if($is_a_remote_delete && $community) { @@ -3109,8 +3111,8 @@ function local_delivery($importer,$data) { } // Does this have the characteristics of a community or private group comment? - // If it's a reply to a wall post on a community/prvgroup page it's a - // valid community comment. Also forum_mode makes it valid for sure. + // If it's a reply to a wall post on a community/prvgroup page it's a + // valid community comment. Also forum_mode makes it valid for sure. // If neither, it's not. if($is_a_remote_comment && $community) { @@ -3290,7 +3292,7 @@ function local_delivery($importer,$data) { 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id, 'source_name' => stripslashes($datarray['author-name']), 'source_link' => $datarray['author-link'], - 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) + 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) ? $importer['thumb'] : $datarray['author-avatar']), 'verb' => ACTIVITY_POST, 'otype' => 'item', @@ -3454,7 +3456,7 @@ function local_delivery($importer,$data) { 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id, 'source_name' => stripslashes($datarray['author-name']), 'source_link' => $datarray['author-link'], - 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) + 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) ? $importer['thumb'] : $datarray['author-avatar']), 'verb' => ACTIVITY_POST, 'otype' => 'item', @@ -3554,10 +3556,10 @@ function local_delivery($importer,$data) { if(! link_compare($datarray['owner-link'],$importer['url'])) { - // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, + // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery, // but otherwise there's a possible data mixup on the sender's system. // the tgroup delivery code called from item_store will correct it if it's a forum, - // but we're going to unconditionally correct it here so that the post will always be owned by our contact. + // but we're going to unconditionally correct it here so that the post will always be owned by our contact. logger('local_delivery: Correcting item owner.', LOGGER_DEBUG); $datarray['owner-name'] = $importer['senderName']; $datarray['owner-link'] = $importer['url']; @@ -3584,7 +3586,7 @@ function local_delivery($importer,$data) { foreach($links->link as $l) { $atts = $l->attributes(); switch($atts['rel']) { - case "alternate": + case "alternate": $Blink = $atts['href']; break; default: @@ -3607,7 +3609,7 @@ function local_delivery($importer,$data) { 'link' => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id, 'source_name' => stripslashes($datarray['author-name']), 'source_link' => $datarray['author-link'], - 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) + 'source_photo' => ((link_compare($datarray['author-link'],$importer['url'])) ? $importer['thumb'] : $datarray['author-avatar']), 'verb' => $datarray['verb'], 'otype' => 'person', @@ -3616,7 +3618,7 @@ function local_delivery($importer,$data) { )); } } - } + } continue; } @@ -3652,7 +3654,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { // create contact record - $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`, + $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`, `blocked`, `readonly`, `pending`, `writable` ) VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1 ) ", intval($importer['uid']), @@ -3704,7 +3706,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { '$siteurl' => $a->get_baseurl(), '$sitename' => $a->config['sitename'] )); - $res = mail($r[0]['email'], + $res = mail($r[0]['email'], email_header_encode((($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],'UTF-8'), $email, 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n" @@ -3753,7 +3755,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { ); } - // Diaspora has different message-ids in feeds than they do + // Diaspora has different message-ids in feeds than they do // through the direct Diaspora protocol. If we try and use // the feed, we'll get duplicates. So don't. @@ -3949,7 +3951,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) { // Check to see if we should replace this photo link with an embedded image // 1. No need to do so if the photo is public // 2. If there's a contact-id provided, see if they're in the access list - // for the photo. If so, embed it. + // for the photo. If so, embed it. // 3. Otherwise, if we have an item, see if the item permissions match the photo // permissions, regardless of order but first check to see if they're an exact // match to save some processing overhead. @@ -3958,7 +3960,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) { if($cid) { $recips = enumerate_permissions($r[0]); if(in_array($cid, $recips)) { - $replace = true; + $replace = true; } } elseif($item) { @@ -3991,7 +3993,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) { } } } - } + } $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]'; $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]')); @@ -4016,7 +4018,7 @@ function has_permissions($obj) { } function compare_permissions($obj1,$obj2) { - // first part is easy. Check that these are exactly the same. + // first part is easy. Check that these are exactly the same. if(($obj1['allow_cid'] == $obj2['allow_cid']) && ($obj1['allow_gid'] == $obj2['allow_gid']) && ($obj1['deny_cid'] == $obj2['deny_cid']) @@ -4058,14 +4060,14 @@ function item_getfeedtags($item) { $ret[] = array('#',$matches[1][$x], $matches[2][$x]); } } - $matches = false; + $matches = false; $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches); if($cnt) { for($x = 0; $x < $cnt; $x ++) { if($matches[1][$x]) $ret[] = array('@',$matches[1][$x], $matches[2][$x]); } - } + } return $ret; } @@ -4102,10 +4104,10 @@ function item_expire($uid,$days) { $expire_network_only = get_pconfig($uid,'expire','network_only'); $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : ""); - $r = q("SELECT * FROM `item` - WHERE `uid` = %d - AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY - AND `id` = `parent` + $r = q("SELECT * FROM `item` + WHERE `uid` = %d + AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY + AND `id` = `parent` $sql_extra AND `deleted` = 0", intval($uid), @@ -4151,7 +4153,7 @@ function item_expire($uid,$days) { } proc_run('php',"include/notifier.php","expire","$uid"); - + } @@ -4272,10 +4274,10 @@ function drop_item($id,$interactive = true) { } } - // If item is a link to a photo resource, nuke all the associated photos + // If item is a link to a photo resource, nuke all the associated photos // (visitors will not have photo resources) // This only applies to photos uploaded from the photos page. Photos inserted into a post do not - // generate a resource-id and therefore aren't intimately linked to the item. + // generate a resource-id and therefore aren't intimately linked to the item. if(strlen($item['resource-id'])) { q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ", @@ -4415,7 +4417,7 @@ function posted_dates($uid,$wall) { if(! $dthen) return array(); - // If it's near the end of a long month, backup to the 28th so that in + // If it's near the end of a long month, backup to the 28th so that in // consecutive loops we'll always get a whole month difference. if(intval(substr($dnow,8)) > 28) From e2754940901cf94c8ddccd32d4476e58d3e6104c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 15 May 2014 07:54:55 +0200 Subject: [PATCH 13/30] FR: update to the strings --- view/fr/messages.po | 151 ++++++++++++++++++++++---------------------- view/fr/strings.php | 146 +++++++++++++++++++++--------------------- 2 files changed, 149 insertions(+), 148 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 250407c168..ef6b662d75 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -7,14 +7,15 @@ # ltriay , 2013 # Marquis_de_Carabas , 2012 # Olivier , 2011-2012 +# tomamplius , 2014 # Tubuntu , 2013-2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-26 09:22+0200\n" -"PO-Revision-Date: 2014-04-26 12:36+0000\n" -"Last-Translator: Tubuntu \n" +"PO-Revision-Date: 2014-05-10 01:56+0000\n" +"Last-Translator: tomamplius \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" @@ -578,7 +579,7 @@ msgstr "défaut" #: ../../view/theme/clean/config.php:74 msgid "Background Image" -msgstr "" +msgstr "Image de fond" #: ../../view/theme/clean/config.php:74 msgid "" @@ -588,7 +589,7 @@ msgstr "" #: ../../view/theme/clean/config.php:75 msgid "Background Color" -msgstr "" +msgstr "Couleur de fond" #: ../../view/theme/clean/config.php:75 msgid "HEX value for the background color. Don't include the #" @@ -596,7 +597,7 @@ msgstr "" #: ../../view/theme/clean/config.php:77 msgid "font size" -msgstr "" +msgstr "Taille de police" #: ../../view/theme/clean/config.php:77 msgid "base font size for your interface" @@ -612,7 +613,7 @@ msgstr "Largeur du thème" #: ../../view/theme/vier/config.php:50 msgid "Set style" -msgstr "" +msgstr "Définir le style" #: ../../boot.php:692 msgid "Delete this item?" @@ -807,7 +808,7 @@ msgstr "Albums photo" #: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" -msgstr "" +msgstr "Vidéos" #: ../../boot.php:2006 msgid "Events and Calendar" @@ -1013,7 +1014,7 @@ msgstr "Importer" #: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" -msgstr "" +msgstr "Importer votre profile dans cette instance de friendica" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 @@ -1706,15 +1707,15 @@ msgstr "Version \"ligne de commande\" de PHP" #: ../../mod/install.php:340 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" +msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" #: ../../mod/install.php:341 msgid "Found PHP version: " -msgstr "" +msgstr "Version de PHP:" #: ../../mod/install.php:343 msgid "PHP cli binary" -msgstr "" +msgstr "PHP cli binary" #: ../../mod/install.php:354 msgid "" @@ -1996,7 +1997,7 @@ msgstr "Jamais" #: ../../mod/admin.php:530 msgid "At post arrival" -msgstr "" +msgstr "A l'arrivé d'une publication" #: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 msgid "Frequently" @@ -2047,7 +2048,7 @@ msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non re #: ../../mod/settings.php:718 ../../mod/settings.php:792 #: ../../mod/settings.php:871 ../../mod/settings.php:1101 msgid "Save Settings" -msgstr "" +msgstr "Sauvegarder les paramétres" #: ../../mod/admin.php:574 msgid "File upload" @@ -2080,7 +2081,7 @@ msgstr "Bannière/Logo" #: ../../mod/admin.php:583 msgid "Additional Info" -msgstr "" +msgstr "Informations supplémentaires" #: ../../mod/admin.php:583 msgid "" @@ -2100,7 +2101,7 @@ msgstr "Thème du système" 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" +msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" #: ../../mod/admin.php:586 msgid "Mobile system theme" @@ -2116,7 +2117,7 @@ msgstr "Politique SSL pour les liens" #: ../../mod/admin.php:587 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" +msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" #: ../../mod/admin.php:588 msgid "Old style 'Share'" @@ -2134,7 +2135,7 @@ msgstr "Cacher l'aide du menu de navigation" msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." -msgstr "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement." +msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." #: ../../mod/admin.php:590 msgid "Single user instance" @@ -2259,7 +2260,7 @@ msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global ser #: ../../mod/admin.php:604 msgid "Allow threaded items" -msgstr "Activer les commentaires imbriqués" +msgstr "autoriser le suivi des éléments par fil conducteur" #: ../../mod/admin.php:604 msgid "Allow infinite level threading for items on this site." @@ -2287,7 +2288,7 @@ msgstr "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dan #: ../../mod/admin.php:607 msgid "Disallow public access to addons listed in the apps menu." -msgstr "" +msgstr "Interdire l'acces public pour les extentions listées dans le menu apps." #: ../../mod/admin.php:607 msgid "" @@ -2309,7 +2310,7 @@ msgstr "" #: ../../mod/admin.php:609 msgid "Allow Users to set remote_self" -msgstr "" +msgstr "Autoriser les utilisateurs à définir remote_self" #: ../../mod/admin.php:609 msgid "" @@ -2370,7 +2371,7 @@ msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "" +msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." #: ../../mod/admin.php:616 msgid "OStatus conversation completion interval" @@ -2469,7 +2470,7 @@ msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais #: ../../mod/admin.php:628 msgid "Suppress Language" -msgstr "" +msgstr "Supprimer un langage" #: ../../mod/admin.php:628 msgid "Suppress language information in meta information about a posting." @@ -2552,7 +2553,7 @@ msgstr "Tenter d'éxecuter cette étape automatiquement" #: ../../mod/admin.php:741 msgid "Registration successful. Email send to user" -msgstr "" +msgstr "Souscription réussi. Mail envoyé à l'utilisateur" #: ../../mod/admin.php:751 #, php-format @@ -2585,7 +2586,7 @@ msgstr "Utilisateur '%s' bloqué" #: ../../mod/admin.php:900 msgid "Add User" -msgstr "" +msgstr "Ajouter l'utilisateur" #: ../../mod/admin.php:901 msgid "select all" @@ -2648,7 +2649,7 @@ msgstr "Compte expiré" #: ../../mod/admin.php:915 msgid "New User" -msgstr "" +msgstr "Nouvel utilisateur" #: ../../mod/admin.php:916 ../../mod/admin.php:917 msgid "Register date" @@ -2684,19 +2685,19 @@ msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce #: ../../mod/admin.php:930 msgid "Name of the new user." -msgstr "" +msgstr "Nom du nouvel utilisateur." #: ../../mod/admin.php:931 msgid "Nickname" -msgstr "" +msgstr "Pseudo" #: ../../mod/admin.php:931 msgid "Nickname of the new user." -msgstr "" +msgstr "Pseudo du nouvel utilisateur." #: ../../mod/admin.php:932 msgid "Email address of the new user." -msgstr "" +msgstr "Adresse mail du nouvel utilisateur." #: ../../mod/admin.php:965 #, php-format @@ -2754,7 +2755,7 @@ msgstr "Effacer" #: ../../mod/admin.php:1340 msgid "Enable Debugging" -msgstr "" +msgstr "Activer le déboggage" #: ../../mod/admin.php:1341 msgid "Log file" @@ -3284,8 +3285,8 @@ msgstr "Voir dans le contexte" #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d contact édité" +msgstr[1] "%d contacts édités." #: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." @@ -3502,7 +3503,7 @@ msgstr "Les réponses et \"j'aime\" à vos contenus publics peuvent%2$d people
like this" -msgstr "" +msgstr "%2$d personnes aiment ça" #: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" -msgstr "" +msgstr "%2$d personnes n'aiment pas ça" #: ../../include/conversation.php:964 msgid "and" @@ -5988,12 +5989,12 @@ msgstr "" #: ../../include/uimport.php:116 ../../include/uimport.php:127 msgid "Error! Cannot check nickname" -msgstr "" +msgstr "Erreur! Pseudo invalide" #: ../../include/uimport.php:120 ../../include/uimport.php:131 #, php-format msgid "User '%s' already exists on this server!" -msgstr "" +msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" #: ../../include/uimport.php:153 msgid "User creation error" @@ -6012,7 +6013,7 @@ msgstr[1] "%d contacts non importés" #: ../../include/uimport.php:290 msgid "Done. You can now login with your username and password" -msgstr "" +msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" #: ../../include/text.php:304 msgid "newer" @@ -6380,7 +6381,7 @@ msgstr "%1$s [url=%2$s]vous a taggé[/url]." #: ../../include/enotify.php:155 #, php-format msgid "[Friendica:Notify] %s shared a new post" -msgstr "" +msgstr "[Friendica:Notification] %s partage une nouvelle publication" #: ../../include/enotify.php:156 #, php-format @@ -6390,7 +6391,7 @@ msgstr "" #: ../../include/enotify.php:157 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]partage une publication[/url]." #: ../../include/enotify.php:169 #, php-format @@ -6614,11 +6615,11 @@ msgstr "Annuaire des utilisateurs" #: ../../include/nav.php:132 msgid "Information" -msgstr "" +msgstr "Information" #: ../../include/nav.php:132 msgid "Information about this friendica instance" -msgstr "" +msgstr "Information au sujet de cette instance de friendica" #: ../../include/nav.php:142 msgid "Conversations from your friends" @@ -6630,7 +6631,7 @@ msgstr "" #: ../../include/nav.php:143 msgid "Load Network page with no filters" -msgstr "" +msgstr "Chargement des pages du réseau sans filtre" #: ../../include/nav.php:151 msgid "Friend Requests" @@ -6839,19 +6840,19 @@ msgstr "Google+" #: ../../include/contact_selectors.php:88 msgid "pump.io" -msgstr "" +msgstr "pump.io" #: ../../include/contact_selectors.php:89 msgid "Twitter" -msgstr "" +msgstr "Twitter" #: ../../include/contact_selectors.php:90 msgid "Diaspora Connector" -msgstr "" +msgstr "Connecteur Diaspora" #: ../../include/contact_selectors.php:91 msgid "Statusnet" -msgstr "" +msgstr "Statusnet" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" @@ -7007,7 +7008,7 @@ msgstr "" #: ../../include/features.php:42 msgid "Save search terms for re-use" -msgstr "" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" #: ../../include/features.php:47 msgid "Network Tabs" @@ -7039,11 +7040,11 @@ msgstr "" #: ../../include/features.php:55 msgid "Post/Comment Tools" -msgstr "" +msgstr "outils de publication/commentaire" #: ../../include/features.php:56 msgid "Multiple Deletion" -msgstr "" +msgstr "Suppression multiple" #: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" @@ -7051,7 +7052,7 @@ msgstr "" #: ../../include/features.php:57 msgid "Edit Sent Posts" -msgstr "" +msgstr "Edité les publications envoyées" #: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" @@ -7059,19 +7060,19 @@ msgstr "" #: ../../include/features.php:58 msgid "Tagging" -msgstr "" +msgstr "Tagger" #: ../../include/features.php:58 msgid "Ability to tag existing posts" -msgstr "" +msgstr "Autorisé à tagger des publications existantes" #: ../../include/features.php:59 msgid "Post Categories" -msgstr "" +msgstr "Catégories des publications" #: ../../include/features.php:59 msgid "Add categories to your posts" -msgstr "" +msgstr "Ajouter des catégories à vos publications" #: ../../include/features.php:60 msgid "Ability to file posts under folders" @@ -7079,11 +7080,11 @@ msgstr "" #: ../../include/features.php:61 msgid "Dislike Posts" -msgstr "" +msgstr "N'aime pas" #: ../../include/features.php:61 msgid "Ability to dislike posts/comments" -msgstr "" +msgstr "Autorisé a ne pas aimer les publications/commentaires" #: ../../include/features.php:62 msgid "Star Posts" @@ -7381,7 +7382,7 @@ msgstr "retiré de la liste de suivi" #: ../../include/Contact.php:234 msgid "Drop Contact" -msgstr "" +msgstr "Supprimer le contact" #: ../../include/dba.php:45 #, php-format diff --git a/view/fr/strings.php b/view/fr/strings.php index 79c54a4bcc..79c3326c33 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -112,15 +112,15 @@ $a->strings["Posts font size"] = "Taille de texte des messages"; $a->strings["Textareas font size"] = "Taille de police des zones de texte"; $a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; $a->strings["default"] = "défaut"; -$a->strings["Background Image"] = ""; +$a->strings["Background Image"] = "Image de fond"; $a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; -$a->strings["Background Color"] = ""; +$a->strings["Background Color"] = "Couleur de fond"; $a->strings["HEX value for the background color. Don't include the #"] = ""; -$a->strings["font size"] = ""; +$a->strings["font size"] = "Taille de police"; $a->strings["base font size for your interface"] = ""; $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 theme width"] = "Largeur du thème"; -$a->strings["Set style"] = ""; +$a->strings["Set style"] = "Définir le style"; $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."; @@ -167,7 +167,7 @@ $a->strings["Status"] = "Statut"; $a->strings["Status Messages and Posts"] = "Messages d'état et publications"; $a->strings["Profile Details"] = "Détails du profil"; $a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Videos"] = ""; +$a->strings["Videos"] = "Vidéos"; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Personal Notes"] = "Notes personnelles"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; @@ -208,7 +208,7 @@ $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["Import"] = "Importer"; -$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["Profile not found."] = "Profil introuvable."; $a->strings["Contact not found."] = "Contact introuvable."; $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é."; @@ -355,9 +355,9 @@ $a->strings["If you don't have a command line version of PHP installed on server $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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Version de PHP:"; +$a->strings["PHP cli binary"] = "PHP cli binary"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "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"; @@ -419,7 +419,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; $a->strings["Never"] = "Jamais"; -$a->strings["At post arrival"] = ""; +$a->strings["At post arrival"] = "A l'arrivé d'une publication"; $a->strings["Frequently"] = "Fréquemment"; $a->strings["Hourly"] = "Toutes les heures"; $a->strings["Twice daily"] = "Deux fois par jour"; @@ -431,7 +431,7 @@ $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["Save Settings"] = ""; +$a->strings["Save Settings"] = "Sauvegarder les paramétres"; $a->strings["File upload"] = "Téléversement de fichier"; $a->strings["Policies"] = "Politiques"; $a->strings["Advanced"] = "Avancé"; @@ -439,19 +439,19 @@ $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Nom du site"; $a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["Additional Info"] = ""; +$a->strings["Additional Info"] = "Informations supplémentaires"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; $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["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - 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["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL"; $a->strings["Old style 'Share'"] = ""; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; $a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher l'entrée du menu pour les pages d'Aide dans le menu de navigation. Vous pouvez toujours y accéder en tapant /help directement."; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."; $a->strings["Single user instance"] = "Instance mono-utilisateur"; $a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."; $a->strings["Maximum image size"] = "Taille maximale des images"; @@ -477,17 +477,17 @@ $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 threaded items"] = "autoriser le suivi des éléments par fil conducteur"; $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"] = "Publications privées par défaut pour les nouveaux utilisateurs"; $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; $a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification"; $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l'acces public pour les extentions listées dans le menu apps."; $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; $a->strings["Don't embed private images in posts"] = ""; $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Allow Users to set remote_self"] = ""; +$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self"; $a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; $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."; @@ -500,7 +500,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rati $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 (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; $a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; @@ -521,7 +521,7 @@ $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["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; -$a->strings["Suppress Language"] = ""; +$a->strings["Suppress Language"] = "Supprimer un langage"; $a->strings["Suppress language information in meta information about a posting."] = ""; $a->strings["Path to item cache"] = "Chemin vers le cache des objets."; $a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; @@ -540,7 +540,7 @@ $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["Registration successful. Email send to user"] = ""; +$a->strings["Registration successful. Email send to user"] = "Souscription réussi. Mail envoyé à l'utilisateur"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utilisateur a (dé)bloqué", 1 => "%s utilisateurs ont (dé)bloqué", @@ -552,7 +552,7 @@ $a->strings["%s user deleted"] = array( $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["Add User"] = ""; +$a->strings["Add User"] = "Ajouter l'utilisateur"; $a->strings["select all"] = "tout sélectionner"; $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; $a->strings["User waiting for permanent deletion"] = ""; @@ -566,7 +566,7 @@ $a->strings["Block"] = "Bloquer"; $a->strings["Unblock"] = "Débloquer"; $a->strings["Site admin"] = "Administration du Site"; $a->strings["Account expired"] = "Compte expiré"; -$a->strings["New User"] = ""; +$a->strings["New User"] = "Nouvel utilisateur"; $a->strings["Register date"] = "Date d'inscription"; $a->strings["Last login"] = "Dernière connexion"; $a->strings["Last item"] = "Dernier élément"; @@ -574,10 +574,10 @@ $a->strings["Deleted since"] = ""; $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["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; +$a->strings["Name of the new user."] = "Nom du nouvel utilisateur."; +$a->strings["Nickname"] = "Pseudo"; +$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur."; +$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur."; $a->strings["Plugin %s disabled."] = "Extension %s désactivée."; $a->strings["Plugin %s enabled."] = "Extension %s activée."; $a->strings["Disable"] = "Désactiver"; @@ -591,7 +591,7 @@ $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["Enable Debugging"] = ""; +$a->strings["Enable Debugging"] = "Activer le déboggage"; $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"; @@ -716,8 +716,8 @@ $a->strings["Submit Request"] = "Envoyer la requête"; $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; $a->strings["View in context"] = "Voir dans le contexte"; $a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", + 0 => "%d contact édité", + 1 => "%d contacts édité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é."; @@ -771,7 +771,7 @@ $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; $a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; $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["Notification for new posts"] = ""; +$a->strings["Notification for new posts"] = "Notification des nouvelles publications"; $a->strings["Send a notification of every new post of this contact"] = ""; $a->strings["Fetch further information for feeds"] = ""; $a->strings["Suggestions"] = "Suggestions"; @@ -796,8 +796,8 @@ $a->strings["Search your contacts"] = "Rechercher dans vos contacts"; $a->strings["Update"] = "Mises-à-jour"; $a->strings["everybody"] = "tout le monde"; $a->strings["Additional features"] = "Fonctions supplémentaires"; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; +$a->strings["Display"] = "Afficher"; +$a->strings["Social Networks"] = "Réseaux sociaux"; $a->strings["Delegations"] = "Délégations"; $a->strings["Connected apps"] = "Applications connectées"; $a->strings["Export personal data"] = "Exporter"; @@ -809,12 +809,12 @@ $a->strings["Features updated"] = "Fonctionnalités mises à jour"; $a->strings["Relocate message has been send to your contacts"] = ""; $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["Wrong password."] = ""; +$a->strings["Wrong password."] = "Mauvais mot de passe."; $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["Wrong Password"] = ""; +$a->strings["Wrong Password"] = "Mauvais mot de passe"; $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."; @@ -862,7 +862,7 @@ $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage tou $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["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; $a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; $a->strings["Don't show notices"] = ""; $a->strings["Infinite scroll"] = ""; @@ -903,9 +903,9 @@ $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["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; +$a->strings["Current Password:"] = "Mot de passe actuel:"; +$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; +$a->strings["Password:"] = "Mot de passe:"; $a->strings["Basic Settings"] = "Réglages basiques"; $a->strings["Full Name:"] = "Nom complet:"; $a->strings["Email Address:"] = "Adresse courriel:"; @@ -1015,7 +1015,7 @@ $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["Save Group"] = ""; +$a->strings["Save Group"] = "Sauvegarder le groupe"; $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é."; @@ -1124,14 +1124,14 @@ $a->strings["Public photo"] = "Photo publique"; $a->strings["Share"] = "Partager"; $a->strings["View Album"] = "Voir l'album"; $a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; $a->strings["Or - did you try to upload an empty file?"] = ""; $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["No videos selected"] = ""; -$a->strings["View Video"] = ""; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; +$a->strings["No videos selected"] = "Pas de vidéo sélectionné"; +$a->strings["View Video"] = "Regarder la vidéo"; +$a->strings["Recent Videos"] = "Vidéos récente"; +$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; $a->strings["Poke/Prod"] = "Solliciter"; $a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; $a->strings["Recipient"] = "Destinataire"; @@ -1304,9 +1304,9 @@ $a->strings["Categories"] = "Catégories"; $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["User not found."] = ""; -$a->strings["There is no status with this id."] = ""; -$a->strings["There is no conversation with this id."] = ""; +$a->strings["User not found."] = "Utilisateur non trouvé"; +$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; +$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; $a->strings["view full size"] = "voir en pleine taille"; $a->strings["Starts:"] = "Débute:"; $a->strings["Finishes:"] = "Finit:"; @@ -1347,8 +1347,8 @@ $a->strings["Send PM"] = "Message privé"; $a->strings["Poke"] = "Sollicitations (pokes)"; $a->strings["%s likes this."] = "%s aime ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; $a->strings["and"] = "et"; $a->strings[", and %d other people"] = ", et %d autres personnes"; $a->strings["%s like this."] = "%s aiment ça."; @@ -1367,15 +1367,15 @@ $a->strings["Private post"] = "Message privé"; $a->strings["Logged out."] = "Déconnecté."; $a->strings["Error decoding account file"] = ""; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; +$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; +$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; $a->strings["User creation error"] = "Erreur de création d'utilisateur"; $a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; $a->strings["%d contact not imported"] = array( 0 => "%d contacts non importés", 1 => "%d contacts non importés", ); -$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; $a->strings["newer"] = "Plus récent"; $a->strings["older"] = "Plus ancien"; $a->strings["prev"] = "précédent"; @@ -1464,9 +1464,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur $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] %s shared a new post"] = ""; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; $a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; $a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; @@ -1516,11 +1516,11 @@ $a->strings["Search site content"] = "Rechercher dans le contenu du site"; $a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; $a->strings["Directory"] = "Annuaire"; $a->strings["People directory"] = "Annuaire des utilisateurs"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; $a->strings["Conversations from your friends"] = "Conversations de vos amis"; $a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; +$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; $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'"; @@ -1571,10 +1571,10 @@ $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; $a->strings["Miscellaneous"] = "Divers"; $a->strings["year"] = "an"; $a->strings["month"] = "mois"; @@ -1612,7 +1612,7 @@ $a->strings["Group Filter"] = "Filtre de groupe"; $a->strings["Enable widget to display Network posts only from selected group"] = ""; $a->strings["Network Filter"] = "Filtre de réseau"; $a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; +$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; $a->strings["Network Tabs"] = ""; $a->strings["Network Personal Tab"] = ""; $a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; @@ -1620,18 +1620,18 @@ $a->strings["Network New Tab"] = ""; $a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; $a->strings["Network Shared Links Tab"] = ""; $a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; +$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; +$a->strings["Multiple Deletion"] = "Suppression multiple"; $a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit Sent Posts"] = "Edité les publications envoyées"; $a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; +$a->strings["Tagging"] = "Tagger"; +$a->strings["Ability to tag existing posts"] = "Autorisé à tagger des publications existantes"; +$a->strings["Post Categories"] = "Catégories des publications"; +$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; $a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Dislike Posts"] = "N'aime pas"; +$a->strings["Ability to dislike posts/comments"] = "Autorisé a ne pas aimer les publications/commentaires"; $a->strings["Star Posts"] = ""; $a->strings["Ability to mark special posts with a star indicator"] = ""; $a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; @@ -1705,5 +1705,5 @@ $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["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Drop Contact"] = ""; +$a->strings["Drop Contact"] = "Supprimer le contact"; $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'"; From 4075b872bf28d5c0286c2d80cc279e73296c5083 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 16 May 2014 07:55:17 +0200 Subject: [PATCH 14/30] update to the master strings --- util/messages.po | 1085 +++++++++++++++++++++++----------------------- 1 file changed, 549 insertions(+), 536 deletions(-) diff --git a/util/messages.po b/util/messages.po index c6fdbed186..9d86b0dda4 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.2.1748\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-26 09:22+0200\n" +"POT-Creation-Date: 2014-05-16 07:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,19 +28,20 @@ msgid "Private Message" msgstr "" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:670 +#: ../../mod/content.php:727 ../../mod/settings.php:671 msgid "Edit" msgstr "" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:612 +#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../include/conversation.php:612 msgid "Select" msgstr "" -#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 #: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:671 ../../mod/group.php:171 -#: ../../mod/photos.php:1646 ../../include/conversation.php:613 +#: ../../mod/settings.php:672 ../../mod/group.php:171 +#: ../../mod/photos.php:1650 ../../include/conversation.php:613 msgid "Delete" msgstr "" @@ -133,7 +134,7 @@ msgstr "" #: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 #: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 msgid "Comment" msgstr "" @@ -141,7 +142,7 @@ msgstr "" #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 #: ../../mod/message.php:565 ../../mod/photos.php:1541 -#: ../../include/conversation.php:690 ../../include/conversation.php:1102 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "" @@ -153,7 +154,7 @@ msgstr[0] "" msgstr[1] "" #: ../../object/Item.php:369 ../../object/Item.php:382 -#: ../../mod/content.php:604 ../../include/text.php:1946 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "" @@ -166,7 +167,7 @@ msgstr "" #: ../../object/Item.php:655 ../../mod/content.php:706 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1685 +#: ../../mod/photos.php:1690 msgid "This is you" msgstr "" @@ -184,7 +185,7 @@ msgstr "" #: ../../mod/localtime.php:45 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" @@ -224,8 +225,8 @@ msgstr "" #: ../../object/Item.php:667 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 -#: ../../include/conversation.php:1119 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "" @@ -253,8 +254,8 @@ msgstr "" #: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 #: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 -#: ../../mod/settings.php:101 ../../mod/settings.php:590 -#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/profiles.php:146 #: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 @@ -266,7 +267,7 @@ msgstr "" #: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../wall_attach.php:55 ../../include/items.php:4373 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "" @@ -411,7 +412,7 @@ msgid "Last likes" msgstr "" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1940 +#: ../../include/conversation.php:246 ../../include/text.php:1953 msgid "event" msgstr "" @@ -427,7 +428,7 @@ msgstr "" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1942 ../../include/diaspora.php:1908 +#: ../../include/text.php:1955 ../../include/diaspora.php:1908 msgid "photo" msgstr "" @@ -446,7 +447,7 @@ msgstr "" #: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 #: ../../mod/photos.php:155 ../../mod/photos.php:1062 #: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 msgid "Contact Photos" msgstr "" @@ -489,7 +490,7 @@ msgstr "" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 #: ../../include/nav.php:169 msgid "Settings" msgstr "" @@ -568,7 +569,7 @@ msgid "Set colour scheme" msgstr "" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1676 +#: ../../include/text.php:1689 msgid "default" msgstr "" @@ -839,9 +840,9 @@ msgid "Public access denied." msgstr "" #: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4177 +#: ../../include/items.php:4194 msgid "Item not found." msgstr "" @@ -894,7 +895,7 @@ msgstr "" msgid "%1$s welcomes %2$s" msgstr "" -#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "" @@ -949,25 +950,25 @@ msgstr "" #: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 #: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 -#: ../../mod/settings.php:998 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4218 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4235 msgid "Yes" msgstr "" #: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" msgstr "" @@ -980,7 +981,7 @@ msgstr "" msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:265 ../../mod/admin.php:573 +#: ../../mod/register.php:265 ../../mod/admin.php:575 msgid "Registration" msgstr "" @@ -1255,13 +1256,13 @@ msgstr "" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1089 msgid "Upload photo" msgstr "" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1093 msgid "Insert web link" msgstr "" @@ -1461,11 +1462,11 @@ msgstr "" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 #: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 -#: ../../include/items.php:4221 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 +#: ../../include/items.php:4238 msgid "Cancel" msgstr "" @@ -1882,914 +1883,914 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:571 +#: ../../mod/admin.php:102 ../../mod/admin.php:573 msgid "Site" msgstr "" -#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 msgid "Users" msgstr "" -#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 -#: ../../mod/settings.php:56 +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 msgid "Themes" msgstr "" -#: ../../mod/admin.php:105 +#: ../../mod/admin.php:106 msgid "DB updates" msgstr "" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 msgid "Logs" msgstr "" -#: ../../mod/admin.php:125 ../../include/nav.php:180 +#: ../../mod/admin.php:126 ../../include/nav.php:180 msgid "Admin" msgstr "" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:127 msgid "Plugin Features" msgstr "" -#: ../../mod/admin.php:128 +#: ../../mod/admin.php:129 msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:187 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "" -#: ../../mod/admin.php:188 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:856 msgid "Soapbox Account" msgstr "" -#: ../../mod/admin.php:189 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:857 msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/admin.php:190 ../../mod/admin.php:856 +#: ../../mod/admin.php:191 ../../mod/admin.php:858 msgid "Automatic Friend Account" msgstr "" -#: ../../mod/admin.php:191 +#: ../../mod/admin.php:192 msgid "Blog Account" msgstr "" -#: ../../mod/admin.php:192 +#: ../../mod/admin.php:193 msgid "Private Forum" msgstr "" -#: ../../mod/admin.php:211 +#: ../../mod/admin.php:212 msgid "Message queues" msgstr "" -#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 -#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 -#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 msgid "Administration" msgstr "" -#: ../../mod/admin.php:217 +#: ../../mod/admin.php:218 msgid "Summary" msgstr "" -#: ../../mod/admin.php:219 +#: ../../mod/admin.php:220 msgid "Registered users" msgstr "" -#: ../../mod/admin.php:221 +#: ../../mod/admin.php:222 msgid "Pending registrations" msgstr "" -#: ../../mod/admin.php:222 +#: ../../mod/admin.php:223 msgid "Version" msgstr "" -#: ../../mod/admin.php:224 +#: ../../mod/admin.php:225 msgid "Active plugins" msgstr "" -#: ../../mod/admin.php:247 +#: ../../mod/admin.php:248 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:483 +#: ../../mod/admin.php:485 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:512 ../../mod/settings.php:822 +#: ../../mod/admin.php:514 ../../mod/settings.php:823 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/admin.php:529 ../../mod/contacts.php:408 +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 msgid "Never" msgstr "" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:532 msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:541 msgid "Multi user instance" msgstr "" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:559 msgid "Closed" msgstr "" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:560 msgid "Requires approval" msgstr "" -#: ../../mod/admin.php:559 +#: ../../mod/admin.php:561 msgid "Open" msgstr "" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Force all links to use SSL" msgstr "" -#: ../../mod/admin.php:565 +#: ../../mod/admin.php:567 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 -#: ../../mod/admin.php:1333 ../../mod/settings.php:608 -#: ../../mod/settings.php:718 ../../mod/settings.php:792 -#: ../../mod/settings.php:871 ../../mod/settings.php:1101 +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 msgid "Save Settings" msgstr "" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:576 msgid "File upload" msgstr "" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:577 msgid "Policies" msgstr "" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:578 msgid "Advanced" msgstr "" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:579 msgid "Performance" msgstr "" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:580 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:583 msgid "Site name" msgstr "" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:584 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:586 msgid "System language" msgstr "" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "System theme" msgstr "" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "SSL link policy" msgstr "" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "Hide help entry from navigation menu" msgstr "" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Single user instance" msgstr "" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 msgid "Maximum image length" msgstr "" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 msgid "JPEG image quality" msgstr "" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:597 msgid "Register policy" msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "Maximum Daily Registrations" msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Register text" msgstr "" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 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:600 +#: ../../mod/admin.php:602 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:602 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:601 +#: ../../mod/admin.php:603 msgid "Block public" msgstr "" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:603 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:602 +#: ../../mod/admin.php:604 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Global directory update URL" msgstr "" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 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:604 +#: ../../mod/admin.php:606 msgid "Allow threaded items" msgstr "" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Allow infinite level threading for items on this site." msgstr "" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "Private posts by default for new users" msgstr "" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "Don't include post content in email notifications" msgstr "" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Block multiple registrations" msgstr "" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support" msgstr "" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "Fullname check" msgstr "" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "UTF-8 Regular expressions" msgstr "" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "Show Community Page" msgstr "" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "Enable OStatus support" msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Enable Diaspora support" msgstr "" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "Only allow Friendica contacts" msgstr "" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 msgid "Verify SSL" msgstr "" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 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:620 +#: ../../mod/admin.php:622 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:623 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 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:624 +#: ../../mod/admin.php:626 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "Use MySQL full text engine" msgstr "" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Path to item cache" msgstr "" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Cache duration in seconds" msgstr "" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day)." msgstr "" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Path for lock file" msgstr "" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Temp path" msgstr "" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Base path to installation" msgstr "" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "New base url" msgstr "" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:694 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:695 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:696 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:695 +#: ../../mod/admin.php:697 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "" -#: ../../mod/admin.php:751 +#: ../../mod/admin.php:753 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:758 +#: ../../mod/admin.php:760 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:799 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:902 msgid "Add User" msgstr "" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:903 msgid "select all" msgstr "" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:904 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:905 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:906 msgid "Request date" msgstr "" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:930 ../../mod/crepair.php:150 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/crepair.php:150 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Name" msgstr "" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "" -#: ../../mod/admin.php:905 +#: ../../mod/admin.php:907 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:906 ../../mod/notifications.php:161 +#: ../../mod/admin.php:908 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "" -#: ../../mod/admin.php:907 +#: ../../mod/admin.php:909 msgid "Deny" msgstr "" -#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "" -#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:913 msgid "Site admin" msgstr "" -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:914 msgid "Account expired" msgstr "" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:917 msgid "New User" msgstr "" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Register date" msgstr "" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last login" msgstr "" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last item" msgstr "" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:918 msgid "Deleted since" msgstr "" -#: ../../mod/admin.php:917 ../../mod/settings.php:35 +#: ../../mod/admin.php:919 ../../mod/settings.php:36 msgid "Account" msgstr "" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:921 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:920 +#: ../../mod/admin.php:922 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:930 +#: ../../mod/admin.php:932 msgid "Name of the new user." msgstr "" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname" msgstr "" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname of the new user." msgstr "" -#: ../../mod/admin.php:932 +#: ../../mod/admin.php:934 msgid "Email address of the new user." msgstr "" -#: ../../mod/admin.php:965 +#: ../../mod/admin.php:967 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:969 +#: ../../mod/admin.php:971 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:979 ../../mod/admin.php:1182 +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 msgid "Disable" msgstr "" -#: ../../mod/admin.php:981 ../../mod/admin.php:1184 +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 msgid "Enable" msgstr "" -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "" -#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1142 +#: ../../mod/admin.php:1155 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1204 +#: ../../mod/admin.php:1217 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1263 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1251 +#: ../../mod/admin.php:1264 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1278 +#: ../../mod/admin.php:1291 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1347 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1353 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:1342 +#: ../../mod/admin.php:1355 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 msgid "Update now" msgstr "" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1405 msgid "Close" msgstr "" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1411 msgid "FTP Host" msgstr "" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1412 msgid "FTP Path" msgstr "" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1413 msgid "FTP User" msgstr "" -#: ../../mod/admin.php:1401 +#: ../../mod/admin.php:1414 msgid "FTP Password" msgstr "" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 -#: ../../include/text.php:939 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" msgstr "" @@ -2820,75 +2821,75 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 msgid "upload photo" msgstr "" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 msgid "Attach file" msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 msgid "attach file" msgstr "" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 msgid "web link" msgstr "" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 msgid "Insert video link" msgstr "" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 msgid "video link" msgstr "" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 msgid "Insert audio link" msgstr "" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 msgid "audio link" msgstr "" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 msgid "Set your location" msgstr "" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 msgid "set location" msgstr "" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 msgid "Clear browser location" msgstr "" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 msgid "clear location" msgstr "" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 msgid "Permission settings" msgstr "" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 msgid "CC: email addresses" msgstr "" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 msgid "Public post" msgstr "" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 msgid "Set title" msgstr "" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -3059,7 +3060,7 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 msgid "Save" msgstr "" @@ -3192,7 +3193,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 msgid "[Name Withheld]" msgstr "" @@ -3244,7 +3245,7 @@ msgstr "" msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "" @@ -3582,608 +3583,616 @@ msgstr "" msgid "Search your contacts" msgstr "" -#: ../../mod/contacts.php:699 ../../mod/settings.php:131 -#: ../../mod/settings.php:634 +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 msgid "Update" msgstr "" -#: ../../mod/settings.php:28 ../../mod/photos.php:80 +#: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" msgstr "" -#: ../../mod/settings.php:40 +#: ../../mod/settings.php:41 msgid "Additional features" msgstr "" -#: ../../mod/settings.php:45 +#: ../../mod/settings.php:46 msgid "Display" msgstr "" -#: ../../mod/settings.php:51 ../../mod/settings.php:774 +#: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" msgstr "" -#: ../../mod/settings.php:61 ../../include/nav.php:167 +#: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" msgstr "" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:67 msgid "Connected apps" msgstr "" -#: ../../mod/settings.php:71 ../../mod/uexport.php:85 +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:77 msgid "Remove account" msgstr "" -#: ../../mod/settings.php:128 +#: ../../mod/settings.php:129 msgid "Missing some important data!" msgstr "" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." msgstr "" -#: ../../mod/settings.php:242 +#: ../../mod/settings.php:243 msgid "Email settings updated." msgstr "" -#: ../../mod/settings.php:257 +#: ../../mod/settings.php:258 msgid "Features updated" msgstr "" -#: ../../mod/settings.php:318 +#: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" msgstr "" -#: ../../mod/settings.php:332 +#: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/settings.php:337 +#: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:346 msgid "Wrong password." msgstr "" -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:357 msgid "Password changed." msgstr "" -#: ../../mod/settings.php:358 +#: ../../mod/settings.php:359 msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/settings.php:423 +#: ../../mod/settings.php:424 msgid " Please use a shorter name." msgstr "" -#: ../../mod/settings.php:425 +#: ../../mod/settings.php:426 msgid " Name too short." msgstr "" -#: ../../mod/settings.php:434 +#: ../../mod/settings.php:435 msgid "Wrong Password" msgstr "" -#: ../../mod/settings.php:439 +#: ../../mod/settings.php:440 msgid " Not valid email." msgstr "" -#: ../../mod/settings.php:445 +#: ../../mod/settings.php:446 msgid " Cannot change to that email." msgstr "" -#: ../../mod/settings.php:500 +#: ../../mod/settings.php:501 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: ../../mod/settings.php:504 +#: ../../mod/settings.php:505 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:534 +#: ../../mod/settings.php:535 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 msgid "Add application" msgstr "" -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:669 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:673 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:674 msgid "No name" msgstr "" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:675 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:687 msgid "No Plugin settings configured" msgstr "" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Plugin Settings" msgstr "" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "Off" msgstr "" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "On" msgstr "" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:717 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" msgstr "" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" msgstr "" -#: ../../mod/settings.php:731 +#: ../../mod/settings.php:732 msgid "StatusNet" msgstr "" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:768 msgid "Email access is disabled on this site." msgstr "" -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:780 msgid "Email/Mailbox Setup" msgstr "" -#: ../../mod/settings.php:780 +#: ../../mod/settings.php:781 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: ../../mod/settings.php:781 +#: ../../mod/settings.php:782 msgid "Last successful email check:" msgstr "" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:784 msgid "IMAP server name:" msgstr "" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:785 msgid "IMAP port:" msgstr "" -#: ../../mod/settings.php:785 +#: ../../mod/settings.php:786 msgid "Security:" msgstr "" -#: ../../mod/settings.php:785 ../../mod/settings.php:790 +#: ../../mod/settings.php:786 ../../mod/settings.php:791 msgid "None" msgstr "" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:787 msgid "Email login name:" msgstr "" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:788 msgid "Email password:" msgstr "" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:789 msgid "Reply-to address:" msgstr "" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" msgstr "" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Action after import:" msgstr "" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Mark as seen" msgstr "" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Move to folder" msgstr "" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:792 msgid "Move to folder:" msgstr "" -#: ../../mod/settings.php:869 +#: ../../mod/settings.php:870 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:875 ../../mod/settings.php:889 +#: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:877 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:879 msgid "Number of items to display per page:" msgstr "" -#: ../../mod/settings.php:878 ../../mod/settings.php:879 +#: ../../mod/settings.php:879 ../../mod/settings.php:880 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:880 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:880 +#: ../../mod/settings.php:881 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:881 +#: ../../mod/settings.php:882 msgid "Don't show notices" msgstr "" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:883 msgid "Infinite scroll" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "" + +#: ../../mod/settings.php:962 msgid "Normal Account Page" msgstr "" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:963 msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:966 msgid "Soapbox Page" msgstr "" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:967 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Forum/Celebrity Account" msgstr "" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:974 msgid "Automatic Friend Page" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:978 msgid "Private Forum [Experimental]" msgstr "" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Private forum - approved members only" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "OpenID:" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1001 msgid "Publish your default profile in your local site directory?" msgstr "" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1007 msgid "Publish your default profile in the global social directory?" msgstr "" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1015 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 msgid "Hide your profile details from unknown viewers?" msgstr "" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Allow friends to post to your profile page?" msgstr "" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" msgstr "" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1036 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1042 msgid "Permit unknown people to send you private mail?" msgstr "" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1050 msgid "Profile is not published." msgstr "" -#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" msgstr "" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1058 msgid "Your Identity Address is" msgstr "" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/settings.php:1067 +#: ../../mod/settings.php:1070 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1071 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1072 msgid "Expire posts:" msgstr "" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1073 msgid "Expire personal notes:" msgstr "" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1074 msgid "Expire starred posts:" msgstr "" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1075 msgid "Expire photos:" msgstr "" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1076 msgid "Only expire posts by others:" msgstr "" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1102 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1110 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1113 msgid "Current Password:" msgstr "" -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 msgid "Your current password to confirm the changes" msgstr "" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1114 msgid "Password:" msgstr "" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1118 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1123 +#: ../../mod/settings.php:1126 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1128 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 msgid "(to prevent spam abuse)" msgstr "" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1129 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 #: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "" -#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 #: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1142 msgid "Default Public Post" msgstr "" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" msgstr "" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1158 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1161 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1162 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1163 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1164 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1165 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1166 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:1165 +#: ../../mod/settings.php:1168 msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:1166 +#: ../../mod/settings.php:1169 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" msgstr "" @@ -4730,7 +4739,7 @@ msgstr "" msgid "No contacts." msgstr "" -#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 msgid "View Contacts" msgstr "" @@ -4742,7 +4751,7 @@ msgstr "" msgid "No matches" msgstr "" -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 msgid "Upload New Photos" msgstr "" @@ -4850,7 +4859,7 @@ msgstr "" msgid "Show Oldest First" msgstr "" -#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 msgid "View Photo" msgstr "" @@ -4918,33 +4927,32 @@ msgstr "" msgid "Public photo" msgstr "" -#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 msgid "Share" msgstr "" -#: ../../mod/photos.php:1799 ../../mod/videos.php:308 +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1808 +#: ../../mod/photos.php:1813 msgid "Recent Photos" msgstr "" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Or - did you try to upload an empty file?" msgstr "" -#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 +#: ../../mod/wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "" #: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "" @@ -4952,7 +4960,7 @@ msgstr "" msgid "No videos selected" msgstr "" -#: ../../mod/videos.php:301 ../../include/text.php:1387 +#: ../../mod/videos.php:301 ../../include/text.php:1400 msgid "View Video" msgstr "" @@ -5141,8 +5149,8 @@ msgstr "" msgid "Edit event" msgstr "" -#: ../../mod/events.php:335 ../../include/text.php:1620 -#: ../../include/text.php:1631 +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 msgid "link to source" msgstr "" @@ -5246,17 +5254,17 @@ msgstr "" msgid "System down for maintenance" msgstr "" -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 msgid "Remove My Account" msgstr "" -#: ../../mod/removeme.php:46 +#: ../../mod/removeme.php:47 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "" -#: ../../mod/removeme.php:47 +#: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" msgstr "" @@ -5692,15 +5700,15 @@ msgstr "" msgid "Categories" msgstr "" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 +#: ../../include/plugin.php:455 ../../include/plugin.php:457 msgid "Click here to upgrade." msgstr "" -#: ../../include/plugin.php:462 +#: ../../include/plugin.php:463 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/plugin.php:467 +#: ../../include/plugin.php:468 msgid "This action is not available under your subscription plan." msgstr "" @@ -5729,6 +5737,11 @@ msgstr "" msgid "Finishes:" msgstr "" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + #: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "" @@ -5826,7 +5839,7 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:211 ../../include/text.php:990 +#: ../../include/conversation.php:211 ../../include/text.php:1003 msgid "poked" msgstr "" @@ -5945,23 +5958,28 @@ msgstr "" msgid "Delete item(s)?" msgstr "" -#: ../../include/conversation.php:1048 +#: ../../include/conversation.php:1049 msgid "Post to Email" msgstr "" -#: ../../include/conversation.php:1104 +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1109 msgid "permissions" msgstr "" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1133 msgid "Post to Groups" msgstr "" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1134 msgid "Post to Contacts" msgstr "" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Private post" msgstr "" @@ -6005,262 +6023,262 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" -#: ../../include/text.php:304 +#: ../../include/text.php:296 msgid "newer" msgstr "" -#: ../../include/text.php:306 +#: ../../include/text.php:298 msgid "older" msgstr "" -#: ../../include/text.php:311 +#: ../../include/text.php:303 msgid "prev" msgstr "" -#: ../../include/text.php:313 +#: ../../include/text.php:305 msgid "first" msgstr "" -#: ../../include/text.php:345 +#: ../../include/text.php:337 msgid "last" msgstr "" -#: ../../include/text.php:348 +#: ../../include/text.php:340 msgid "next" msgstr "" -#: ../../include/text.php:840 +#: ../../include/text.php:853 msgid "No contacts" msgstr "" -#: ../../include/text.php:849 +#: ../../include/text.php:862 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:990 +#: ../../include/text.php:1003 msgid "poke" msgstr "" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "ping" msgstr "" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "pinged" msgstr "" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prod" msgstr "" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prodded" msgstr "" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slap" msgstr "" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slapped" msgstr "" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "finger" msgstr "" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "fingered" msgstr "" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuff" msgstr "" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1009 +#: ../../include/text.php:1022 msgid "happy" msgstr "" -#: ../../include/text.php:1010 +#: ../../include/text.php:1023 msgid "sad" msgstr "" -#: ../../include/text.php:1011 +#: ../../include/text.php:1024 msgid "mellow" msgstr "" -#: ../../include/text.php:1012 +#: ../../include/text.php:1025 msgid "tired" msgstr "" -#: ../../include/text.php:1013 +#: ../../include/text.php:1026 msgid "perky" msgstr "" -#: ../../include/text.php:1014 +#: ../../include/text.php:1027 msgid "angry" msgstr "" -#: ../../include/text.php:1015 +#: ../../include/text.php:1028 msgid "stupified" msgstr "" -#: ../../include/text.php:1016 +#: ../../include/text.php:1029 msgid "puzzled" msgstr "" -#: ../../include/text.php:1017 +#: ../../include/text.php:1030 msgid "interested" msgstr "" -#: ../../include/text.php:1018 +#: ../../include/text.php:1031 msgid "bitter" msgstr "" -#: ../../include/text.php:1019 +#: ../../include/text.php:1032 msgid "cheerful" msgstr "" -#: ../../include/text.php:1020 +#: ../../include/text.php:1033 msgid "alive" msgstr "" -#: ../../include/text.php:1021 +#: ../../include/text.php:1034 msgid "annoyed" msgstr "" -#: ../../include/text.php:1022 +#: ../../include/text.php:1035 msgid "anxious" msgstr "" -#: ../../include/text.php:1023 +#: ../../include/text.php:1036 msgid "cranky" msgstr "" -#: ../../include/text.php:1024 +#: ../../include/text.php:1037 msgid "disturbed" msgstr "" -#: ../../include/text.php:1025 +#: ../../include/text.php:1038 msgid "frustrated" msgstr "" -#: ../../include/text.php:1026 +#: ../../include/text.php:1039 msgid "motivated" msgstr "" -#: ../../include/text.php:1027 +#: ../../include/text.php:1040 msgid "relaxed" msgstr "" -#: ../../include/text.php:1028 +#: ../../include/text.php:1041 msgid "surprised" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Monday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Tuesday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Wednesday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Thursday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Friday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Saturday" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Sunday" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "January" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "February" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "March" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "April" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "May" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "June" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "July" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "August" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "September" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "October" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "November" msgstr "" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "December" msgstr "" -#: ../../include/text.php:1419 +#: ../../include/text.php:1432 msgid "bytes" msgstr "" -#: ../../include/text.php:1443 ../../include/text.php:1455 +#: ../../include/text.php:1456 ../../include/text.php:1468 msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1688 +#: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1944 +#: ../../include/text.php:1957 msgid "activity" msgstr "" -#: ../../include/text.php:1947 +#: ../../include/text.php:1960 msgid "post" msgstr "" -#: ../../include/text.php:2115 +#: ../../include/text.php:2128 msgid "Item filed" msgstr "" @@ -6743,27 +6761,27 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:918 +#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 +#: ../../include/bbcode.php:922 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:354 +#: ../../include/bbcode.php:357 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: ../../include/bbcode.php:453 +#: ../../include/bbcode.php:457 msgid "" msgstr "" -#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 +#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 msgid "$1 wrote:" msgstr "" -#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 +#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 msgid "Encrypted content" msgstr "" @@ -6916,12 +6934,12 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1964 +#: ../../include/datetime.php:472 ../../include/items.php:1981 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/datetime.php:473 ../../include/items.php:1965 +#: ../../include/datetime.php:473 ../../include/items.php:1982 #, php-format msgid "Happy Birthday %s" msgstr "" @@ -7095,19 +7113,19 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " msgstr "" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "You have a new follower at " msgstr "" -#: ../../include/items.php:4216 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/items.php:4443 +#: ../../include/items.php:4460 msgid "Archives" msgstr "" @@ -7372,8 +7390,3 @@ msgstr "" #: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "" - -#: ../../include/dba.php:45 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" From b072b8f2840769e7ec6a64a17f9a1174e65bc800 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 16 May 2014 10:55:29 +0200 Subject: [PATCH 15/30] Update bbcode.php Fix translatable string. --- include/bbcode.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 686bd41b8e..33c0721b08 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -454,10 +454,9 @@ function bb_ShareAttributesForExport($match) { $userid = GetProfileUsername($profile,$author); $headline = '
'; - $headline .= sprintf(t(''. - html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'). - '%s%s:'), $link, $userid, $posted); - $headline .= "
"; + $headline .= ''.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + $headline .= sprintf(t('%2$s %3$s'), $link, $userid, $posted); + $headline .= ":"; $text = trim($match[1]); From ca5da9f9afbd20c4485867e01bfb9916d1ece618 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Fri, 16 May 2014 11:05:16 +0200 Subject: [PATCH 16/30] update master strings --- util/messages.po | 7546 +++++++++++++++++++++++----------------------- 1 file changed, 3748 insertions(+), 3798 deletions(-) diff --git a/util/messages.po b/util/messages.po index 9d86b0dda4..fc66e927a5 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.2.1748\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 07:51+0200\n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,26 +22,26 @@ msgstr "" msgid "This entry was edited" msgstr "" -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1355 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:671 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 #: ../../include/conversation.php:612 msgid "Select" msgstr "" -#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:672 ../../mod/group.php:171 -#: ../../mod/photos.php:1650 ../../include/conversation.php:613 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "" @@ -69,8 +69,8 @@ msgstr "" msgid "add tag" msgstr "" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1538 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "" @@ -78,8 +78,8 @@ msgstr "" msgid "like" msgstr "" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1539 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "" @@ -132,16 +132,16 @@ msgstr "" msgid "%s from %s" msgstr "" -#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 -#: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "" -#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 #: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "" @@ -160,34 +160,31 @@ msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "" -#: ../../object/Item.php:655 ../../mod/content.php:706 -#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1690 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "" -#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "" @@ -224,8 +221,8 @@ msgid "Video" msgstr "" #: ../../object/Item.php:667 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 #: ../../include/conversation.php:1124 msgid "Preview" msgstr "" @@ -242,31 +239,32 @@ msgstr "" msgid "Page not found." msgstr "" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "" -#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 -#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 #: ../../mod/settings.php:102 ../../mod/settings.php:591 -#: ../../mod/settings.php:596 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 -#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 #: ../../include/items.php:4390 msgid "Permission denied." msgstr "" @@ -275,681 +273,196 @@ msgstr "" msgid "toggle mobile" msgstr "" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:145 -msgid "Home" +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:145 -msgid "Your posts and conversations" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." msgstr "" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "" - -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "" - -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "" - -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:49 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 -#: ../../include/nav.php:173 -msgid "Contacts" -msgstr "" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "" - -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "" - -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "" - -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1953 -msgid "event" -msgstr "" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1908 -msgid "status" -msgstr "" - -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1955 ../../include/diaspora.php:1908 -msgid "photo" -msgstr "" - -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s likes %2$s's %3$s" +msgid "Suggest a friend for %s" msgstr "" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." msgstr "" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1062 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 -msgid "Contact Photos" +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 -#: ../../mod/photos.php:729 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -msgid "Profile Photos" +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." msgstr "" -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." msgstr "" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." msgstr "" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." msgstr "" -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." msgstr "" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." msgstr "" -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 -#: ../../include/nav.php:169 -msgid "Settings" +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" msgstr "" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." msgstr "" -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." msgstr "" -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." msgstr "" -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." msgstr "" -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." msgstr "" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." msgstr "" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1689 -msgid "default" -msgstr "" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/dfrn_request.php:659 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." +"Incorrect identity currently logged in. Please login to this profile." msgstr "" -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" msgstr "" -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "" - -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "" - -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: ../../view/theme/vier/config.php:50 -msgid "Set style" -msgstr "" - -#: ../../boot.php:692 -msgid "Delete this item?" -msgstr "" - -#: ../../boot.php:695 -msgid "show fewer" -msgstr "" - -#: ../../boot.php:1023 +#: ../../mod/dfrn_request.php:673 #, php-format -msgid "Update %s failed. See error logs." +msgid "Welcome home %s." msgstr "" -#: ../../boot.php:1025 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Update Error at %s" +msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: ../../boot.php:1135 -msgid "Create a New Account" +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" msgstr "" -#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 -msgid "Register" +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" msgstr "" -#: ../../boot.php:1160 ../../include/nav.php:73 -msgid "Logout" -msgstr "" - -#: ../../boot.php:1161 ../../include/nav.php:91 -msgid "Login" -msgstr "" - -#: ../../boot.php:1163 -msgid "Nickname or Email address: " -msgstr "" - -#: ../../boot.php:1164 -msgid "Password: " -msgstr "" - -#: ../../boot.php:1165 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1168 -msgid "Or login using OpenID: " -msgstr "" - -#: ../../boot.php:1174 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1175 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "" - -#: ../../boot.php:1177 -msgid "Website Terms of Service" -msgstr "" - -#: ../../boot.php:1178 -msgid "terms of service" -msgstr "" - -#: ../../boot.php:1180 -msgid "Website Privacy Policy" -msgstr "" - -#: ../../boot.php:1181 -msgid "privacy policy" -msgstr "" - -#: ../../boot.php:1314 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1353 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "" - -#: ../../boot.php:1393 ../../boot.php:1497 -msgid "Edit profile" -msgstr "" - -#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "" - -#: ../../boot.php:1459 -msgid "Message" -msgstr "" - -#: ../../boot.php:1467 ../../include/nav.php:171 -msgid "Profiles" -msgstr "" - -#: ../../boot.php:1467 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 -msgid "Change profile photo" -msgstr "" - -#: ../../boot.php:1474 ../../mod/profiles.php:731 -msgid "Create New Profile" -msgstr "" - -#: ../../boot.php:1484 ../../mod/profiles.php:742 -msgid "Profile Image" -msgstr "" - -#: ../../boot.php:1487 ../../mod/profiles.php:744 -msgid "visible to everybody" -msgstr "" - -#: ../../boot.php:1488 ../../mod/profiles.php:745 -msgid "Edit visibility" -msgstr "" - -#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 -msgid "Location:" -msgstr "" - -#: ../../boot.php:1515 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "" - -#: ../../boot.php:1518 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "" - -#: ../../boot.php:1520 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "" - -#: ../../boot.php:1596 ../../boot.php:1682 -msgid "g A l F d" -msgstr "" - -#: ../../boot.php:1597 ../../boot.php:1683 -msgid "F d" -msgstr "" - -#: ../../boot.php:1642 ../../boot.php:1723 -msgid "[today]" -msgstr "" - -#: ../../boot.php:1654 -msgid "Birthday Reminders" -msgstr "" - -#: ../../boot.php:1655 -msgid "Birthdays this week:" -msgstr "" - -#: ../../boot.php:1716 -msgid "[No description]" -msgstr "" - -#: ../../boot.php:1734 -msgid "Event Reminders" -msgstr "" - -#: ../../boot.php:1735 -msgid "Events this week:" -msgstr "" - -#: ../../boot.php:1972 ../../include/nav.php:76 -msgid "Status" -msgstr "" - -#: ../../boot.php:1975 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../boot.php:1982 -msgid "Profile Details" -msgstr "" - -#: ../../boot.php:1989 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "" - -#: ../../boot.php:1993 ../../boot.php:1996 -msgid "Videos" -msgstr "" - -#: ../../boot.php:2006 -msgid "Events and Calendar" -msgstr "" - -#: ../../boot.php:2010 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "" - -#: ../../boot.php:2013 -msgid "Only You Can See This" -msgstr "" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 -#: ../../mod/videos.php:115 +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 msgid "Public access denied." msgstr "" -#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4194 -msgid "Item not found." -msgstr "" - -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "" - -#: ../../mod/display.php:263 -msgid "Item has been removed." -msgstr "" - -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" -msgstr "" - -#: ../../mod/friendica.php:59 -msgid "running at web location" -msgstr "" - -#: ../../mod/friendica.php:61 +#: ../../mod/dfrn_request.php:811 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" msgstr "" -#: ../../mod/friendica.php:63 -msgid "Bug reports and issues: please visit" +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" msgstr "" -#: ../../mod/friendica.php:64 +#: ../../mod/dfrn_request.php:829 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +"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/friendica.php:78 -msgid "Installed plugins/addons/apps:" +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" msgstr "" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "" + +#: ../../mod/dfrn_request.php:835 #, php-format -msgid "%1$s welcomes %2$s" +msgid "Does %s know you?" msgstr "" -#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: ../../mod/register.php:104 -msgid "Failed to send email message. Here is the message that failed." -msgstr "" - -#: ../../mod/register.php:109 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:149 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../mod/register.php:158 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:196 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:224 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: ../../mod/register.php:225 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: ../../mod/register.php:226 -msgid "Your OpenID (optional): " -msgstr "" - -#: ../../mod/register.php:240 -msgid "Include your profile in member directory?" -msgstr "" - -#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 #: ../../mod/settings.php:1001 ../../mod/settings.php:1007 #: ../../mod/settings.php:1015 ../../mod/settings.php:1019 #: ../../mod/settings.php:1024 ../../mod/settings.php:1030 @@ -957,12 +470,12 @@ msgstr "" #: ../../mod/settings.php:1072 ../../mod/settings.php:1073 #: ../../mod/settings.php:1074 ../../mod/settings.php:1075 #: ../../mod/settings.php:1076 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4235 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 msgid "Yes" msgstr "" -#: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 #: ../../mod/settings.php:1007 ../../mod/settings.php:1015 #: ../../mod/settings.php:1019 ../../mod/settings.php:1024 #: ../../mod/settings.php:1030 ../../mod/settings.php:1036 @@ -973,910 +486,336 @@ msgstr "" msgid "No" msgstr "" -#: ../../mod/register.php:261 -msgid "Membership on this site is by invitation only." +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" msgstr "" -#: ../../mod/register.php:262 -msgid "Your invitation ID: " +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../mod/register.php:265 ../../mod/admin.php:575 -msgid "Registration" +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith): " +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" msgstr "" -#: ../../mod/register.php:274 -msgid "Your Email Address: " -msgstr "" - -#: ../../mod/register.php:275 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: ../../mod/register.php:276 -msgid "Choose a nickname: " -msgstr "" - -#: ../../mod/register.php:285 ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:587 -msgid "Profile not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "" - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "" - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "" - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "" - -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:66 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "" - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/wallmessage.php:143 +#: ../../mod/dfrn_request.php:843 #, 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." +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." msgstr "" -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" msgstr "" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" msgstr "" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "" - -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1089 -msgid "Upload photo" -msgstr "" - -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1093 -msgid "Insert web link" -msgstr "" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your 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 "" - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make " -"friends than people who do not." -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand " -"new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with " -"each group privately on your Network page." -msgstr "" - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to " -"people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 -#: ../../include/items.php:4238 +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 msgid "Cancel" msgstr "" -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" msgstr "" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." msgstr "" -#: ../../mod/network.php:136 -msgid "Search Results For:" +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 -msgid "Remove term" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" msgstr "" -#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/network.php:189 ../../include/group.php:275 -msgid "add" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" msgstr "" -#: ../../mod/network.php:350 -msgid "Commented Order" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" msgstr "" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" +#: ../../mod/notifications.php:78 +msgid "System" msgstr "" -#: ../../mod/network.php:356 -msgid "Posted Order" +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" msgstr "" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "" - -#: ../../mod/network.php:365 ../../mod/notifications.php:88 +#: ../../mod/notifications.php:88 ../../mod/network.php:365 msgid "Personal" msgstr "" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" msgstr "" -#: ../../mod/network.php:374 -msgid "New" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" msgstr "" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" msgstr "" -#: ../../mod/network.php:383 -msgid "Shared Links" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" msgstr "" -#: ../../mod/network.php:386 -msgid "Interesting Links" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" msgstr "" -#: ../../mod/network.php:392 -msgid "Starred" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " msgstr "" -#: ../../mod/network.php:395 -msgid "Favourite Posts" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" msgstr "" -#: ../../mod/network.php:457 +#: ../../mod/notifications.php:152 #, 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] "" -msgstr[1] "" - -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." +msgid "suggested by %s" msgstr "" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" msgstr "" -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" msgstr "" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" msgstr "" -#: ../../mod/network.php:548 -msgid "Contact: " +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" msgstr "" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " msgstr "" -#: ../../mod/network.php:555 -msgid "Invalid contact." +#: ../../mod/notifications.php:181 +msgid "yes" msgstr "" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" +#: ../../mod/notifications.php:181 +msgid "no" msgstr "" -#: ../../mod/install.php:123 -msgid "Could not connect to database." +#: ../../mod/notifications.php:188 +msgid "Approve as: " msgstr "" -#: ../../mod/install.php:127 -msgid "Could not create table." +#: ../../mod/notifications.php:189 +msgid "Friend" msgstr "" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." +#: ../../mod/notifications.php:190 +msgid "Sharer" msgstr "" -#: ../../mod/install.php:138 +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "" + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "" + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." +"Account not found and OpenID registration is not permitted on this site." msgstr "" -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:521 -msgid "Please see the file \"INSTALL.txt\"." +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." msgstr "" -#: ../../mod/install.php:203 -msgid "System check" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" msgstr "" -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" msgstr "" -#: ../../mod/install.php:208 -msgid "Check again" +#: ../../mod/babel.php:31 +msgid "Source input: " msgstr "" -#: ../../mod/install.php:227 -msgid "Database connection" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " msgstr "" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." +#: ../../mod/babel.php:39 +msgid "bb2html: " msgstr "" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " msgstr "" -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/babel.php:47 +msgid "bb2md: " msgstr "" -#: ../../mod/install.php:234 -msgid "Database Server Name" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " msgstr "" -#: ../../mod/install.php:235 -msgid "Database Login Name" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " msgstr "" -#: ../../mod/install.php:236 -msgid "Database Login Password" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " msgstr "" -#: ../../mod/install.php:237 -msgid "Database Name" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " msgstr "" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../mod/install.php:508 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/install.php:519 -msgid "

What next

" -msgstr "" - -#: ../../mod/install.php:520 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " msgstr "" #: ../../mod/admin.php:55 @@ -1920,6 +859,12 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 +msgid "Item not found." +msgstr "" + #: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "" @@ -2045,6 +990,10 @@ msgstr "" msgid "Save Settings" msgstr "" +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "" + #: ../../mod/admin.php:576 msgid "File upload" msgstr "" @@ -2545,6 +1494,11 @@ msgstr "" msgid "Attempt to execute this update step automatically" msgstr "" +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "" + #: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "" @@ -2599,8 +1553,8 @@ msgid "Request date" msgstr "" #: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 -#: ../../mod/admin.php:932 ../../mod/crepair.php:150 -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 msgid "Name" msgstr "" @@ -2614,11 +1568,6 @@ msgstr "" msgid "No registrations." msgstr "" -#: ../../mod/admin.php:908 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "" - #: ../../mod/admin.php:909 msgid "Deny" msgstr "" @@ -2715,6 +1664,13 @@ msgstr "" msgid "Toggle" msgstr "" +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "" + #: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "" @@ -2789,28 +1745,130 @@ msgstr "" msgid "FTP Password" msgstr "" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 -#: ../../include/text.php:952 ../../include/nav.php:118 -msgid "Search" +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" msgstr "" -#: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:89 -msgid "No results." +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." msgstr "" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." msgstr "" -#: ../../mod/share.php:44 -msgid "link" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." msgstr "" -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "" + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "" + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "" + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:378 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "Unknown sender - %s" +msgstr "" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "" + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/message.php:552 +msgid "Send Reply" msgstr "" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 @@ -2893,163 +1951,195 @@ msgstr "" msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../mod/attach.php:8 -msgid "Item not available." +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." msgstr "" -#: ../../mod/attach.php:20 -msgid "Item was not found." +#: ../../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/regmod.php:63 -msgid "Account approved." +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." msgstr "" -#: ../../mod/regmod.php:100 +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "" + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "" + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format -msgid "Registration revoked for %s" +msgid "%1$s is now friends with %2$s" msgstr "" -#: ../../mod/regmod.php:112 -msgid "Please login." +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " msgstr "" -#: ../../mod/directory.php:57 -msgid "Find on this site" +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." msgstr "" -#: ../../mod/directory.php:59 ../../mod/contacts.php:693 -msgid "Finding: " +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" -#: ../../mod/directory.php:60 -msgid "Site Directory" +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." msgstr "" -#: ../../mod/directory.php:61 ../../mod/contacts.php:694 -#: ../../include/contact_widgets.php:33 -msgid "Find" +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." msgstr "" -#: ../../mod/directory.php:111 ../../mod/profiles.php:690 -msgid "Age: " -msgstr "" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "" - -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "" - -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "" - -#: ../../mod/crepair.php:139 +#: ../../mod/dfrn_confirm.php:638 msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." msgstr "" -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." msgstr "" -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" msgstr "" -#: ../../mod/crepair.php:151 -msgid "Account Nickname" +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" msgstr "" -#: ../../mod/crepair.php:152 -msgid "@Tagname - overrides Name/Nickname" +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" msgstr "" -#: ../../mod/crepair.php:153 -msgid "Account URL" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/crepair.php:154 -msgid "Friend Request URL" +#: ../../mod/events.php:291 +msgid "l, F j" msgstr "" -#: ../../mod/crepair.php:155 -msgid "Friend Confirm URL" +#: ../../mod/events.php:313 +msgid "Edit event" msgstr "" -#: ../../mod/crepair.php:156 -msgid "Notification Endpoint URL" +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" msgstr "" -#: ../../mod/crepair.php:157 -msgid "Poll/Feed URL" +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" msgstr "" -#: ../../mod/crepair.php:158 -msgid "New photo from this URL" +#: ../../mod/events.php:371 +msgid "Create New Event" msgstr "" -#: ../../mod/crepair.php:159 -msgid "Remote Self" +#: ../../mod/events.php:372 +msgid "Previous" msgstr "" -#: ../../mod/crepair.php:161 -msgid "Mirror postings from this contact" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" msgstr "" -#: ../../mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." +#: ../../mod/events.php:446 +msgid "hour:minute" msgstr "" -#: ../../mod/uimport.php:66 -msgid "Move account" +#: ../../mod/events.php:456 +msgid "Event details" msgstr "" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." msgstr "" -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." +#: ../../mod/events.php:459 +msgid "Event Starts:" msgstr "" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" msgstr "" -#: ../../mod/uimport.php:70 -msgid "Account file" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" msgstr "" #: ../../mod/lockview.php:31 ../../mod/lockview.php:39 @@ -3060,8 +2150,520 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 -msgid "Save" +#: ../../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:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "" + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "" + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "" + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "" + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:1508 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "" + +#: ../../mod/apps.php:14 +msgid "No installed applications." msgstr "" #: ../../mod/help.php:79 @@ -3072,209 +2674,6 @@ msgstr "" msgid "Help" msgstr "" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "" - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "" - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "" - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "" - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "" - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "" - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "" - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "" - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "" - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "" - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "" - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "" - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "" - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 -msgid "Failed to update contact record." -msgstr "" - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "" - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "" - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 -msgid "[Name Withheld]" -msgstr "" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "" - -#: ../../mod/dfrn_request.php:829 -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:832 -msgid "Friend/Connection Request" -msgstr "" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." -msgstr "" - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/content.php:496 ../../include/conversation.php:688 -msgid "View in context" -msgstr "" - #: ../../mod/contacts.php:104 #, php-format msgid "%d contact edited." @@ -3382,12 +2781,6 @@ msgstr "" msgid "Unignore" msgstr "" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "" - #: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "" @@ -3439,12 +2832,6 @@ msgstr "" msgid "Edit contact notes" msgstr "" -#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - #: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "" @@ -3485,11 +2872,6 @@ msgstr "" msgid "Currently archived" msgstr "" -#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "" - #: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" @@ -3575,21 +2957,420 @@ msgstr "" msgid "you are a fan of" msgstr "" -#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 -msgid "Edit contact" +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" msgstr "" #: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "" +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "" + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "" + #: ../../mod/contacts.php:699 ../../mod/settings.php:132 #: ../../mod/settings.php:635 msgid "Update" msgstr "" -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your 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 "" + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make " +"friends than people who do not." +msgstr "" + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "" + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand " +"new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with " +"each group privately on your Network page." +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to " +"people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." +msgstr "" + +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many " +"other social networks." +msgstr "" + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." +msgstr "" + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" msgstr "" #: ../../mod/settings.php:41 @@ -4092,16 +3873,6 @@ msgstr "" msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1515 -msgid "Show to Groups" -msgstr "" - -#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 -#: ../../mod/photos.php:1516 -msgid "Show to Contacts" -msgstr "" - #: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "" @@ -4196,6 +3967,18 @@ msgstr "" msgid "Resend relocate message to contacts" msgstr "" +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "" + #: ../../mod/profiles.php:37 msgid "Profile deleted." msgstr "" @@ -4474,206 +4257,322 @@ msgid "" "be visible to anybody using the internet." msgstr "" +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "" + #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/group.php:29 -msgid "Group created." +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" msgstr "" -#: ../../mod/group.php:35 -msgid "Could not create group." +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" msgstr "" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" msgstr "" -#: ../../mod/group.php:60 -msgid "Group name changed." +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" msgstr "" -#: ../../mod/group.php:87 -msgid "Save Group" +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" msgstr "" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." +#: ../../mod/share.php:44 +msgid "link" msgstr "" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " +#: ../../mod/uexport.php:77 +msgid "Export account" msgstr "" -#: ../../mod/group.php:113 -msgid "Group removed." +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." msgstr "" -#: ../../mod/group.php:115 -msgid "Unable to remove group." +#: ../../mod/uexport.php:78 +msgid "Export all" msgstr "" -#: ../../mod/group.php:179 -msgid "Group Editor" +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" msgstr "" -#: ../../mod/group.php:192 -msgid "Members" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" msgstr "" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" msgstr "" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" msgstr "" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" msgstr "" -#: ../../mod/babel.php:31 -msgid "Source input: " +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" msgstr "" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" msgstr "" -#: ../../mod/babel.php:39 -msgid "bb2html: " +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" msgstr "" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " +#: ../../mod/ping.php:274 +msgid "{0} posted" msgstr "" -#: ../../mod/babel.php:47 -msgid "bb2md: " +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" msgstr "" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" msgstr "" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" msgstr "" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" msgstr "" #: ../../mod/community.php:23 msgid "Not available." msgstr "" -#: ../../mod/follow.php:27 -msgid "Contact added" +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" msgstr "" -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" msgstr "" -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" +#: ../../mod/filer.php:30 +msgid "- select -" msgstr "" -#: ../../mod/message.php:9 ../../include/nav.php:161 -msgid "New Message" +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" msgstr "" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:158 -msgid "Messages" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" msgstr "" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "" - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:378 +#: ../../mod/wall_attach.php:81 #, php-format -msgid "Unknown sender - %s" +msgid "File exceeds size limit of %d" msgstr "" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." msgstr "" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/message.php:450 -msgid "Message not available." +#: ../../mod/profperm.php:114 +msgid "Visible To" msgstr "" -#: ../../mod/message.php:520 -msgid "Delete message" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" msgstr "" -#: ../../mod/message.php:548 +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "" + +#: ../../mod/suggest.php:72 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/message.php:552 -msgid "Send Reply" +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" msgstr "" -#: ../../mod/like.php:169 ../../include/conversation.php:140 +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" +msgid "%1$s welcomes %2$s" msgstr "" -#: ../../mod/oexchange.php:25 -msgid "Post successful." +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "" + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../mod/localtime.php:12 ../../include/event.php:11 @@ -4710,331 +4609,8 @@ msgstr "" msgid "Please select your timezone:" msgstr "" -#: ../../mod/filer.php:30 ../../include/conversation.php:1004 -#: ../../include/conversation.php:1022 -msgid "Save to Folder:" -msgstr "" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "" - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 -msgid "View Contacts" -msgstr "" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 -msgid "Upload New Photos" -msgstr "" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:660 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:660 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:765 -msgid "Image exceeds size limit of " -msgstr "" - -#: ../../mod/photos.php:773 -msgid "Image file is empty." -msgstr "" - -#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/photos.php:928 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:1029 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:1092 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1127 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "or existing album name: " -msgstr "" - -#: ../../mod/photos.php:1133 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 -msgid "Permissions" -msgstr "" - -#: ../../mod/photos.php:1146 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:1147 -msgid "Public Photo" -msgstr "" - -#: ../../mod/photos.php:1214 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1222 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:1290 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:1292 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:1348 -msgid "View photo" -msgstr "" - -#: ../../mod/photos.php:1348 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:1349 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:1374 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:1453 -msgid "Tags: " -msgstr "" - -#: ../../mod/photos.php:1456 -msgid "[Remove any tag]" -msgstr "" - -#: ../../mod/photos.php:1496 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1497 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1499 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:1502 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:1504 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:1508 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: ../../mod/photos.php:1517 -msgid "Private photo" -msgstr "" - -#: ../../mod/photos.php:1518 -msgid "Public photo" -msgstr "" - -#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 -msgid "Share" -msgstr "" - -#: ../../mod/photos.php:1804 ../../mod/videos.php:308 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1813 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "" - -#: ../../mod/videos.php:301 ../../include/text.php:1400 -msgid "View Video" -msgstr "" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../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/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 -#: ../../include/message.php:144 -msgid "Wall Photos" +#: ../../mod/oexchange.php:25 +msgid "Post successful." msgstr "" #: ../../mod/profile_photo.php:44 @@ -5093,20 +4669,371 @@ msgstr "" msgid "Image uploaded successfully." msgstr "" -#: ../../mod/apps.php:11 -msgid "Applications" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" msgstr "" -#: ../../mod/apps.php:14 -msgid "No installed applications." +#: ../../mod/install.php:123 +msgid "Could not connect to database." msgstr "" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" +#: ../../mod/install.php:127 +msgid "Could not create table." msgstr "" -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../mod/install.php:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "" + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "" + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "" + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "" + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "" + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "" + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "" + +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "" + +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "" + +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "" + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "" + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:112 +msgid "Please login." msgstr "" #: ../../mod/match.php:12 @@ -5121,166 +5048,6 @@ msgstr "" msgid "is interested in:" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 -msgid "Remove" -msgstr "" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:335 ../../include/text.php:1633 -#: ../../include/text.php:1644 -msgid "link to source" -msgstr "" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:124 ../../include/nav.php:167 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - #: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "" @@ -5315,418 +5082,683 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "" - -#: ../../mod/ping.php:254 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "{0} commented %s's post" +msgid "%1$s is currently %2$s" msgstr "" -#: ../../mod/ping.php:259 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "" + +#: ../../mod/network.php:457 #, php-format -msgid "{0} liked %s's post" -msgstr "" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "" - -#: ../../mod/notifications.php:83 ../../include/nav.php:142 -msgid "Network" -msgstr "" - -#: ../../mod/notifications.php:98 ../../include/nav.php:151 -msgid "Introductions" -msgstr "" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "" - -#: ../../mod/notifications.php:220 ../../include/nav.php:152 -msgid "Notifications" -msgstr "" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." +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] "" msgstr[1] "" -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: ../../mod/invite.php:120 +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "" + +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "" + +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "" + +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "" + +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "" + +#: ../../mod/crepair.php:139 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: ../../mod/crepair.php:140 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "" + +#: ../../boot.php:1023 #, 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." +msgid "Update %s failed. See error logs." msgstr "" -#: ../../mod/invite.php:122 +#: ../../boot.php:1025 #, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "" + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "" + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: ../../include/features.php:33 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" msgstr "" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." +#: ../../include/features.php:39 +msgid "Search by Date" msgstr "" -#: ../../mod/invite.php:132 -msgid "Send invitations" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" +#: ../../include/features.php:40 +msgid "Group Filter" msgstr "" -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../include/features.php:41 +msgid "Network Filter" msgstr "" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" msgstr "" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" +#: ../../include/features.php:47 +msgid "Network Tabs" msgstr "" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" +#: ../../include/features.php:48 +msgid "Network Personal Tab" msgstr "" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" +#: ../../include/features.php:49 +msgid "Network New Tab" msgstr "" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" msgstr "" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/features.php:56 +msgid "Multiple Deletion" msgstr "" -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/features.php:58 +msgid "Tagging" msgstr "" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/contact_widgets.php:70 -msgid "Networks" +#: ../../include/features.php:59 +msgid "Post Categories" msgstr "" -#: ../../include/contact_widgets.php:73 -msgid "All Networks" +#: ../../include/features.php:59 +msgid "Add categories to your posts" msgstr "" -#: ../../include/contact_widgets.php:103 ../../include/features.php:60 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/contact_widgets.php:135 -msgid "Categories" +#: ../../include/features.php:61 +msgid "Dislike Posts" msgstr "" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/features.php:62 +msgid "Star Posts" msgstr "" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/api.php:263 ../../include/api.php:274 -#: ../../include/api.php:375 -msgid "User not found." +#: ../../include/auth.php:38 +msgid "Logged out." msgstr "" -#: ../../include/api.php:1123 -msgid "There is no status with this id." +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../include/api.php:1193 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/network.php:886 -msgid "view full size" +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" msgstr "" #: ../../include/event.php:20 ../../include/bb2diaspora.php:139 @@ -5737,290 +5769,77 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "" + +#: ../../include/profile_advanced.php:43 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "for %1$d %2$s" msgstr "" -#: ../../include/notifier.php:774 ../../include/delivery.php:456 -msgid "(no subject)" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" msgstr "" -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:467 -msgid "noreply" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" msgstr "" -#: ../../include/user.php:39 -msgid "An invitation is required." +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" msgstr "" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" msgstr "" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" +#: ../../include/profile_advanced.php:73 +msgid "Television:" msgstr "" -#: ../../include/user.php:73 -msgid "Please enter the required information." +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/user.php:87 -msgid "Please use a shorter name." +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" msgstr "" -#: ../../include/user.php:89 -msgid "Name too short." +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" msgstr "" -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." +#: ../../include/profile_advanced.php:81 +msgid "School/education:" msgstr "" -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" msgstr "" -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "" - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "" - -#: ../../include/user.php:131 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" - -#: ../../include/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: ../../include/user.php:147 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: ../../include/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:256 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/user.php:288 ../../include/user.php:292 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:211 ../../include/text.php:1003 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: ../../include/conversation.php:770 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:774 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:873 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:874 ../../include/Contact.php:229 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:875 ../../include/Contact.php:230 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:876 ../../include/Contact.php:231 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:877 ../../include/Contact.php:232 -#: ../../include/Contact.php:255 -msgid "Network Posts" -msgstr "" - -#: ../../include/conversation.php:878 ../../include/Contact.php:233 -#: ../../include/Contact.php:255 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:879 ../../include/Contact.php:235 -#: ../../include/Contact.php:255 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:880 ../../include/Contact.php:228 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:950 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:964 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:970 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1006 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1049 -msgid "Post to Email" -msgstr "" - -#: ../../include/conversation.php:1054 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1109 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1133 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1134 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1135 -msgid "Private post" -msgstr "" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" +#: ../../include/Scrape.php:584 +msgid " on Last.fm" msgstr "" #: ../../include/text.php:296 @@ -6062,6 +5881,10 @@ msgstr[1] "" msgid "poke" msgstr "" +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "" + #: ../../include/text.php:1004 msgid "ping" msgstr "" @@ -6266,6 +6089,10 @@ msgstr "" msgid "Click to open/close" msgstr "" +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "" + #: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "" @@ -6282,6 +6109,817 @@ msgstr "" msgid "Item filed" msgstr "" +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "" + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "" + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "" + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/items.php:1981 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: ../../include/items.php:1982 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "" + +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "" + +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "" + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "" + +#: ../../include/security.php:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + #: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "" @@ -6482,8 +7120,109 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "" + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "" + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "" + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "" + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "" + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "" + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" msgstr "" #: ../../include/group.php:25 @@ -6517,348 +7256,12 @@ msgstr "" msgid "Contacts not in any group" msgstr "" -#: ../../include/follow.php:32 -msgid "Connect URL missing." +#: ../../include/Contact.php:115 +msgid "stopped following" msgstr "" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:142 -msgid "Conversations from your friends" -msgstr "" - -#: ../../include/nav.php:143 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:143 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Friend Requests" -msgstr "" - -#: ../../include/nav.php:153 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:154 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:158 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:160 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Manage" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Manage other pages" -msgstr "" - -#: ../../include/nav.php:169 -msgid "Account settings" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Site setup and configuration" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Site map" -msgstr "" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "" - -#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 -#: ../../include/bbcode.php:922 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:357 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:457 -msgid "" -msgstr "" - -#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 -msgid "Encrypted content" -msgstr "" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" +#: ../../include/Contact.php:234 +msgid "Drop Contact" msgstr "" #: ../../include/datetime.php:43 ../../include/datetime.php:45 @@ -6934,459 +7337,6 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1981 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: ../../include/datetime.php:473 ../../include/items.php:1982 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2299 -msgid "Attachments:" -msgstr "" - -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/items.php:3710 -msgid "A new person is sharing with you at " -msgstr "" - -#: ../../include/items.php:3710 -msgid "You have a new follower at " -msgstr "" - -#: ../../include/items.php:4233 -msgid "Do you really want to delete this item?" -msgstr "" - -#: ../../include/items.php:4460 -msgid "Archives" -msgstr "" - -#: ../../include/oembed.php:174 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:183 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "" - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "" - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" +#: ../../include/network.php:886 +msgid "view full size" msgstr "" From bcafa23292f5d482c035b8aa4182c04984a2e460 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 16 May 2014 12:08:41 +0200 Subject: [PATCH 17/30] DE: update for the strings --- view/de/messages.po | 1087 ++++++++++++++++++++++--------------------- view/de/strings.php | 5 +- 2 files changed, 554 insertions(+), 538 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 11b74c4d60..96fdc01f9e 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-26 09:22+0200\n" -"PO-Revision-Date: 2014-04-26 10:20+0000\n" +"POT-Creation-Date: 2014-05-16 07:51+0200\n" +"PO-Revision-Date: 2014-05-16 10:05+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -46,19 +46,20 @@ msgid "Private Message" msgstr "Private Nachricht" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:670 +#: ../../mod/content.php:727 ../../mod/settings.php:671 msgid "Edit" msgstr "Bearbeiten" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:612 +#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../include/conversation.php:612 msgid "Select" msgstr "Auswählen" -#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 #: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:671 ../../mod/group.php:171 -#: ../../mod/photos.php:1646 ../../include/conversation.php:613 +#: ../../mod/settings.php:672 ../../mod/group.php:171 +#: ../../mod/photos.php:1650 ../../include/conversation.php:613 msgid "Delete" msgstr "Löschen" @@ -151,7 +152,7 @@ msgstr "%s von %s" #: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 #: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 msgid "Comment" msgstr "Kommentar" @@ -159,7 +160,7 @@ msgstr "Kommentar" #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 #: ../../mod/message.php:565 ../../mod/photos.php:1541 -#: ../../include/conversation.php:690 ../../include/conversation.php:1102 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Bitte warten" @@ -171,7 +172,7 @@ msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" #: ../../object/Item.php:369 ../../object/Item.php:382 -#: ../../mod/content.php:604 ../../include/text.php:1946 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" @@ -184,7 +185,7 @@ msgstr "mehr anzeigen" #: ../../object/Item.php:655 ../../mod/content.php:706 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1685 +#: ../../mod/photos.php:1690 msgid "This is you" msgstr "Das bist du" @@ -202,7 +203,7 @@ msgstr "Das bist du" #: ../../mod/localtime.php:45 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" @@ -242,8 +243,8 @@ msgstr "Video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 -#: ../../include/conversation.php:1119 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "Vorschau" @@ -271,8 +272,8 @@ msgstr "Zugriff verweigert" #: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 #: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 -#: ../../mod/settings.php:101 ../../mod/settings.php:590 -#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/profiles.php:146 #: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 @@ -284,7 +285,7 @@ msgstr "Zugriff verweigert" #: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../wall_attach.php:55 ../../include/items.php:4373 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -429,7 +430,7 @@ msgid "Last likes" msgstr "Zuletzt gemocht" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1940 +#: ../../include/conversation.php:246 ../../include/text.php:1953 msgid "event" msgstr "Veranstaltung" @@ -445,7 +446,7 @@ msgstr "Status" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1942 ../../include/diaspora.php:1908 +#: ../../include/text.php:1955 ../../include/diaspora.php:1908 msgid "photo" msgstr "Foto" @@ -464,7 +465,7 @@ msgstr "Letzte Fotos" #: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 #: ../../mod/photos.php:155 ../../mod/photos.php:1062 #: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 msgid "Contact Photos" msgstr "Kontaktbilder" @@ -507,7 +508,7 @@ msgstr "Freunde einladen" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 #: ../../include/nav.php:169 msgid "Settings" msgstr "Einstellungen" @@ -586,7 +587,7 @@ msgid "Set colour scheme" msgstr "Farbschema wählen" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1676 +#: ../../include/text.php:1689 msgid "default" msgstr "Standard" @@ -857,9 +858,9 @@ msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." #: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4177 +#: ../../include/items.php:4194 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -912,7 +913,7 @@ msgstr "Keine Plugins/Erweiterungen/Apps installiert" msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" -#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" @@ -967,25 +968,25 @@ msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" #: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 #: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 -#: ../../mod/settings.php:998 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4218 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4235 msgid "Yes" msgstr "Ja" #: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" msgstr "Nein" @@ -998,7 +999,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli msgid "Your invitation ID: " msgstr "ID deiner Einladung: " -#: ../../mod/register.php:265 ../../mod/admin.php:573 +#: ../../mod/register.php:265 ../../mod/admin.php:575 msgid "Registration" msgstr "Registrierung" @@ -1273,13 +1274,13 @@ msgstr "Deine Nachricht:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1089 msgid "Upload photo" msgstr "Foto hochladen" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1093 msgid "Insert web link" msgstr "Einen Link einfügen" @@ -1479,11 +1480,11 @@ msgstr "Möchtest du wirklich diese Empfehlung löschen?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 #: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 -#: ../../include/items.php:4221 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 +#: ../../include/items.php:4238 msgid "Cancel" msgstr "Abbrechen" @@ -1901,419 +1902,419 @@ msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einric msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: ../../mod/admin.php:101 ../../mod/admin.php:571 +#: ../../mod/admin.php:102 ../../mod/admin.php:573 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 -#: ../../mod/settings.php:56 +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 msgid "Themes" msgstr "Themen" -#: ../../mod/admin.php:105 +#: ../../mod/admin.php:106 msgid "DB updates" msgstr "DB Updates" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 msgid "Logs" msgstr "Protokolle" -#: ../../mod/admin.php:125 ../../include/nav.php:180 +#: ../../mod/admin.php:126 ../../include/nav.php:180 msgid "Admin" msgstr "Administration" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:127 msgid "Plugin Features" msgstr "Plugin Features" -#: ../../mod/admin.php:128 +#: ../../mod/admin.php:129 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:187 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "Normales Konto" -#: ../../mod/admin.php:188 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:856 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: ../../mod/admin.php:189 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:857 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/admin.php:190 ../../mod/admin.php:856 +#: ../../mod/admin.php:191 ../../mod/admin.php:858 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" -#: ../../mod/admin.php:191 +#: ../../mod/admin.php:192 msgid "Blog Account" msgstr "Blog-Konto" -#: ../../mod/admin.php:192 +#: ../../mod/admin.php:193 msgid "Private Forum" msgstr "Privates Forum" -#: ../../mod/admin.php:211 +#: ../../mod/admin.php:212 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 -#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 -#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 msgid "Administration" msgstr "Administration" -#: ../../mod/admin.php:217 +#: ../../mod/admin.php:218 msgid "Summary" msgstr "Zusammenfassung" -#: ../../mod/admin.php:219 +#: ../../mod/admin.php:220 msgid "Registered users" msgstr "Registrierte Nutzer" -#: ../../mod/admin.php:221 +#: ../../mod/admin.php:222 msgid "Pending registrations" msgstr "Anstehende Anmeldungen" -#: ../../mod/admin.php:222 +#: ../../mod/admin.php:223 msgid "Version" msgstr "Version" -#: ../../mod/admin.php:224 +#: ../../mod/admin.php:225 msgid "Active plugins" msgstr "Aktive Plugins" -#: ../../mod/admin.php:247 +#: ../../mod/admin.php:248 msgid "Can not parse base url. Must have at least ://" msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" -#: ../../mod/admin.php:483 +#: ../../mod/admin.php:485 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: ../../mod/admin.php:512 ../../mod/settings.php:822 +#: ../../mod/admin.php:514 ../../mod/settings.php:823 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: ../../mod/admin.php:529 ../../mod/contacts.php:408 +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 msgid "Never" msgstr "Niemals" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:532 msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "immer wieder" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Stündlich" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Zweimal täglich" -#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Täglich" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:541 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:559 msgid "Closed" msgstr "Geschlossen" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:560 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: ../../mod/admin.php:559 +#: ../../mod/admin.php:561 msgid "Open" msgstr "Offen" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: ../../mod/admin.php:565 +#: ../../mod/admin.php:567 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" -#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 -#: ../../mod/admin.php:1333 ../../mod/settings.php:608 -#: ../../mod/settings.php:718 ../../mod/settings.php:792 -#: ../../mod/settings.php:871 ../../mod/settings.php:1101 +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 msgid "Save Settings" msgstr "Einstellungen speichern" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:576 msgid "File upload" msgstr "Datei hochladen" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:577 msgid "Policies" msgstr "Regeln" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:578 msgid "Advanced" msgstr "Erweitert" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:579 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:580 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:583 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:584 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden." -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:586 msgid "System language" msgstr "Systemsprache" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "System theme" msgstr "Systemweites Theme" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Old style 'Share'" msgstr "Altes \"Teilen\" Element" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Make this instance multi-user or single-user for the named user" msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:597 msgid "Register policy" msgstr "Registrierungsmethode" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:602 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:602 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:603 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:603 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Global directory update URL" msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2321,495 +2322,495 @@ msgid "" "while." msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben das remote_self Flag zu setzen" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Disallow users to register additional accounts for use as pages." msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "Show Community Page" msgstr "Gemeinschaftsseite anzeigen" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server." -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "OStatus conversation completion interval" msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Enable Diaspora support" msgstr "Diaspora-Support aktivieren" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:622 msgid "Proxy user" msgstr "Proxy Nutzer" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:623 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Delivery interval" msgstr "Zustellungsintervall" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "Use MySQL full text engine" msgstr "Nutze MySQL full text engine" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress Language" msgstr "Sprachinformation unterdrücken" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress language information in meta information about a posting." msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)." -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Path for lock file" msgstr "Pfad für die Sperrdatei" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Temp path" msgstr "Temp Pfad" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "New base url" msgstr "Neue Basis-URL" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen." -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 #, php-format msgid "Update function %s could not be found." msgstr "Updatefunktion %s konnte nicht gefunden werden." -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:694 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:695 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:696 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: ../../mod/admin.php:695 +#: ../../mod/admin.php:697 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "Registration erfolgreich. Dem Nutzer wurde eine Email gesended." -#: ../../mod/admin.php:751 +#: ../../mod/admin.php:753 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s Benutzer geblockt/freigegeben" msgstr[1] "%s Benutzer geblockt/freigegeben" -#: ../../mod/admin.php:758 +#: ../../mod/admin.php:760 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s Nutzer gelöscht" msgstr[1] "%s Nutzer gelöscht" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:799 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:902 msgid "Add User" msgstr "Nutzer hinzufügen" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:903 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:904 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:905 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:906 msgid "Request date" msgstr "Anfragedatum" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:930 ../../mod/crepair.php:150 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/crepair.php:150 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Name" msgstr "Name" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "E-Mail" -#: ../../mod/admin.php:905 +#: ../../mod/admin.php:907 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:906 ../../mod/notifications.php:161 +#: ../../mod/admin.php:908 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Genehmigen" -#: ../../mod/admin.php:907 +#: ../../mod/admin.php:909 msgid "Deny" msgstr "Verwehren" -#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "Sperren" -#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "Entsperren" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:913 msgid "Site admin" msgstr "Seitenadministrator" -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:914 msgid "Account expired" msgstr "Account ist abgelaufen" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:917 msgid "New User" msgstr "Neuer Nutzer" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:918 msgid "Deleted since" msgstr "Gelöscht seit" -#: ../../mod/admin.php:917 ../../mod/settings.php:35 +#: ../../mod/admin.php:919 ../../mod/settings.php:36 msgid "Account" msgstr "Nutzerkonto" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:921 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:920 +#: ../../mod/admin.php:922 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:930 +#: ../../mod/admin.php:932 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname" msgstr "Spitzname" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: ../../mod/admin.php:932 +#: ../../mod/admin.php:934 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: ../../mod/admin.php:965 +#: ../../mod/admin.php:967 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:969 +#: ../../mod/admin.php:971 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:979 ../../mod/admin.php:1182 +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:981 ../../mod/admin.php:1184 +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:1142 +#: ../../mod/admin.php:1155 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:1204 +#: ../../mod/admin.php:1217 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1263 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1251 +#: ../../mod/admin.php:1264 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1278 +#: ../../mod/admin.php:1291 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1347 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1353 msgid "Enable Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 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:1342 +#: ../../mod/admin.php:1355 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1405 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1411 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1412 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1413 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:1401 +#: ../../mod/admin.php:1414 msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 -#: ../../include/text.php:939 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" msgstr "Suche" @@ -2840,75 +2841,75 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 msgid "upload photo" msgstr "Bild hochladen" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 msgid "Attach file" msgstr "Datei anhängen" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 msgid "attach file" msgstr "Datei anhängen" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 msgid "web link" msgstr "Weblink" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 msgid "video link" msgstr "Video-Link" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 msgid "audio link" msgstr "Audio-Link" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 msgid "set location" msgstr "Ort setzen" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 msgid "clear location" msgstr "Ort löschen" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 msgid "Set title" msgstr "Titel setzen" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -3079,7 +3080,7 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 msgid "Save" msgstr "Speichern" @@ -3212,7 +3213,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s." msgid "Confirm" msgstr "Bestätigen" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -3264,7 +3265,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3602,609 +3603,617 @@ msgstr "Kontakt bearbeiten" msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: ../../mod/contacts.php:699 ../../mod/settings.php:131 -#: ../../mod/settings.php:634 +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 msgid "Update" msgstr "Aktualisierungen" -#: ../../mod/settings.php:28 ../../mod/photos.php:80 +#: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" msgstr "jeder" -#: ../../mod/settings.php:40 +#: ../../mod/settings.php:41 msgid "Additional features" msgstr "Zusätzliche Features" -#: ../../mod/settings.php:45 +#: ../../mod/settings.php:46 msgid "Display" msgstr "Anzeige" -#: ../../mod/settings.php:51 ../../mod/settings.php:774 +#: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" msgstr "Soziale Netzwerke" -#: ../../mod/settings.php:61 ../../include/nav.php:167 +#: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" msgstr "Delegationen" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:67 msgid "Connected apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:71 ../../mod/uexport.php:85 +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:77 msgid "Remove account" msgstr "Konto löschen" -#: ../../mod/settings.php:128 +#: ../../mod/settings.php:129 msgid "Missing some important data!" msgstr "Wichtige Daten fehlen!" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." -#: ../../mod/settings.php:242 +#: ../../mod/settings.php:243 msgid "Email settings updated." msgstr "E-Mail Einstellungen bearbeitet." -#: ../../mod/settings.php:257 +#: ../../mod/settings.php:258 msgid "Features updated" msgstr "Features aktualisiert" -#: ../../mod/settings.php:318 +#: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet." -#: ../../mod/settings.php:332 +#: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: ../../mod/settings.php:337 +#: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:346 msgid "Wrong password." msgstr "Falsches Passwort." -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:357 msgid "Password changed." msgstr "Passwort geändert." -#: ../../mod/settings.php:358 +#: ../../mod/settings.php:359 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: ../../mod/settings.php:423 +#: ../../mod/settings.php:424 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: ../../mod/settings.php:425 +#: ../../mod/settings.php:426 msgid " Name too short." msgstr " Name ist zu kurz." -#: ../../mod/settings.php:434 +#: ../../mod/settings.php:435 msgid "Wrong Password" msgstr "Falsches Passwort" -#: ../../mod/settings.php:439 +#: ../../mod/settings.php:440 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: ../../mod/settings.php:445 +#: ../../mod/settings.php:446 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: ../../mod/settings.php:500 +#: ../../mod/settings.php:501 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: ../../mod/settings.php:504 +#: ../../mod/settings.php:505 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:534 +#: ../../mod/settings.php:535 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 msgid "Add application" msgstr "Programm hinzufügen" -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Redirect" msgstr "Umleiten" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" msgstr "Icon URL" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:669 msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:673 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:674 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:675 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:687 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "On" msgstr "An" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:717 msgid "Additional Features" msgstr "Zusätzliche Features" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" msgstr "eingeschaltet" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" msgstr "ausgeschaltet" -#: ../../mod/settings.php:731 +#: ../../mod/settings.php:732 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:768 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:780 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: ../../mod/settings.php:780 +#: ../../mod/settings.php:781 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: ../../mod/settings.php:781 +#: ../../mod/settings.php:782 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:784 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:785 msgid "IMAP port:" msgstr "IMAP-Port:" -#: ../../mod/settings.php:785 +#: ../../mod/settings.php:786 msgid "Security:" msgstr "Sicherheit:" -#: ../../mod/settings.php:785 ../../mod/settings.php:790 +#: ../../mod/settings.php:786 ../../mod/settings.php:791 msgid "None" msgstr "Keine" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:787 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:788 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:789 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Action after import:" msgstr "Aktion nach Import:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:792 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: ../../mod/settings.php:869 +#: ../../mod/settings.php:870 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:875 ../../mod/settings.php:889 +#: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" msgstr "Theme:" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:877 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:879 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: ../../mod/settings.php:878 ../../mod/settings.php:879 +#: ../../mod/settings.php:879 ../../mod/settings.php:880 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:880 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: ../../mod/settings.php:880 +#: ../../mod/settings.php:881 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: ../../mod/settings.php:881 +#: ../../mod/settings.php:882 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:883 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Nutzer Art" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Gemeinschafts Art" + +#: ../../mod/settings.php:962 msgid "Normal Account Page" msgstr "Normales Konto" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:963 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:966 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:967 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:974 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:978 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1001 msgid "Publish your default profile in your local site directory?" msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1007 msgid "Publish your default profile in the global social directory?" msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1015 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1036 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1042 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1050 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" msgstr "oder" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1058 msgid "Your Identity Address is" msgstr "Die Adresse deines Profils lautet:" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: ../../mod/settings.php:1067 +#: ../../mod/settings.php:1070 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1071 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1072 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1073 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1074 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1075 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1076 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1102 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1110 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1113 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1114 msgid "Password:" msgstr "Passwort:" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1118 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Kompletter Name:" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1123 +#: ../../mod/settings.php:1126 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1128 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1129 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 #: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 #: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1142 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1158 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1161 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1162 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1163 msgid "accepting a friend request" msgstr "– du eine Kontaktanfrage akzeptierst" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1164 msgid "joining a forum/community" msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1165 msgid "making an interesting profile change" msgstr "– du eine interessante Änderung an deinem Profil durchführst" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1166 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: ../../mod/settings.php:1165 +#: ../../mod/settings.php:1168 msgid "Your introductions are confirmed" msgstr "– eine deiner Kontaktanfragen akzeptiert wurde" -#: ../../mod/settings.php:1166 +#: ../../mod/settings.php:1169 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf deine Pinnwand schreibt" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "You are poked/prodded/etc. in a post" msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "Relocate" msgstr "Umziehen" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -4751,7 +4760,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" msgid "No contacts." msgstr "Keine Kontakte." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 msgid "View Contacts" msgstr "Kontakte anzeigen" @@ -4763,7 +4772,7 @@ msgstr "Personensuche" msgid "No matches" msgstr "Keine Übereinstimmungen" -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" @@ -4871,7 +4880,7 @@ msgstr "Zeige neueste zuerst" msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 msgid "View Photo" msgstr "Foto betrachten" @@ -4940,33 +4949,32 @@ msgstr "Privates Foto" msgid "Public photo" msgstr "Öffentliches Foto" -#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 msgid "Share" msgstr "Teilen" -#: ../../mod/photos.php:1799 ../../mod/videos.php:308 +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 msgid "View Album" msgstr "Album betrachten" -#: ../../mod/photos.php:1808 +#: ../../mod/photos.php:1813 msgid "Recent Photos" msgstr "Neueste Fotos" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Or - did you try to upload an empty file?" msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" -#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 +#: ../../mod/wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "Die Datei ist größer als das erlaubte Limit von %d" #: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." @@ -4974,7 +4982,7 @@ msgstr "Hochladen der Datei fehlgeschlagen." msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: ../../mod/videos.php:301 ../../include/text.php:1387 +#: ../../mod/videos.php:301 ../../include/text.php:1400 msgid "View Video" msgstr "Video ansehen" @@ -5163,8 +5171,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:335 ../../include/text.php:1620 -#: ../../include/text.php:1631 +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 msgid "link to source" msgstr "Link zum Originalbeitrag" @@ -5268,17 +5276,17 @@ msgstr "Dateien" msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 msgid "Remove My Account" msgstr "Konto löschen" -#: ../../mod/removeme.php:46 +#: ../../mod/removeme.php:47 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." -#: ../../mod/removeme.php:47 +#: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" msgstr "Bitte gib dein Passwort zur Verifikation ein:" @@ -5715,15 +5723,15 @@ msgstr "Alles" msgid "Categories" msgstr "Kategorien" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 +#: ../../include/plugin.php:455 ../../include/plugin.php:457 msgid "Click here to upgrade." msgstr "Zum Upgraden hier klicken." -#: ../../include/plugin.php:462 +#: ../../include/plugin.php:463 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." -#: ../../include/plugin.php:467 +#: ../../include/plugin.php:468 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." @@ -5752,6 +5760,11 @@ msgstr "Beginnt:" msgid "Finishes:" msgstr "Endet:" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." + #: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "(kein Betreff)" @@ -5849,7 +5862,7 @@ msgstr "Freunde" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:990 +#: ../../include/conversation.php:211 ../../include/text.php:1003 msgid "poked" msgstr "stupste" @@ -5968,23 +5981,28 @@ msgstr "Wo hältst du dich jetzt gerade auf?" msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: ../../include/conversation.php:1048 +#: ../../include/conversation.php:1049 msgid "Post to Email" msgstr "An E-Mail senden" -#: ../../include/conversation.php:1104 +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: ../../include/conversation.php:1109 msgid "permissions" msgstr "Zugriffsrechte" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1133 msgid "Post to Groups" msgstr "Poste an Gruppe" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1134 msgid "Post to Contacts" msgstr "Poste an Kontakte" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Private post" msgstr "Privater Beitrag" @@ -6028,262 +6046,262 @@ msgstr[1] "%d Kontakte nicht importiert" msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: ../../include/text.php:304 +#: ../../include/text.php:296 msgid "newer" msgstr "neuer" -#: ../../include/text.php:306 +#: ../../include/text.php:298 msgid "older" msgstr "älter" -#: ../../include/text.php:311 +#: ../../include/text.php:303 msgid "prev" msgstr "vorige" -#: ../../include/text.php:313 +#: ../../include/text.php:305 msgid "first" msgstr "erste" -#: ../../include/text.php:345 +#: ../../include/text.php:337 msgid "last" msgstr "letzte" -#: ../../include/text.php:348 +#: ../../include/text.php:340 msgid "next" msgstr "nächste" -#: ../../include/text.php:840 +#: ../../include/text.php:853 msgid "No contacts" msgstr "Keine Kontakte" -#: ../../include/text.php:849 +#: ../../include/text.php:862 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: ../../include/text.php:990 +#: ../../include/text.php:1003 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuffed" msgstr "abfuhrerteilte" -#: ../../include/text.php:1009 +#: ../../include/text.php:1022 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:1010 +#: ../../include/text.php:1023 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1011 +#: ../../include/text.php:1024 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1012 +#: ../../include/text.php:1025 msgid "tired" msgstr "müde" -#: ../../include/text.php:1013 +#: ../../include/text.php:1026 msgid "perky" msgstr "frech" -#: ../../include/text.php:1014 +#: ../../include/text.php:1027 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1015 +#: ../../include/text.php:1028 msgid "stupified" msgstr "verblüfft" -#: ../../include/text.php:1016 +#: ../../include/text.php:1029 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1017 +#: ../../include/text.php:1030 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1018 +#: ../../include/text.php:1031 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1019 +#: ../../include/text.php:1032 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1020 +#: ../../include/text.php:1033 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1021 +#: ../../include/text.php:1034 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1022 +#: ../../include/text.php:1035 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1023 +#: ../../include/text.php:1036 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1024 +#: ../../include/text.php:1037 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1025 +#: ../../include/text.php:1038 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1026 +#: ../../include/text.php:1039 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1027 +#: ../../include/text.php:1040 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1028 +#: ../../include/text.php:1041 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "January" msgstr "Januar" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "February" msgstr "Februar" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "March" msgstr "März" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "April" msgstr "April" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "May" msgstr "Mai" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "June" msgstr "Juni" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "July" msgstr "Juli" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "August" msgstr "August" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "September" msgstr "September" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "November" msgstr "November" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1419 +#: ../../include/text.php:1432 msgid "bytes" msgstr "Byte" -#: ../../include/text.php:1443 ../../include/text.php:1455 +#: ../../include/text.php:1456 ../../include/text.php:1468 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1688 +#: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: ../../include/text.php:1944 +#: ../../include/text.php:1957 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1947 +#: ../../include/text.php:1960 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:2115 +#: ../../include/text.php:2128 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -6767,27 +6785,27 @@ msgstr "Arbeit/Beschäftigung:" msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:918 +#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 +#: ../../include/bbcode.php:922 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:354 +#: ../../include/bbcode.php:357 #, php-format msgid "" "%s wrote the following post" msgstr "%s schrieb den folgenden Beitrag" -#: ../../include/bbcode.php:453 +#: ../../include/bbcode.php:457 msgid "" msgstr "" -#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 +#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 +#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -6940,12 +6958,12 @@ msgstr "Sekunden" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: ../../include/datetime.php:472 ../../include/items.php:1964 +#: ../../include/datetime.php:472 ../../include/items.php:1981 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: ../../include/datetime.php:473 ../../include/items.php:1965 +#: ../../include/datetime.php:473 ../../include/items.php:1982 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -7119,19 +7137,19 @@ msgstr "Anhänge:" msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " msgstr "Eine neue Person teilt mit dir auf " -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "You have a new follower at " msgstr "Du hast einen neuen Kontakt auf " -#: ../../include/items.php:4216 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" msgstr "Möchtest du wirklich dieses Item löschen?" -#: ../../include/items.php:4443 +#: ../../include/items.php:4460 msgid "Archives" msgstr "Archiv" @@ -7396,8 +7414,3 @@ msgstr "wird nicht mehr gefolgt" #: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "Kontakt löschen" - -#: ../../include/dba.php:45 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." diff --git a/view/de/strings.php b/view/de/strings.php index 506e381317..4a034befae 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -866,6 +866,8 @@ $a->strings["Number of items to display per page when viewed from mobile device: $a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; $a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; $a->strings["Infinite scroll"] = "Endloses Scrollen"; +$a->strings["User Types"] = "Nutzer Art"; +$a->strings["Community Types"] = "Gemeinschafts Art"; $a->strings["Normal Account Page"] = "Normales Konto"; $a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; $a->strings["Soapbox Page"] = "Marktschreier-Konto"; @@ -1310,6 +1312,7 @@ $a->strings["There is no conversation with this id."] = "Es existiert keine Unte $a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["Starts:"] = "Beginnt:"; $a->strings["Finishes:"] = "Endet:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; $a->strings["(no subject)"] = "(kein Betreff)"; $a->strings["noreply"] = "noreply"; $a->strings["An invitation is required."] = "Du benötigst eine Einladung."; @@ -1360,6 +1363,7 @@ $a->strings["Tag term:"] = "Tag:"; $a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; $a->strings["Delete item(s)?"] = "Einträge löschen?"; $a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; $a->strings["permissions"] = "Zugriffsrechte"; $a->strings["Post to Groups"] = "Poste an Gruppe"; $a->strings["Post to Contacts"] = "Poste an Kontakte"; @@ -1706,4 +1710,3 @@ $a->strings["Don't care"] = "Ist mir nicht wichtig"; $a->strings["Ask me"] = "Frag mich"; $a->strings["stopped following"] = "wird nicht mehr gefolgt"; $a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; From 5c941ad97833dc8c448154be5fee4e5a71cbe414 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 17 May 2014 08:44:45 +0200 Subject: [PATCH 18/30] FR: update to the strings --- view/fr/messages.po | 4625 ++++++++++++++++++++++--------------------- view/fr/strings.php | 3304 ++++++++++++++++--------------- 2 files changed, 3983 insertions(+), 3946 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index ef6b662d75..87b3ccc72e 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -3,177 +3,175 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Domovoy , 2012 -# ltriay , 2013 -# Marquis_de_Carabas , 2012 -# Olivier , 2011-2012 -# tomamplius , 2014 -# Tubuntu , 2013-2014 +# Michal Šupler , 2011-2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-26 09:22+0200\n" -"PO-Revision-Date: 2014-05-10 01:56+0000\n" -"Last-Translator: tomamplius \n" -"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" +"POT-Creation-Date: 2014-05-16 07:51+0200\n" +"PO-Revision-Date: 2014-05-16 17:27+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: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../object/Item.php:92 msgid "This entry was edited" -msgstr "" +msgstr "Tento záznam byl editován" #: ../../object/Item.php:113 ../../mod/content.php:619 #: ../../mod/photos.php:1355 msgid "Private Message" -msgstr "Message privé" +msgstr "Soukromá zpráva" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:670 +#: ../../mod/content.php:727 ../../mod/settings.php:671 msgid "Edit" -msgstr "Éditer" +msgstr "Upravit" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:612 +#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../include/conversation.php:612 msgid "Select" -msgstr "Sélectionner" +msgstr "Vybrat" -#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 #: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:671 ../../mod/group.php:171 -#: ../../mod/photos.php:1646 ../../include/conversation.php:613 +#: ../../mod/settings.php:672 ../../mod/group.php:171 +#: ../../mod/photos.php:1650 ../../include/conversation.php:613 msgid "Delete" -msgstr "Supprimer" +msgstr "Odstranit" #: ../../object/Item.php:130 ../../mod/content.php:762 msgid "save to folder" -msgstr "sauver vers dossier" +msgstr "uložit do složky" #: ../../object/Item.php:192 ../../mod/content.php:752 msgid "add star" -msgstr "mett en avant" +msgstr "přidat hvězdu" #: ../../object/Item.php:193 ../../mod/content.php:753 msgid "remove star" -msgstr "ne plus mettre en avant" +msgstr "odebrat hvězdu" #: ../../object/Item.php:194 ../../mod/content.php:754 msgid "toggle star status" -msgstr "mettre en avant" +msgstr "přepnout hvězdu" #: ../../object/Item.php:197 ../../mod/content.php:757 msgid "starred" -msgstr "mis en avant" +msgstr "označeno hvězdou" #: ../../object/Item.php:202 ../../mod/content.php:758 msgid "add tag" -msgstr "ajouter un tag" +msgstr "přidat štítek" #: ../../object/Item.php:213 ../../mod/content.php:683 #: ../../mod/photos.php:1538 msgid "I like this (toggle)" -msgstr "J'aime (bascule)" +msgstr "Líbí se mi to (přepínač)" #: ../../object/Item.php:213 ../../mod/content.php:683 msgid "like" -msgstr "aime" +msgstr "má rád" #: ../../object/Item.php:214 ../../mod/content.php:684 #: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (bascule)" +msgstr "Nelíbí se mi to (přepínač)" #: ../../object/Item.php:214 ../../mod/content.php:684 msgid "dislike" -msgstr "n'aime pas" +msgstr "nemá rád" #: ../../object/Item.php:216 ../../mod/content.php:686 msgid "Share this" -msgstr "Partager" +msgstr "Sdílet toto" #: ../../object/Item.php:216 ../../mod/content.php:686 msgid "share" -msgstr "partager" +msgstr "sdílí" #: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" -msgstr "Catégories:" +msgstr "Kategorie:" #: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" -msgstr "Rangé sous:" +msgstr "Vyplněn pod:" #: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 #: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" +msgstr "Zobrazit profil uživatele %s na %s" #: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" -msgstr "à" +msgstr "pro" #: ../../object/Item.php:310 msgid "via" -msgstr "via" +msgstr "přes" #: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" -msgstr "Inter-mur" +msgstr "Zeď-na-Zeď" #: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" -msgstr "en Inter-mur:" +msgstr "přes Zeď-na-Zeď " #: ../../object/Item.php:321 ../../mod/content.php:481 #: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" -msgstr "%s de %s" +msgstr "%s od %s" #: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 #: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 msgid "Comment" -msgstr "Commenter" +msgstr "Okomentovat" #: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 #: ../../mod/message.php:565 ../../mod/photos.php:1541 -#: ../../include/conversation.php:690 ../../include/conversation.php:1102 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" -msgstr "Patientez" +msgstr "Čekejte prosím" #: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" #: ../../object/Item.php:369 ../../object/Item.php:382 -#: ../../mod/content.php:604 ../../include/text.php:1946 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "" -msgstr[1] "commentaire" +msgstr[1] "" +msgstr[2] "komentář" #: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" -msgstr "montrer plus" +msgstr "zobrazit více" #: ../../object/Item.php:655 ../../mod/content.php:706 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1685 +#: ../../mod/photos.php:1690 msgid "This is you" -msgstr "C'est vous" +msgstr "Nastavte Vaši polohu" #: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 @@ -189,66 +187,66 @@ msgstr "C'est vous" #: ../../mod/localtime.php:45 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" -msgstr "Envoyer" +msgstr "Odeslat" #: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" -msgstr "Gras" +msgstr "Tučné" #: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" -msgstr "Italique" +msgstr "Kurzíva" #: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" -msgstr "Souligné" +msgstr "Podrtžené" #: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" -msgstr "Citation" +msgstr "Citovat" #: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" -msgstr "Code" +msgstr "Kód" #: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" -msgstr "Image" +msgstr "Obrázek" #: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" -msgstr "Lien" +msgstr "Odkaz" #: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" -msgstr "Vidéo" +msgstr "Video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 -#: ../../include/conversation.php:1119 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../include/conversation.php:1124 msgid "Preview" -msgstr "Aperçu" +msgstr "Náhled" #: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " -msgstr "Vous devez être connecté pour utiliser les addons." +msgstr "Musíte být přihlášení pro použití rozšíření." #: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" -msgstr "Non trouvé" +msgstr "Nenalezen" #: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." -msgstr "Page introuvable." +msgstr "Stránka nenalezena" #: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" -msgstr "Permission refusée" +msgstr "Nedostatečné oprávnění" #: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 #: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 @@ -258,8 +256,8 @@ msgstr "Permission refusée" #: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 #: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 -#: ../../mod/settings.php:101 ../../mod/settings.php:590 -#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/profiles.php:146 #: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 @@ -271,25 +269,25 @@ msgstr "Permission refusée" #: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../wall_attach.php:55 ../../include/items.php:4373 +#: ../../include/items.php:4390 msgid "Permission denied." -msgstr "Permission refusée." +msgstr "Přístup odmítnut." #: ../../index.php:419 msgid "toggle mobile" -msgstr "activ. mobile" +msgstr "přepnout mobil" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 #: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" -msgstr "Profil" +msgstr "Domů" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 #: ../../include/nav.php:145 msgid "Your posts and conversations" -msgstr "Vos notices et conversations" +msgstr "Vaše příspěvky a konverzace" #: ../../view/theme/perihel/theme.php:34 #: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 @@ -302,57 +300,57 @@ msgstr "Profil" #: ../../view/theme/perihel/theme.php:34 #: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 msgid "Your profile page" -msgstr "Votre page de profil" +msgstr "Vaše profilová stránka" #: ../../view/theme/perihel/theme.php:35 #: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" -msgstr "Photos" +msgstr "Fotografie" #: ../../view/theme/perihel/theme.php:35 #: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 msgid "Your photos" -msgstr "Vos photos" +msgstr "Vaše fotky" #: ../../view/theme/perihel/theme.php:36 #: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" -msgstr "Événements" +msgstr "Události" #: ../../view/theme/perihel/theme.php:36 #: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 msgid "Your events" -msgstr "Vos événements" +msgstr "Vaše události" #: ../../view/theme/perihel/theme.php:37 #: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 msgid "Personal notes" -msgstr "Notes personnelles" +msgstr "Osobní poznámky" #: ../../view/theme/perihel/theme.php:37 #: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 msgid "Your personal photos" -msgstr "Vos photos personnelles" +msgstr "Vaše osobní fotky" #: ../../view/theme/perihel/theme.php:38 #: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 #: ../../include/nav.php:128 msgid "Community" -msgstr "Communauté" +msgstr "Komunita" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 #: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" -msgstr "cacher" +msgstr "nikdy nezobrazit" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 #: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" -msgstr "montrer" +msgstr "zobrazit" #: ../../view/theme/perihel/config.php:97 #: ../../view/theme/diabook/config.php:150 @@ -361,64 +359,64 @@ msgstr "montrer" #: ../../view/theme/cleanzero/config.php:82 #: ../../view/theme/vier/config.php:49 msgid "Theme settings" -msgstr "Réglages du thème graphique" +msgstr "Nastavení téma" #: ../../view/theme/perihel/config.php:98 #: ../../view/theme/diabook/config.php:151 #: ../../view/theme/dispy/config.php:73 #: ../../view/theme/cleanzero/config.php:84 msgid "Set font-size for posts and comments" -msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" +msgstr "Nastav velikost písma pro přízpěvky a komentáře." #: ../../view/theme/perihel/config.php:99 #: ../../view/theme/diabook/config.php:152 #: ../../view/theme/dispy/config.php:74 msgid "Set line-height for posts and comments" -msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" +msgstr "Nastav výšku řádku pro přízpěvky a komentáře." #: ../../view/theme/perihel/config.php:100 #: ../../view/theme/diabook/config.php:153 msgid "Set resolution for middle column" -msgstr "Réglez la résolution de la colonne centrale" +msgstr "Nastav rozlišení pro prostřední sloupec" #: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 #: ../../include/nav.php:173 msgid "Contacts" -msgstr "Contacts" +msgstr "Kontakty" #: ../../view/theme/diabook/theme.php:125 msgid "Your contacts" -msgstr "Vos contacts" +msgstr "Vaše kontakty" #: ../../view/theme/diabook/theme.php:130 #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:624 #: ../../view/theme/diabook/config.php:158 msgid "Community Pages" -msgstr "Pages de Communauté" +msgstr "Komunitní stránky" #: ../../view/theme/diabook/theme.php:391 #: ../../view/theme/diabook/theme.php:626 #: ../../view/theme/diabook/config.php:160 msgid "Community Profiles" -msgstr "Profils communautaires" +msgstr "Komunitní profily" #: ../../view/theme/diabook/theme.php:412 #: ../../view/theme/diabook/theme.php:630 #: ../../view/theme/diabook/config.php:164 msgid "Last users" -msgstr "Derniers utilisateurs" +msgstr "Poslední uživatelé" #: ../../view/theme/diabook/theme.php:441 #: ../../view/theme/diabook/theme.php:632 #: ../../view/theme/diabook/config.php:166 msgid "Last likes" -msgstr "Dernièrement aimé" +msgstr "Poslední líbí/nelíbí" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1940 +#: ../../include/conversation.php:246 ../../include/text.php:1953 msgid "event" -msgstr "évènement" +msgstr "událost" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 @@ -427,33 +425,33 @@ msgstr "évènement" #: ../../include/conversation.php:249 ../../include/conversation.php:258 #: ../../include/diaspora.php:1908 msgid "status" -msgstr "le statut" +msgstr "Stav" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1942 ../../include/diaspora.php:1908 +#: ../../include/text.php:1955 ../../include/diaspora.php:1908 msgid "photo" -msgstr "photo" +msgstr "fotografie" #: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 #: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" +msgstr "%1$s má rád %2$s' na %3$s" #: ../../view/theme/diabook/theme.php:486 #: ../../view/theme/diabook/theme.php:631 #: ../../view/theme/diabook/config.php:165 msgid "Last photos" -msgstr "Dernières photos" +msgstr "Poslední fotografie" #: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 #: ../../mod/photos.php:155 ../../mod/photos.php:1062 #: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 msgid "Contact Photos" -msgstr "Photos du contact" +msgstr "Fotogalerie kontaktu" #: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 #: ../../mod/photos.php:729 ../../mod/photos.php:1187 @@ -463,377 +461,377 @@ msgstr "Photos du contact" #: ../../mod/profile_photo.php:305 ../../include/user.php:334 #: ../../include/user.php:341 ../../include/user.php:348 msgid "Profile Photos" -msgstr "Photos du profil" +msgstr "Profilové fotografie" #: ../../view/theme/diabook/theme.php:523 #: ../../view/theme/diabook/theme.php:629 #: ../../view/theme/diabook/config.php:163 msgid "Find Friends" -msgstr "Trouver des amis" +msgstr "Nalézt Přátele" #: ../../view/theme/diabook/theme.php:524 msgid "Local Directory" -msgstr "Annuaire local" +msgstr "Lokální Adresář" #: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 msgid "Global Directory" -msgstr "Annuaire global" +msgstr "Globální adresář" #: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 msgid "Similar Interests" -msgstr "Intérêts similaires" +msgstr "Podobné zájmy" #: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 #: ../../include/contact_widgets.php:34 msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" +msgstr "Návrhy přátel" #: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 msgid "Invite Friends" -msgstr "Inviter des amis" +msgstr "Pozvat přátele" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 #: ../../include/nav.php:169 msgid "Settings" -msgstr "Réglages" +msgstr "Nastavení" #: ../../view/theme/diabook/theme.php:579 #: ../../view/theme/diabook/theme.php:625 #: ../../view/theme/diabook/config.php:159 msgid "Earth Layers" -msgstr "Géolocalisation" +msgstr "Earth Layers" #: ../../view/theme/diabook/theme.php:584 msgid "Set zoomfactor for Earth Layers" -msgstr "Régler le niveau de zoom pour la géolocalisation" +msgstr "Nastavit faktor přiblížení pro Earth Layers" #: ../../view/theme/diabook/theme.php:585 #: ../../view/theme/diabook/config.php:156 msgid "Set longitude (X) for Earth Layers" -msgstr "Régler la longitude (X) pour la géolocalisation" +msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" #: ../../view/theme/diabook/theme.php:586 #: ../../view/theme/diabook/config.php:157 msgid "Set latitude (Y) for Earth Layers" -msgstr "Régler la latitude (Y) pour la géolocalisation" +msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" #: ../../view/theme/diabook/theme.php:599 #: ../../view/theme/diabook/theme.php:627 #: ../../view/theme/diabook/config.php:161 msgid "Help or @NewHere ?" -msgstr "Aide ou @NewHere?" +msgstr "Pomoc nebo @ProNováčky ?" #: ../../view/theme/diabook/theme.php:606 #: ../../view/theme/diabook/theme.php:628 #: ../../view/theme/diabook/config.php:162 msgid "Connect Services" -msgstr "Connecter des services" +msgstr "Propojené služby" #: ../../view/theme/diabook/theme.php:622 msgid "Show/hide boxes at right-hand column:" -msgstr "Montrer/cacher les boîtes dans la colonne de droite :" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" #: ../../view/theme/diabook/config.php:154 msgid "Set color scheme" -msgstr "Choisir le schéma de couleurs" +msgstr "Nastavení barevného schematu" #: ../../view/theme/diabook/config.php:155 msgid "Set zoomfactor for Earth Layer" -msgstr "Niveau de zoom" +msgstr "Nastavit přiblížení pro Earth Layer" #: ../../view/theme/quattro/config.php:67 msgid "Alignment" -msgstr "Alignement" +msgstr "Zarovnání" #: ../../view/theme/quattro/config.php:67 msgid "Left" -msgstr "Gauche" +msgstr "Vlevo" #: ../../view/theme/quattro/config.php:67 msgid "Center" -msgstr "Centre" +msgstr "Uprostřed" #: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 #: ../../view/theme/cleanzero/config.php:86 msgid "Color scheme" -msgstr "Palette de couleurs" +msgstr "Barevné schéma" #: ../../view/theme/quattro/config.php:69 msgid "Posts font size" -msgstr "Taille de texte des messages" +msgstr "Velikost písma u příspěvků" #: ../../view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "Taille de police des zones de texte" +msgstr "Velikost písma textů" #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" -msgstr "Choisir le schéma de couleurs" +msgstr "Nastavit barevné schéma" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1676 +#: ../../include/text.php:1689 msgid "default" -msgstr "défaut" +msgstr "standardní" #: ../../view/theme/clean/config.php:74 msgid "Background Image" -msgstr "Image de fond" +msgstr "Obrázek pozadí" #: ../../view/theme/clean/config.php:74 msgid "" "The URL to a picture (e.g. from your photo album) that should be used as " "background image." -msgstr "" +msgstr "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí." #: ../../view/theme/clean/config.php:75 msgid "Background Color" -msgstr "Couleur de fond" +msgstr "Barva pozadí" #: ../../view/theme/clean/config.php:75 msgid "HEX value for the background color. Don't include the #" -msgstr "" +msgstr "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #" #: ../../view/theme/clean/config.php:77 msgid "font size" -msgstr "Taille de police" +msgstr "velikost fondu" #: ../../view/theme/clean/config.php:77 msgid "base font size for your interface" -msgstr "" +msgstr "základní velikost fontu" #: ../../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)" +msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" #: ../../view/theme/cleanzero/config.php:85 msgid "Set theme width" -msgstr "Largeur du thème" +msgstr "Nastavení šířku grafické šablony" #: ../../view/theme/vier/config.php:50 msgid "Set style" -msgstr "Définir le style" +msgstr "Nastavit styl" #: ../../boot.php:692 msgid "Delete this item?" -msgstr "Effacer cet élément?" +msgstr "Odstranit tuto položku?" #: ../../boot.php:695 msgid "show fewer" -msgstr "montrer moins" +msgstr "zobrazit méně" #: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." -msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." #: ../../boot.php:1025 #, php-format msgid "Update Error at %s" -msgstr "Erreur de mise-à-jour à %s" +msgstr "Chyba aktualizace na %s" #: ../../boot.php:1135 msgid "Create a New Account" -msgstr "Créer un nouveau compte" +msgstr "Vytvořit nový účet" #: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" -msgstr "S'inscrire" +msgstr "Registrovat" #: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" -msgstr "Se déconnecter" +msgstr "Odhlásit se" #: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" -msgstr "Connexion" +msgstr "Přihlásit se" #: ../../boot.php:1163 msgid "Nickname or Email address: " -msgstr "Pseudo ou courriel: " +msgstr "Přezdívka nebo e-mailová adresa:" #: ../../boot.php:1164 msgid "Password: " -msgstr "Mot de passe: " +msgstr "Heslo: " #: ../../boot.php:1165 msgid "Remember me" -msgstr "Se souvenir de moi" +msgstr "Pamatuj si mne" #: ../../boot.php:1168 msgid "Or login using OpenID: " -msgstr "Ou connectez-vous via OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " #: ../../boot.php:1174 msgid "Forgot your password?" -msgstr "Mot de passe oublié?" +msgstr "Zapomněli jste své heslo?" #: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" +msgstr "Obnovení hesla" #: ../../boot.php:1177 msgid "Website Terms of Service" -msgstr "Conditions d'utilisation du site internet" +msgstr "Podmínky použití serveru" #: ../../boot.php:1178 msgid "terms of service" -msgstr "conditions d'utilisation" +msgstr "podmínky použití" #: ../../boot.php:1180 msgid "Website Privacy Policy" -msgstr "Politique de confidentialité du site internet" +msgstr "Pravidla ochrany soukromí serveru" #: ../../boot.php:1181 msgid "privacy policy" -msgstr "politique de confidentialité" +msgstr "Ochrana soukromí" #: ../../boot.php:1314 msgid "Requested account is not available." -msgstr "Le compte demandé n'est pas disponible." +msgstr "Požadovaný účet není dostupný." #: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." -msgstr "Le profil demandé n'est pas disponible." +msgstr "Požadovaný profil není k dispozici." #: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" -msgstr "Editer le profil" +msgstr "Upravit profil" #: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" -msgstr "Relier" +msgstr "Spojit" #: ../../boot.php:1459 msgid "Message" -msgstr "Message" +msgstr "Zpráva" #: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" -msgstr "Profils" +msgstr "Profily" #: ../../boot.php:1467 msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" +msgstr "Spravovat/upravit profily" #: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" -msgstr "Changer de photo de profil" +msgstr "Změnit profilovou fotografii" #: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" -msgstr "Créer un nouveau profil" +msgstr "Vytvořit nový profil" #: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" -msgstr "Image du profil" +msgstr "Profilový obrázek" #: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" -msgstr "visible par tous" +msgstr "viditelné pro všechny" #: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" -msgstr "Changer la visibilité" +msgstr "Upravit viditelnost" #: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 #: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" -msgstr "Localisation:" +msgstr "Místo:" #: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" -msgstr "Genre:" +msgstr "Pohlaví:" #: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" -msgstr "Statut:" +msgstr "Status:" #: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" -msgstr "Page personnelle:" +msgstr "Domácí stránka:" #: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" -msgstr "g A | F d" +msgstr "g A l F d" #: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" -msgstr "F d" +msgstr "d. F" #: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" -msgstr "[aujourd'hui]" +msgstr "[Dnes]" #: ../../boot.php:1654 msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" +msgstr "Připomínka narozenin" #: ../../boot.php:1655 msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine:" +msgstr "Narozeniny tento týden:" #: ../../boot.php:1716 msgid "[No description]" -msgstr "[Sans description]" +msgstr "[Žádný popis]" #: ../../boot.php:1734 msgid "Event Reminders" -msgstr "Rappels d'événements" +msgstr "Připomenutí událostí" #: ../../boot.php:1735 msgid "Events this week:" -msgstr "Evénements cette semaine:" +msgstr "Události tohoto týdne:" #: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" -msgstr "Statut" +msgstr "Stav" #: ../../boot.php:1975 msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" +msgstr "Statusové zprávy a příspěvky " #: ../../boot.php:1982 msgid "Profile Details" -msgstr "Détails du profil" +msgstr "Detaily profilu" #: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" -msgstr "Albums photo" +msgstr "Fotoalba" #: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" -msgstr "Vidéos" +msgstr "Videa" #: ../../boot.php:2006 msgid "Events and Calendar" -msgstr "Événements et agenda" +msgstr "Události a kalendář" #: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" -msgstr "Notes personnelles" +msgstr "Osobní poznámky" #: ../../boot.php:2013 msgid "Only You Can See This" -msgstr "Vous seul pouvez voir ça" +msgstr "Toto můžete vidět jen Vy" #: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format msgid "%1$s is currently %2$s" -msgstr "%1$s est d'humeur %2$s" +msgstr "%1$s je právě %2$s" #: ../../mod/mood.php:133 msgid "Mood" -msgstr "Humeur" +msgstr "Nálada" #: ../../mod/mood.php:134 msgid "Set your current mood and tell your friends" -msgstr "Spécifiez votre humeur du moment, et informez vos amis" +msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 @@ -841,442 +839,442 @@ msgstr "Spécifiez votre humeur du moment, et informez vos amis" #: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." -msgstr "Accès public refusé." +msgstr "Veřejný přístup odepřen." #: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4177 +#: ../../include/items.php:4194 msgid "Item not found." -msgstr "Élément introuvable." +msgstr "Položka nenalezena." #: ../../mod/display.php:99 ../../mod/profile.php:155 msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." +msgstr "Přístup na tento profil byl omezen." #: ../../mod/display.php:263 msgid "Item has been removed." -msgstr "Cet élément a été enlevé." +msgstr "Položka byla odstraněna." #: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 msgid "Access denied." -msgstr "Accès refusé." +msgstr "Přístup odmítnut" #: ../../mod/friendica.php:58 msgid "This is Friendica, version" -msgstr "Motorisé par Friendica version" +msgstr "Toto je Friendica, verze" #: ../../mod/friendica.php:59 msgid "running at web location" -msgstr "hébergé sur" +msgstr "běžící na webu" #: ../../mod/friendica.php:61 msgid "" "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." +msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com." #: ../../mod/friendica.php:63 msgid "Bug reports and issues: please visit" -msgstr "Pour les rapports de bugs: rendez vous sur" +msgstr "Pro hlášení chyb a námětů na změny navštivte:" #: ../../mod/friendica.php:64 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" -msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" +msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com" #: ../../mod/friendica.php:78 msgid "Installed plugins/addons/apps:" -msgstr "Extensions/applications installées:" +msgstr "Instalované pluginy/doplňky/aplikace:" #: ../../mod/friendica.php:91 msgid "No installed plugins/addons/apps" -msgstr "Aucune extension/greffon/application installée" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" -msgstr "%1$s accueille %2$s" +msgstr "%1$s vítá %2$s" -#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" -msgstr "Détails d'inscription pour %s" +msgstr "Registrační údaje pro %s" #: ../../mod/register.php:100 msgid "" "Registration successful. Please check your email for further instructions." -msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." +msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." #: ../../mod/register.php:104 msgid "Failed to send email message. Here is the message that failed." -msgstr "Impossible d'envoyer un email. Voici le message qui a échoué." +msgstr "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána." #: ../../mod/register.php:109 msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." +msgstr "Vaši registraci nelze zpracovat." #: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" -msgstr "Demande d'inscription à %s" +msgstr "Žádost o registraci na %s" #: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription attend une validation du propriétaire du site." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." #: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." +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:224 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\"." +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:225 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." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." #: ../../mod/register.php:226 msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " +msgstr "Vaše OpenID (nepovinné): " #: ../../mod/register.php:240 msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" +msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." #: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 #: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 -#: ../../mod/settings.php:998 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4218 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4235 msgid "Yes" -msgstr "Oui" +msgstr "Ano" #: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" -msgstr "Non" +msgstr "Ne" #: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." +msgstr "Členství na tomto webu je pouze na pozvání." #: ../../mod/register.php:262 msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " +msgstr "Vaše pozvání ID:" -#: ../../mod/register.php:265 ../../mod/admin.php:573 +#: ../../mod/register.php:265 ../../mod/admin.php:575 msgid "Registration" -msgstr "Inscription" +msgstr "Registrace" #: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " +msgstr "Vaše celé jméno (např. Jan Novák):" #: ../../mod/register.php:274 msgid "Your Email Address: " -msgstr "Votre adresse courriel: " +msgstr "Vaše e-mailová adresa:" #: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." -msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." +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:276 msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " +msgstr "Vyberte přezdívku:" #: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" -msgstr "Importer" +msgstr "Import" #: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" -msgstr "Importer votre profile dans cette instance de friendica" +msgstr "Import Vašeho profilu do této friendica instance" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 #: ../../mod/profiles.php:587 msgid "Profile not found." -msgstr "Profil introuvable." +msgstr "Profil nenalezen" #: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." -msgstr "Contact introuvable." +msgstr "Kontakt nenalezen." #: ../../mod/dfrn_confirm.php:119 msgid "" "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é." +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 "Réponse du site distant incomprise." +msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." #: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " -msgstr "Réponse inattendue du site distant: " +msgstr "Neočekávaná odpověď od vzdáleného serveru:" #: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." -msgstr "Confirmation achevée avec succès." +msgstr "Potvrzení úspěšně dokončena." #: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 #: ../../mod/dfrn_confirm.php:277 msgid "Remote site reported: " -msgstr "Alerte du site distant: " +msgstr "Vzdálený server oznámil:" #: ../../mod/dfrn_confirm.php:268 msgid "Temporary failure. Please wait and try again." -msgstr "Échec temporaire. Merci de recommencer ultérieurement." +msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." #: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." -msgstr "Introduction échouée ou annulée." +msgstr "Žádost o propojení selhala nebo byla zrušena." #: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." -msgstr "Impossible de définir la photo du contact." +msgstr "Nelze nastavit fotografii kontaktu." #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 #: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" -msgstr "%1$s est désormais lié à %2$s" +msgstr "%1$s je nyní přítel s %2$s" #: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " -msgstr "Pas d'utilisateur trouvé pour '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " #: ../../mod/dfrn_confirm.php:572 msgid "Our site encryption key is apparently messed up." -msgstr "Notre clé de chiffrement de site est apparemment corrompue." +msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." #: ../../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." +msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." #: ../../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." +msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." #: ../../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 "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 "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." +msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." #: ../../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." +msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." #: ../../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 "Nelze aktualizovat Váš profil v našem systému" #: ../../mod/dfrn_confirm.php:751 #, php-format msgid "Connection accepted at %s" -msgstr "Connexion acceptée chez %s" +msgstr "Připojení přijato na %s" #: ../../mod/dfrn_confirm.php:800 #, php-format msgid "%1$s has joined %2$s" -msgstr "%1$s a rejoint %2$s" +msgstr "%1$s se připojil k %2$s" #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +msgstr "Povolit připojení aplikacím" #: ../../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é : " +msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:" #: ../../mod/api.php:89 msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." +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 "Voulez-vous autoriser cette application à accéder à vos billets et contacts, et/ou à créer des billets à votre place?" +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/lostpass.php:17 msgid "No valid account found." -msgstr "Impossible de trouver un compte valide." +msgstr "Nenalezen žádný platný účet." #: ../../mod/lostpass.php:33 msgid "Password reset request issued. Check your email." -msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." +msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." #: ../../mod/lostpass.php:44 #, php-format msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" +msgstr "Na %s bylo zažádáno o resetování hesla" #: ../../mod/lostpass.php:66 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é." +msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." +msgstr "Vaše heslo bylo na Vaše přání resetováno." #: ../../mod/lostpass.php:86 msgid "Your new password is" -msgstr "Votre nouveau mot de passe est " +msgstr "Někdo Vám napsal na Vaši profilovou stránku" #: ../../mod/lostpass.php:87 msgid "Save or copy your new password - and then" -msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" +msgstr "Uložte si nebo zkopírujte nové heslo - a pak" #: ../../mod/lostpass.php:88 msgid "click here to login" -msgstr "cliquez ici pour vous connecter" +msgstr "klikněte zde pro přihlášení" #: ../../mod/lostpass.php:89 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é." +msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." #: ../../mod/lostpass.php:107 #, php-format msgid "Your password has been changed at %s" -msgstr "Votre mot de passe a été modifié à %s" +msgstr "Vaše heslo bylo změněno na %s" #: ../../mod/lostpass.php:122 msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" +msgstr "Zapomněli jste heslo?" #: ../../mod/lostpass.php:123 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." +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:124 msgid "Nickname or Email: " -msgstr "Pseudo ou Courriel: " +msgstr "Přezdívka nebo e-mail: " #: ../../mod/lostpass.php:125 msgid "Reset" -msgstr "Réinitialiser" +msgstr "Reset" #: ../../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." +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:63 msgid "No recipient selected." -msgstr "Pas de destinataire sélectionné." +msgstr "Nevybrán příjemce." #: ../../mod/wallmessage.php:59 msgid "Unable to check your home location." -msgstr "Impossible de vérifier votre localisation." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." #: ../../mod/wallmessage.php:62 ../../mod/message.php:70 msgid "Message could not be sent." -msgstr "Impossible d'envoyer le message." +msgstr "Zprávu se nepodařilo odeslat." #: ../../mod/wallmessage.php:65 ../../mod/message.php:73 msgid "Message collection failure." -msgstr "Récupération des messages infructueuse." +msgstr "Sběr zpráv selhal." #: ../../mod/wallmessage.php:68 ../../mod/message.php:76 msgid "Message sent." -msgstr "Message envoyé." +msgstr "Zpráva odeslána." #: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 msgid "No recipient." -msgstr "Pas de destinataire." +msgstr "Žádný příjemce." #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 #: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" +msgstr "Zadejte prosím URL odkaz:" #: ../../mod/wallmessage.php:142 ../../mod/message.php:319 msgid "Send Private Message" -msgstr "Envoyer un message privé" +msgstr "Odeslat soukromou zprávu" #: ../../mod/wallmessage.php:143 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." -msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." +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:144 ../../mod/message.php:320 #: ../../mod/message.php:553 msgid "To:" -msgstr "À:" +msgstr "Adresát:" #: ../../mod/wallmessage.php:145 ../../mod/message.php:325 #: ../../mod/message.php:555 msgid "Subject:" -msgstr "Sujet:" +msgstr "Předmět:" #: ../../mod/wallmessage.php:151 ../../mod/message.php:329 #: ../../mod/message.php:558 ../../mod/invite.php:134 msgid "Your message:" -msgstr "Votre message:" +msgstr "Vaše zpráva:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1089 msgid "Upload photo" -msgstr "Joindre photo" +msgstr "Nahrát fotografii" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1093 msgid "Insert web link" -msgstr "Insérer lien web" +msgstr "Vložit webový odkaz" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" -msgstr "Bienvenue sur Friendica" +msgstr "Vítejte na Friendica" #: ../../mod/newmember.php:8 msgid "New Member Checklist" -msgstr "Checklist du nouvel utilisateur" +msgstr "Seznam doporučení pro nového člena" #: ../../mod/newmember.php:12 msgid "" @@ -1284,33 +1282,33 @@ 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 "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." +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:14 msgid "Getting Started" -msgstr "Bien démarrer" +msgstr "Začínáme" #: ../../mod/newmember.php:18 msgid "Friendica Walk-Through" -msgstr "Friendica pas-à-pas" +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 "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." +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 "Éditer vos Réglages" +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 "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." +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 "" @@ -1318,44 +1316,44 @@ msgid "" " 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." +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:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" +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 "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." +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:38 msgid "Edit Your Profile" -msgstr "Éditer votre Profil" +msgstr "Editujte Váš 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." +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:40 msgid "Profile Keywords" -msgstr "Mots-clés du profil" +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 "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." +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:44 msgid "Connecting" -msgstr "Connexions" +msgstr "Probíhá pokus o připojení" #: ../../mod/newmember.php:49 ../../mod/newmember.php:51 #: ../../include/contact_selectors.php:81 @@ -1366,50 +1364,50 @@ msgstr "Facebook" 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." +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 "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." +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 "Importer courriels" +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 "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." +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 "Consulter vos Contacts" +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 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." +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:60 msgid "Go to Your Site's Directory" -msgstr "Consulter l'Annuaire de votre Site" +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 "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é." +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:62 msgid "Finding New People" -msgstr "Trouver de nouvelles personnes" +msgstr "Nalezení nových lidí" #: ../../mod/newmember.php:62 msgid "" @@ -1418,300 +1416,301 @@ msgid "" "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." +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:270 msgid "Groups" -msgstr "Groupes" +msgstr "Skupiny" #: ../../mod/newmember.php:70 msgid "Group Your Contacts" -msgstr "Grouper vos 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 "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." +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:73 msgid "Why Aren't My Posts Public?" -msgstr "Pourquoi mes éléments ne sont pas publics?" +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 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." +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 "Obtenir de l'aide" +msgstr "Získání nápovědy" #: ../../mod/newmember.php:82 msgid "Go to the Help Section" -msgstr "Aller à la section Aide" +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 "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." +msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." #: ../../mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" -msgstr "Voulez-vous vraiment supprimer cette suggestion ?" +msgstr "Opravdu chcete smazat tento návrh?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 #: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 -#: ../../include/items.php:4221 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 +#: ../../include/items.php:4238 msgid "Cancel" -msgstr "Annuler" +msgstr "Zrušit" #: ../../mod/suggest.php:72 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." +msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." #: ../../mod/suggest.php:90 msgid "Ignore/Hide" -msgstr "Ignorer/cacher" +msgstr "Ignorovat / skrýt" #: ../../mod/network.php:136 msgid "Search Results For:" -msgstr "Résultats pour:" +msgstr "Výsledky hledání pro:" #: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" -msgstr "Retirer le terme" +msgstr "Odstranit termín" #: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 #: ../../include/features.php:42 msgid "Saved Searches" -msgstr "Recherches" +msgstr "Uložená hledání" #: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" -msgstr "ajouter" +msgstr "přidat" #: ../../mod/network.php:350 msgid "Commented Order" -msgstr "Tri par commentaires" +msgstr "Dle komentářů" #: ../../mod/network.php:353 msgid "Sort by Comment Date" -msgstr "Trier par date de commentaire" +msgstr "Řadit podle data komentáře" #: ../../mod/network.php:356 msgid "Posted Order" -msgstr "Tri par publications" +msgstr "Dle data" #: ../../mod/network.php:359 msgid "Sort by Post Date" -msgstr "Trier par date de publication" +msgstr "Řadit podle data příspěvku" #: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" -msgstr "Personnel" +msgstr "Osobní" #: ../../mod/network.php:368 msgid "Posts that mention or involve you" -msgstr "Publications qui vous concernent" +msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" #: ../../mod/network.php:374 msgid "New" -msgstr "Nouveau" +msgstr "Nové" #: ../../mod/network.php:377 msgid "Activity Stream - by date" -msgstr "Flux d'activités - par date" +msgstr "Proud aktivit - dle data" #: ../../mod/network.php:383 msgid "Shared Links" -msgstr "Liens partagés" +msgstr "Sdílené odkazy" #: ../../mod/network.php:386 msgid "Interesting Links" -msgstr "Liens intéressants" +msgstr "Zajímavé odkazy" #: ../../mod/network.php:392 msgid "Starred" -msgstr "Mis en avant" +msgstr "S hvězdičkou" #: ../../mod/network.php:395 msgid "Favourite Posts" -msgstr "Publications favorites" +msgstr "Oblíbené přízpěvky" #: ../../mod/network.php:457 #, 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." +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:460 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." +msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." #: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" -msgstr "Groupe inexistant" +msgstr "Žádná taková skupina" #: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" -msgstr "Groupe vide" +msgstr "Skupina je prázdná" #: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " -msgstr "Groupe: " +msgstr "Skupina: " #: ../../mod/network.php:548 msgid "Contact: " -msgstr "Contact: " +msgstr "Kontakt: " #: ../../mod/network.php:550 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." +msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." #: ../../mod/network.php:555 msgid "Invalid contact." -msgstr "Contact invalide." +msgstr "Neplatný kontakt." #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" -msgstr "" +msgstr "Friendica Komunikační server - Nastavení" #: ../../mod/install.php:123 msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base." +msgstr "Nelze se připojit k databázi." #: ../../mod/install.php:127 msgid "Could not create table." -msgstr "Impossible de créer une table." +msgstr "Nelze vytvořit tabulku." #: ../../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." +msgstr "Vaše databáze Friendica byla nainstalována." #: ../../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." +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:139 ../../mod/install.php:206 #: ../../mod/install.php:521 msgid "Please see the file \"INSTALL.txt\"." -msgstr "Référez-vous au fichier \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." #: ../../mod/install.php:203 msgid "System check" -msgstr "Vérifications système" +msgstr "Testování systému" #: ../../mod/install.php:207 ../../mod/events.php:373 msgid "Next" -msgstr "Suivant" +msgstr "Dále" #: ../../mod/install.php:208 msgid "Check again" -msgstr "Vérifier à nouveau" +msgstr "Otestovat znovu" #: ../../mod/install.php:227 msgid "Database connection" -msgstr "Connexion à la base de données" +msgstr "Databázové spojení" #: ../../mod/install.php:228 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." +msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." #: ../../mod/install.php:229 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." +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:230 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." +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:234 msgid "Database Server Name" -msgstr "Serveur de base de données" +msgstr "Jméno databázového serveru" #: ../../mod/install.php:235 msgid "Database Login Name" -msgstr "Nom d'utilisateur de la base" +msgstr "Přihlašovací jméno k databázi" #: ../../mod/install.php:236 msgid "Database Login Password" -msgstr "Mot de passe de la base" +msgstr "Heslo k databázovému účtu " #: ../../mod/install.php:237 msgid "Database Name" -msgstr "Nom de la base" +msgstr "Jméno databáze" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "Site administrator email address" -msgstr "Adresse électronique de l'administrateur du site" +msgstr "Emailová adresa administrátora webu" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." +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:242 ../../mod/install.php:280 msgid "Please select a default timezone for your website" -msgstr "Sélectionner un fuseau horaire par défaut pour votre site" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" #: ../../mod/install.php:267 msgid "Site settings" -msgstr "Réglages du site" +msgstr "Nastavení webu" #: ../../mod/install.php:321 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." +msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." #: ../../mod/install.php:322 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See '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'" +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:326 msgid "PHP executable path" -msgstr "Chemin vers l'exécutable de PHP" +msgstr "Cesta k \"PHP executable\"" #: ../../mod/install.php:326 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." +msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." #: ../../mod/install.php:331 msgid "Command line PHP" -msgstr "Version \"ligne de commande\" de PHP" +msgstr "Příkazový řádek PHP" #: ../../mod/install.php:340 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" +msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" #: ../../mod/install.php:341 msgid "Found PHP version: " -msgstr "Version de PHP:" +msgstr "Nalezena PHP verze:" #: ../../mod/install.php:343 msgid "PHP cli binary" @@ -1721,11 +1720,11 @@ msgstr "PHP cli binary" 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é." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." #: ../../mod/install.php:355 msgid "This is required for message delivery to work." -msgstr "Ceci est requis pour que la livraison des messages fonctionne." +msgstr "Toto je nutné pro fungování doručování zpráv." #: ../../mod/install.php:357 msgid "PHP register_argc_argv" @@ -1735,1513 +1734,1516 @@ msgstr "PHP register_argc_argv" 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" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" #: ../../mod/install.php:379 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\"." +msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." #: ../../mod/install.php:381 msgid "Generate encryption keys" -msgstr "Générer les clés de chiffrement" +msgstr "Generovat kriptovací klíče" #: ../../mod/install.php:388 msgid "libCurl PHP module" -msgstr "Module libCurl de PHP" +msgstr "libCurl PHP modul" #: ../../mod/install.php:389 msgid "GD graphics PHP module" -msgstr "Module GD (graphiques) de PHP" +msgstr "GD graphics PHP modul" #: ../../mod/install.php:390 msgid "OpenSSL PHP module" -msgstr "Module OpenSSL de PHP" +msgstr "OpenSSL PHP modul" #: ../../mod/install.php:391 msgid "mysqli PHP module" -msgstr "Module Mysqli de PHP" +msgstr "mysqli PHP modul" #: ../../mod/install.php:392 msgid "mb_string PHP module" -msgstr "Module mb_string de PHP" +msgstr "mb_string PHP modul" #: ../../mod/install.php:397 ../../mod/install.php:399 msgid "Apache mod_rewrite module" -msgstr "Module mod_rewrite Apache" +msgstr "Apache mod_rewrite modul" #: ../../mod/install.php:397 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é." +msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." #: ../../mod/install.php:405 msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." +msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." #: ../../mod/install.php:409 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é." +msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." #: ../../mod/install.php:413 msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." +msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." #: ../../mod/install.php:417 msgid "Error: mysqli PHP module required but not installed." -msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." +msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." #: ../../mod/install.php:421 msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur: le module PHP mb_string est requis mais pas installé." +msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." #: ../../mod/install.php:438 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." -msgstr "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." +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:439 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." -msgstr "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." +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:440 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." -msgstr "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." +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:441 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\"." +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:444 msgid ".htconfig.php is writable" -msgstr "Fichier .htconfig.php accessible en écriture" +msgstr ".htconfig.php je editovatelné" #: ../../mod/install.php:454 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." +msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." #: ../../mod/install.php:455 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." -msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." +msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" #: ../../mod/install.php:456 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." +msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" #: ../../mod/install.php:457 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." +msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." #: ../../mod/install.php:460 msgid "view/smarty3 is writable" -msgstr "view/smarty3 est autorisé à l écriture" +msgstr "view/smarty3 je nastaven pro zápis" #: ../../mod/install.php:472 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." +msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." #: ../../mod/install.php:474 msgid "Url rewrite is working" -msgstr "La réécriture d'URL fonctionne." +msgstr "Url rewrite je funkční." #: ../../mod/install.php:484 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." -msgstr "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." +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:508 msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." +msgstr "Při vytváření databázových tabulek došlo k chybám." #: ../../mod/install.php:519 msgid "

What next

" -msgstr "

Ensuite

" +msgstr "

Co dál

" #: ../../mod/install.php:520 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'." +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/admin.php:55 msgid "Theme settings updated." -msgstr "Réglages du thème sauvés." +msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../mod/admin.php:101 ../../mod/admin.php:571 +#: ../../mod/admin.php:102 ../../mod/admin.php:573 msgid "Site" -msgstr "Site" +msgstr "Web" -#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 msgid "Users" -msgstr "Utilisateurs" +msgstr "Uživatelé" -#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 -#: ../../mod/settings.php:56 +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 msgid "Plugins" -msgstr "Extensions" +msgstr "Pluginy" -#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 msgid "Themes" -msgstr "Thèmes" +msgstr "Témata" -#: ../../mod/admin.php:105 +#: ../../mod/admin.php:106 msgid "DB updates" -msgstr "Mise-à-jour de la base" +msgstr "Aktualizace databáze" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 msgid "Logs" -msgstr "Journaux" +msgstr "Logy" -#: ../../mod/admin.php:125 ../../include/nav.php:180 +#: ../../mod/admin.php:126 ../../include/nav.php:180 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:127 msgid "Plugin Features" -msgstr "Propriétés des extensions" +msgstr "Funkčnosti rozšíření" -#: ../../mod/admin.php:128 +#: ../../mod/admin.php:129 msgid "User registrations waiting for confirmation" -msgstr "Inscriptions en attente de confirmation" +msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:187 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" -msgstr "Compte normal" +msgstr "Normální účet" -#: ../../mod/admin.php:188 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:856 msgid "Soapbox Account" -msgstr "Compte \"boîte à savon\"" +msgstr "Soapbox účet" -#: ../../mod/admin.php:189 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:857 msgid "Community/Celebrity Account" -msgstr "Compte de communauté/célébrité" +msgstr "Komunitní účet / Účet celebrity" -#: ../../mod/admin.php:190 ../../mod/admin.php:856 +#: ../../mod/admin.php:191 ../../mod/admin.php:858 msgid "Automatic Friend Account" -msgstr "Compte auto-amical" - -#: ../../mod/admin.php:191 -msgid "Blog Account" -msgstr "Compte de blog" +msgstr "Účet s automatickým schvalováním přátel" #: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Účet Blogu" + +#: ../../mod/admin.php:193 msgid "Private Forum" -msgstr "Forum privé" +msgstr "Soukromé fórum" -#: ../../mod/admin.php:211 +#: ../../mod/admin.php:212 msgid "Message queues" -msgstr "Files d'attente des messages" +msgstr "Fronty zpráv" -#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 -#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 -#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 msgid "Administration" -msgstr "Administration" +msgstr "Administrace" -#: ../../mod/admin.php:217 +#: ../../mod/admin.php:218 msgid "Summary" -msgstr "Résumé" +msgstr "Shrnutí" -#: ../../mod/admin.php:219 +#: ../../mod/admin.php:220 msgid "Registered users" -msgstr "Utilisateurs inscrits" - -#: ../../mod/admin.php:221 -msgid "Pending registrations" -msgstr "Inscriptions en attente" +msgstr "Registrovaní uživatelé" #: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Čekající registrace" + +#: ../../mod/admin.php:223 msgid "Version" -msgstr "Versio" +msgstr "Verze" -#: ../../mod/admin.php:224 +#: ../../mod/admin.php:225 msgid "Active plugins" -msgstr "Extensions activés" +msgstr "Aktivní pluginy" -#: ../../mod/admin.php:247 +#: ../../mod/admin.php:248 msgid "Can not parse base url. Must have at least ://" -msgstr "" +msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" -#: ../../mod/admin.php:483 +#: ../../mod/admin.php:485 msgid "Site settings updated." -msgstr "Réglages du site mis-à-jour." +msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:512 ../../mod/settings.php:822 +#: ../../mod/admin.php:514 ../../mod/settings.php:823 msgid "No special theme for mobile devices" -msgstr "Pas de thème particulier pour les terminaux mobiles" +msgstr "žádné speciální téma pro mobilní zařízení" -#: ../../mod/admin.php:529 ../../mod/contacts.php:408 +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 msgid "Never" -msgstr "Jamais" +msgstr "Nikdy" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:532 msgid "At post arrival" -msgstr "A l'arrivé d'une publication" +msgstr "Při obdržení příspěvku" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 msgid "Frequently" -msgstr "Fréquemment" +msgstr "Často" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 msgid "Hourly" -msgstr "Toutes les heures" +msgstr "každou hodinu" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 msgid "Twice daily" -msgstr "Deux fois par jour" +msgstr "Dvakrát denně" -#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 msgid "Daily" -msgstr "Chaque jour" +msgstr "denně" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:541 msgid "Multi user instance" -msgstr "Instance multi-utilisateurs" - -#: ../../mod/admin.php:557 -msgid "Closed" -msgstr "Fermé" - -#: ../../mod/admin.php:558 -msgid "Requires approval" -msgstr "Demande une apptrobation" +msgstr "Více uživatelská instance" #: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Uzavřeno" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Vyžaduje schválení" + +#: ../../mod/admin.php:561 msgid "Open" -msgstr "Ouvert" - -#: ../../mod/admin.php:563 -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:564 -msgid "Force all links to use SSL" -msgstr "Forcer tous les liens à utiliser SSL" +msgstr "Otevřená" #: ../../mod/admin.php:565 +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:566 +msgid "Force all links to use SSL" +msgstr "Vyžadovat u všech odkazů použití SSL" + +#: ../../mod/admin.php:567 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é)" +msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" -#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 -#: ../../mod/admin.php:1333 ../../mod/settings.php:608 -#: ../../mod/settings.php:718 ../../mod/settings.php:792 -#: ../../mod/settings.php:871 ../../mod/settings.php:1101 +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 msgid "Save Settings" -msgstr "Sauvegarder les paramétres" - -#: ../../mod/admin.php:574 -msgid "File upload" -msgstr "Téléversement de fichier" - -#: ../../mod/admin.php:575 -msgid "Policies" -msgstr "Politiques" +msgstr "Uložit Nastavení" #: ../../mod/admin.php:576 -msgid "Advanced" -msgstr "Avancé" +msgid "File upload" +msgstr "Nahrání souborů" #: ../../mod/admin.php:577 -msgid "Performance" -msgstr "Performance" +msgid "Policies" +msgstr "Politiky" #: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Pokročilé" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Výkonnost" + +#: ../../mod/admin.php:580 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" +msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:583 msgid "Site name" -msgstr "Nom du site" +msgstr "Název webu" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:584 msgid "Banner/Logo" -msgstr "Bannière/Logo" +msgstr "Banner/logo" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "Additional Info" -msgstr "Informations supplémentaires" +msgstr "Dodatečné informace" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." -msgstr "" +msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:586 msgid "System language" -msgstr "Langue du système" +msgstr "Systémový jazyk" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "System theme" -msgstr "Thème du système" +msgstr "Grafická šablona systému " -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 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é au niveau du profile utilisateur - changer les réglages du thème" +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:586 +#: ../../mod/admin.php:588 msgid "Mobile system theme" -msgstr "Thème mobile" +msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Theme for mobile devices" -msgstr "Thème pour les terminaux mobiles" +msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "SSL link policy" -msgstr "Politique SSL pour les liens" +msgstr "Politika SSL odkazů" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "Determines whether generated links should be forced to use SSL" -msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" +msgstr "Určuje, zda-li budou generované odkazy používat SSL" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Old style 'Share'" -msgstr "" +msgstr "Sdílení \"postaru\"" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" +msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "Hide help entry from navigation menu" -msgstr "Cacher l'aide du menu de navigation" +msgstr "skrýt nápovědu z navigačního menu" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." -msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." +msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Single user instance" -msgstr "Instance mono-utilisateur" +msgstr "Jednouživatelská instance" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Make this instance multi-user or single-user for the named user" -msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." +msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "Maximum image size" -msgstr "Taille maximale des images" +msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 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\"." +msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno." -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 msgid "Maximum image length" -msgstr "Longueur maximale des images" +msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 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." +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:593 +#: ../../mod/admin.php:595 msgid "JPEG image quality" -msgstr "Qualité JPEG des images" +msgstr "JPEG kvalita obrázku" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 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." +msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu." -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:597 msgid "Register policy" -msgstr "Politique d'inscription" +msgstr "Politika registrace" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "Maximum Daily Registrations" -msgstr "Inscriptions maximum par jour" +msgstr "Maximální počet denních registrací" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." -msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." +msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Register text" -msgstr "Texte d'inscription" +msgstr "Registrace textu" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur la page d'accueil." +msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" +msgstr "Účet je opuštěn po x dnech" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 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." +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:599 +#: ../../mod/admin.php:601 msgid "Allowed friend domains" -msgstr "Domaines autorisés" +msgstr "Povolené domény přátel" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 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" +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:600 +#: ../../mod/admin.php:602 msgid "Allowed email domains" -msgstr "Domaines courriel autorisés" +msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:602 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" +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:601 +#: ../../mod/admin.php:603 msgid "Block public" -msgstr "Interdire la publication globale" +msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:603 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." +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:602 +#: ../../mod/admin.php:604 msgid "Force publish" -msgstr "Forcer la publication globale" +msgstr "Publikovat" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 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." +msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu." -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Global directory update URL" -msgstr "URL de mise-à-jour de l'annuaire global" +msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 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." +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:604 +#: ../../mod/admin.php:606 msgid "Allow threaded items" -msgstr "autoriser le suivi des éléments par fil conducteur" +msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Allow infinite level threading for items on this site." -msgstr "Permettre une imbrication infinie des commentaires." +msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "Private posts by default for new users" -msgstr "Publications privées par défaut pour les nouveaux utilisateurs" +msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." -msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." +msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "Don't include post content in email notifications" -msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" +msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." -msgstr "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." +msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "Disallow public access to addons listed in the apps menu." -msgstr "Interdire l'acces public pour les extentions listées dans le menu apps." +msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." -msgstr "" +msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "Don't embed private images in posts" -msgstr "" +msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a " "while." -msgstr "" +msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Allow Users to set remote_self" -msgstr "Autoriser les utilisateurs à définir remote_self" +msgstr "Umožnit uživatelům nastavit " -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." -msgstr "" +msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Block multiple registrations" -msgstr "Interdire les inscriptions multiples" +msgstr "Blokovat více registrací" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Disallow users to register additional accounts for use as pages." -msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." +msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support" -msgstr "Support OpenID" +msgstr "podpora OpenID" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support for registration and logins." -msgstr "Supporter OpenID pour les inscriptions et connexions." +msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "Fullname check" -msgstr "Vérification du \"Prénom Nom\"" +msgstr "kontrola úplného jména" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 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" +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:613 +#: ../../mod/admin.php:615 msgid "UTF-8 Regular expressions" -msgstr "Regex UTF-8" +msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "Use PHP UTF8 regular expressions" -msgstr "Utiliser les expressions rationnelles de PHP en UTF8" +msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "Show Community Page" -msgstr "Montrer la \"Place publique\"" +msgstr "Zobrazit stránku komunity" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 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." +msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce." -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "Enable OStatus support" -msgstr "Activer le support d'OStatus" +msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." +msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "OStatus conversation completion interval" -msgstr "" +msgstr "Interval dokončení konverzace OStatus" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." -msgstr "" +msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Enable Diaspora support" -msgstr "Activer le support de Diaspora" +msgstr "Povolit podporu Diaspora" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Provide built-in Diaspora network compatibility." -msgstr "Fournir une compatibilité Diaspora intégrée." +msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "Only allow Friendica contacts" -msgstr "N'autoriser que les contacts Friendica" +msgstr "Povolit pouze Friendica kontakty" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 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." +msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované." -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 msgid "Verify SSL" -msgstr "Vérifier SSL" +msgstr "Ověřit SSL" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 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é." +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:620 +#: ../../mod/admin.php:622 msgid "Proxy user" -msgstr "Utilisateur du proxy" +msgstr "Proxy uživatel" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:623 msgid "Proxy URL" -msgstr "URL du proxy" +msgstr "Proxy URL adresa" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Network timeout" -msgstr "Dépassement du délai d'attente du réseau" +msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." +msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Delivery interval" -msgstr "Intervalle de transmission" +msgstr "Interval doručování" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 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." +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:624 +#: ../../mod/admin.php:626 msgid "Poll interval" -msgstr "Intervalle de réception" +msgstr "Dotazovací interval" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 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." +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:625 +#: ../../mod/admin.php:627 msgid "Maximum Load Average" -msgstr "Plafond de la charge moyenne" +msgstr "Maximální průměrné zatížení" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 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." +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:627 +#: ../../mod/admin.php:629 msgid "Use MySQL full text engine" -msgstr "Utiliser le moteur de recherche plein texte de MySQL" +msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." -msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." +msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress Language" -msgstr "Supprimer un langage" +msgstr "Potlačit Jazyk" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress language information in meta information about a posting." -msgstr "" +msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Path to item cache" -msgstr "Chemin vers le cache des objets." +msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Cache duration in seconds" -msgstr "Durée du cache en secondes" +msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." -msgstr "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)." - -#: ../../mod/admin.php:631 -msgid "Path for lock file" -msgstr "Chemin vers le ficher de verrouillage" - -#: ../../mod/admin.php:632 -msgid "Temp path" -msgstr "Chemin des fichiers temporaires" +msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)." #: ../../mod/admin.php:633 -msgid "Base path to installation" -msgstr "Chemin de base de l'installation" +msgid "Path for lock file" +msgstr "Cesta k souboru zámku" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Cesta k dočasným souborům" #: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Základní cesta k instalaci" + +#: ../../mod/admin.php:637 msgid "New base url" -msgstr "" +msgstr "Nová výchozí url adresa" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Update has been marked successful" -msgstr "Mise-à-jour validée comme 'réussie'" +msgstr "Aktualizace byla označena jako úspěšná." -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 #, php-format msgid "Executing %s failed. Check system logs." -msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système." +msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol." -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 #, php-format msgid "Update %s was successfully applied." -msgstr "Mise-à-jour %s appliquée avec succès." +msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 #, 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." +msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná." -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 #, php-format msgid "Update function %s could not be found." -msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée." +msgstr "Aktualizační funkce %s nebyla nalezena." -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "No failed updates." -msgstr "Pas de mises-à-jour échouées." - -#: ../../mod/admin.php:692 -msgid "Failed Updates" -msgstr "Mises-à-jour échouées" - -#: ../../mod/admin.php:693 -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." +msgstr "Žádné neúspěšné aktualizace." #: ../../mod/admin.php:694 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" +msgid "Failed Updates" +msgstr "Neúspěšné aktualizace" #: ../../mod/admin.php:695 +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:696 +msgid "Mark success (if update was manually applied)" +msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" + +#: ../../mod/admin.php:697 msgid "Attempt to execute this update step automatically" -msgstr "Tenter d'éxecuter cette étape automatiquement" +msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" -msgstr "Souscription réussi. Mail envoyé à l'utilisateur" +msgstr "Registrace úspěšná. Email zaslán uživateli" -#: ../../mod/admin.php:751 +#: ../../mod/admin.php:753 #, 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é" +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:758 +#: ../../mod/admin.php:760 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" -msgstr[0] "%s utilisateur supprimé" -msgstr[1] "%s utilisateurs supprimés" +msgstr[0] "%s uživatel smazán" +msgstr[1] "%s uživatelů smazáno" +msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:799 #, php-format msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" +msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' unblocked" -msgstr "Utilisateur '%s' débloqué" +msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' blocked" -msgstr "Utilisateur '%s' bloqué" - -#: ../../mod/admin.php:900 -msgid "Add User" -msgstr "Ajouter l'utilisateur" - -#: ../../mod/admin.php:901 -msgid "select all" -msgstr "tout sélectionner" +msgstr "Uživatel '%s' blokován" #: ../../mod/admin.php:902 -msgid "User registrations waiting for confirm" -msgstr "Inscriptions d'utilisateurs en attente de confirmation" +msgid "Add User" +msgstr "Přidat Uživatele" #: ../../mod/admin.php:903 -msgid "User waiting for permanent deletion" -msgstr "" +msgid "select all" +msgstr "Vybrat vše" #: ../../mod/admin.php:904 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:930 ../../mod/crepair.php:150 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -msgid "Name" -msgstr "Nom" - -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Courriel" +msgid "User registrations waiting for confirm" +msgstr "Registrace uživatele čeká na potvrzení" #: ../../mod/admin.php:905 -msgid "No registrations." -msgstr "Pas d'inscriptions." +msgid "User waiting for permanent deletion" +msgstr "Uživatel čeká na trvalé smazání" -#: ../../mod/admin.php:906 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Approuver" +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Datum žádosti" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/crepair.php:150 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 +msgid "Name" +msgstr "Jméno" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" #: ../../mod/admin.php:907 -msgid "Deny" -msgstr "Rejetter" +msgid "No registrations." +msgstr "Žádné registrace." -#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/admin.php:908 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Schválit" + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Odmítnout" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" -msgstr "Bloquer" +msgstr "Blokovat" -#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" -msgstr "Débloquer" +msgstr "Odblokovat" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:913 msgid "Site admin" -msgstr "Administration du Site" +msgstr "Site administrátor" -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:914 msgid "Account expired" -msgstr "Compte expiré" +msgstr "Účtu vypršela platnost" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:917 msgid "New User" -msgstr "Nouvel utilisateur" +msgstr "Nový uživatel" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Register date" -msgstr "Date d'inscription" +msgstr "Datum registrace" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last login" -msgstr "Dernière connexion" +msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last item" -msgstr "Dernier élément" +msgstr "Poslední položka" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:918 msgid "Deleted since" -msgstr "" +msgstr "Smazán od" -#: ../../mod/admin.php:917 ../../mod/settings.php:35 +#: ../../mod/admin.php:919 ../../mod/settings.php:36 msgid "Account" -msgstr "Compte" +msgstr "Účet" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:921 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?" +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:920 +#: ../../mod/admin.php:922 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:930 -msgid "Name of the new user." -msgstr "Nom du nouvel utilisateur." - -#: ../../mod/admin.php:931 -msgid "Nickname" -msgstr "Pseudo" - -#: ../../mod/admin.php:931 -msgid "Nickname of the new user." -msgstr "Pseudo du nouvel utilisateur." +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:932 -msgid "Email address of the new user." -msgstr "Adresse mail du nouvel utilisateur." +msgid "Name of the new user." +msgstr "Jméno nového uživatele" -#: ../../mod/admin.php:965 +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "Přezdívka" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "Přezdívka nového uživatele." + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "Emailová adresa nového uživatele." + +#: ../../mod/admin.php:967 #, php-format msgid "Plugin %s disabled." -msgstr "Extension %s désactivée." +msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:969 +#: ../../mod/admin.php:971 #, php-format msgid "Plugin %s enabled." -msgstr "Extension %s activée." +msgstr "Plugin %s povolen." -#: ../../mod/admin.php:979 ../../mod/admin.php:1182 +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 msgid "Disable" -msgstr "Désactiver" +msgstr "Zakázat" -#: ../../mod/admin.php:981 ../../mod/admin.php:1184 +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 msgid "Enable" -msgstr "Activer" +msgstr "Povolit" -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 msgid "Toggle" -msgstr "Activer/Désactiver" +msgstr "Přepnout" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " -msgstr "Auteur: " +msgstr "Autor: " -#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 msgid "Maintainer: " -msgstr "Mainteneur: " +msgstr "Správce: " -#: ../../mod/admin.php:1142 +#: ../../mod/admin.php:1155 msgid "No themes found." -msgstr "Aucun thème trouvé." +msgstr "Nenalezeny žádná témata." -#: ../../mod/admin.php:1204 +#: ../../mod/admin.php:1217 msgid "Screenshot" -msgstr "Capture d'écran" +msgstr "Snímek obrazovky" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1263 msgid "[Experimental]" -msgstr "[Expérimental]" +msgstr "[Experimentální]" -#: ../../mod/admin.php:1251 +#: ../../mod/admin.php:1264 msgid "[Unsupported]" -msgstr "[Non supporté]" +msgstr "[Nepodporováno]" -#: ../../mod/admin.php:1278 +#: ../../mod/admin.php:1291 msgid "Log settings updated." -msgstr "Réglages des journaux mis-à-jour." +msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1347 msgid "Clear" -msgstr "Effacer" +msgstr "Vyčistit" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1353 msgid "Enable Debugging" -msgstr "Activer le déboggage" +msgstr "Povolit ladění" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 msgid "Log file" -msgstr "Fichier de journaux" +msgstr "Soubor s logem" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 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." +msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica" -#: ../../mod/admin.php:1342 +#: ../../mod/admin.php:1355 msgid "Log level" -msgstr "Niveau de journalisaton" +msgstr "Úroveň auditu" -#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 msgid "Update now" -msgstr "Mettre à jour" +msgstr "Aktualizovat" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1405 msgid "Close" -msgstr "Fermer" +msgstr "Zavřít" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1411 msgid "FTP Host" -msgstr "Hôte FTP" +msgstr "Hostitel FTP" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1412 msgid "FTP Path" -msgstr "Chemin FTP" +msgstr "Cesta FTP" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1413 msgid "FTP User" -msgstr "Utilisateur FTP" +msgstr "FTP uživatel" -#: ../../mod/admin.php:1401 +#: ../../mod/admin.php:1414 msgid "FTP Password" -msgstr "Mot de passe FTP" +msgstr "FTP heslo" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 -#: ../../include/text.php:939 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" -msgstr "Recherche" +msgstr "Vyhledávání" #: ../../mod/_search.php:180 ../../mod/_search.php:206 #: ../../mod/search.php:170 ../../mod/search.php:196 #: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." -msgstr "Aucun résultat." +msgstr "Žádné výsledky." #: ../../mod/profile.php:180 msgid "Tips for New Members" -msgstr "Conseils aux nouveaux venus" +msgstr "Tipy pro nové členy" #: ../../mod/share.php:44 msgid "link" -msgstr "lien" +msgstr "odkaz" #: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a taggué %3$s de %2$s avec %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 msgid "Item not found" -msgstr "Élément introuvable" +msgstr "Položka nenalezena" #: ../../mod/editpost.php:39 msgid "Edit post" -msgstr "Éditer le billet" +msgstr "Upravit příspěvek" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 msgid "upload photo" -msgstr "envoi image" +msgstr "nahrát fotky" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 msgid "Attach file" -msgstr "Joindre fichier" +msgstr "Přiložit soubor" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 msgid "attach file" -msgstr "ajout fichier" +msgstr "přidat soubor" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 msgid "web link" -msgstr "lien web" +msgstr "webový odkaz" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 msgid "Insert video link" -msgstr "Insérer un lien video" +msgstr "Zadejte odkaz na video" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 msgid "video link" -msgstr "lien vidéo" +msgstr "odkaz na video" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 msgid "Insert audio link" -msgstr "Insérer un lien audio" +msgstr "Zadejte odkaz na zvukový záznam" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 msgid "audio link" -msgstr "lien audio" +msgstr "odkaz na audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 msgid "Set your location" -msgstr "Définir votre localisation" +msgstr "Nastavte vaši polohu" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 msgid "set location" -msgstr "spéc. localisation" +msgstr "nastavit místo" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" +msgstr "Odstranit adresu v prohlížeči" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 msgid "clear location" -msgstr "supp. localisation" +msgstr "vymazat místo" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 msgid "Permission settings" -msgstr "Réglages des permissions" +msgstr "Nastavení oprávnění" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 msgid "CC: email addresses" -msgstr "CC: adresses de courriel" +msgstr "skrytá kopie: e-mailové adresy" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 msgid "Public post" -msgstr "Billet publique" +msgstr "Veřejný příspěvek" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 msgid "Set title" -msgstr "Définir un titre" +msgstr "Nastavit titulek" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" +msgstr "Kategorie (čárkou oddělený seznam)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" +msgstr "Příklad: bob@example.com, mary@example.com" #: ../../mod/attach.php:8 msgid "Item not available." -msgstr "Elément non disponible." +msgstr "Položka není k dispozici." #: ../../mod/attach.php:20 msgid "Item was not found." -msgstr "Element introuvable." +msgstr "Položka nebyla nalezena." #: ../../mod/regmod.php:63 msgid "Account approved." -msgstr "Inscription validée." +msgstr "Účet schválen." #: ../../mod/regmod.php:100 #, php-format msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" +msgstr "Registrace zrušena pro %s" #: ../../mod/regmod.php:112 msgid "Please login." -msgstr "Merci de vous connecter." +msgstr "Přihlaste se, prosím." #: ../../mod/directory.php:57 msgid "Find on this site" -msgstr "Trouver sur ce site" +msgstr "Nalézt na tomto webu" #: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " -msgstr "Trouvé: " +msgstr "Zjištění: " #: ../../mod/directory.php:60 msgid "Site Directory" -msgstr "Annuaire local" +msgstr "Adresář serveru" #: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" -msgstr "Trouver" +msgstr "Najít" #: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " -msgstr "Age: " +msgstr "Věk: " #: ../../mod/directory.php:114 msgid "Gender: " -msgstr "Genre: " +msgstr "Pohlaví: " #: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 msgid "About:" -msgstr "À propos:" +msgstr "O mě:" #: ../../mod/directory.php:187 msgid "No entries (some entries may be hidden)." -msgstr "Aucune entrée (certaines peuvent être cachées)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." #: ../../mod/crepair.php:104 msgid "Contact settings applied." -msgstr "Réglages du contact appliqués." +msgstr "Nastavení kontaktu změněno" #: ../../mod/crepair.php:106 msgid "Contact update failed." -msgstr "Impossible d'appliquer les réglages." +msgstr "Aktualizace kontaktu selhala." #: ../../mod/crepair.php:137 msgid "Repair Contact Settings" -msgstr "Réglages du réparateur de contacts" +msgstr "Opravit nastavení kontaktu" #: ../../mod/crepair.php:139 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." -msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." +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:140 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." -msgstr "une photo" +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:146 msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" +msgstr "Návrat k editoru kontaktu" #: ../../mod/crepair.php:151 msgid "Account Nickname" -msgstr "Pseudo du compte" +msgstr "Přezdívka účtu" #: ../../mod/crepair.php:152 msgid "@Tagname - overrides Name/Nickname" -msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" #: ../../mod/crepair.php:153 msgid "Account URL" -msgstr "URL du compte" +msgstr "URL adresa účtu" #: ../../mod/crepair.php:154 msgid "Friend Request URL" -msgstr "Echec du téléversement de l'image." +msgstr "Žádost o přátelství URL" #: ../../mod/crepair.php:155 msgid "Friend Confirm URL" -msgstr "Accès public refusé." +msgstr "URL adresa potvrzení přátelství" #: ../../mod/crepair.php:156 msgid "Notification Endpoint URL" -msgstr "Aucune photo sélectionnée" +msgstr "Notifikační URL adresa" #: ../../mod/crepair.php:157 msgid "Poll/Feed URL" -msgstr "Téléverser des photos" +msgstr "Poll/Feed URL adresa" #: ../../mod/crepair.php:158 msgid "New photo from this URL" -msgstr "Nouvelle photo depuis cette URL" +msgstr "Nové foto z této URL adresy" #: ../../mod/crepair.php:159 msgid "Remote Self" -msgstr "" +msgstr "Remote Self" #: ../../mod/crepair.php:161 msgid "Mirror postings from this contact" -msgstr "" +msgstr "Zrcadlení správ od tohoto kontaktu" #: ../../mod/crepair.php:161 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." -msgstr "" +msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." #: ../../mod/uimport.php:66 msgid "Move account" -msgstr "Migrer le compte" +msgstr "Přesunout účet" #: ../../mod/uimport.php:67 msgid "You can import an account from another Friendica server." -msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." +msgstr "Můžete importovat účet z jiného Friendica serveru." #: ../../mod/uimport.php:68 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." -msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici." +msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." #: ../../mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (statusnet/identi.ca) or from Diaspora" -msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" +msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" #: ../../mod/uimport.php:70 msgid "Account file" -msgstr "Fichier du compte" +msgstr "Soubor s účtem" #: ../../mod/uimport.php:70 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" -msgstr "" +msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" #: ../../mod/lockview.php:31 ../../mod/lockview.php:39 msgid "Remote privacy information not available." -msgstr "Informations de confidentialité indisponibles." +msgstr "Vzdálené soukromé informace nejsou k dispozici." #: ../../mod/lockview.php:48 msgid "Visible to:" -msgstr "Visible par:" +msgstr "Viditelné pro:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 msgid "Save" -msgstr "Sauver" +msgstr "Uložit" #: ../../mod/help.php:79 msgid "Help:" -msgstr "Aide:" +msgstr "Nápověda:" #: ../../mod/help.php:84 ../../include/nav.php:113 msgid "Help" -msgstr "Aide" +msgstr "Nápověda" #: ../../mod/hcard.php:10 msgid "No profile" -msgstr "Aucun profil" +msgstr "Žádný profil" #: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." +msgstr "Toto pozvání již bylo přijato." #: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 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." +msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" #: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 msgid "Warning: profile location has no identifiable owner name." -msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." +msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" #: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 msgid "Warning: profile location has no profile photo." -msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." +msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." #: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d 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é" +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:170 msgid "Introduction complete." -msgstr "Phase d'introduction achevée." +msgstr "Představení dokončeno." #: ../../mod/dfrn_request.php:209 msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." +msgstr "Neopravitelná chyba protokolu" #: ../../mod/dfrn_request.php:237 msgid "Profile unavailable." -msgstr "Profil indisponible." +msgstr "Profil není k dispozici." #: ../../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." +msgstr "%s dnes obdržel příliš mnoho požadavků na připojení." #: ../../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." +msgstr "Ochrana proti spamu byla aktivována" #: ../../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." +msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." #: ../../mod/dfrn_request.php:326 msgid "Invalid locator" -msgstr "Localisateur invalide" +msgstr "Neplatný odkaz" #: ../../mod/dfrn_request.php:335 msgid "Invalid email address." -msgstr "Adresse courriel invalide." +msgstr "Neplatná emailová adresa" #: ../../mod/dfrn_request.php:362 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." +msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." #: ../../mod/dfrn_request.php:458 msgid "Unable to resolve your name at the provided location." -msgstr "Impossible de résoudre votre nom à l'emplacement fourni." +msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." #: ../../mod/dfrn_request.php:471 msgid "You have already introduced yourself here." -msgstr "Vous vous êtes déjà présenté ici." +msgstr "Již jste se zde zavedli." #: ../../mod/dfrn_request.php:475 #, php-format msgid "Apparently you are already friends with %s." -msgstr "Il semblerait que vous soyez déjà ami avec %s." +msgstr "Zřejmě jste již přátelé se %s." #: ../../mod/dfrn_request.php:496 msgid "Invalid profile URL." -msgstr "URL de profil invalide." +msgstr "Neplatné URL profilu." #: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 msgid "Disallowed profile URL." -msgstr "URL de profil interdite." +msgstr "Nepovolené URL profilu." #: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." +msgstr "Nepodařilo se aktualizovat kontakt." #: ../../mod/dfrn_request.php:592 msgid "Your introduction has been sent." -msgstr "Votre introduction a été envoyée." +msgstr "Vaše žádost o propojení byla odeslána." #: ../../mod/dfrn_request.php:645 msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." #: ../../mod/dfrn_request.php:659 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." -msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." +msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." #: ../../mod/dfrn_request.php:670 msgid "Hide this contact" -msgstr "Cacher ce contact" +msgstr "Skrýt tento kontakt" #: ../../mod/dfrn_request.php:673 #, php-format msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." +msgstr "Vítejte doma %s." #: ../../mod/dfrn_request.php:674 #, php-format msgid "Please confirm your introduction/connection request to %s." -msgstr "Merci de confirmer votre demande d'introduction auprès de %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." #: ../../mod/dfrn_request.php:675 msgid "Confirm" -msgstr "Confirmer" +msgstr "Potvrdit" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 msgid "[Name Withheld]" -msgstr "[Nom non-publié]" +msgstr "[Jméno odepřeno]" #: ../../mod/dfrn_request.php:811 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:" +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:827 msgid "Connect as an email follower (Coming soon)" -msgstr "Connecter un utilisateur de courriel (bientôt)" +msgstr "Připojte se jako emailový následovník (Již brzy)" #: ../../mod/dfrn_request.php:829 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." +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:832 msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" +msgstr "Požadavek o přátelství / kontaktování" #: ../../mod/dfrn_request.php:833 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" +msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" #: ../../mod/dfrn_request.php:834 msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit:" +msgstr "Odpovězte, prosím, následující:" #: ../../mod/dfrn_request.php:835 #, php-format msgid "Does %s know you?" -msgstr "Est-ce que %s vous connaît?" +msgstr "Zná Vás uživatel %s ?" #: ../../mod/dfrn_request.php:838 msgid "Add a personal note:" -msgstr "Ajouter une note personnelle:" +msgstr "Přidat osobní poznámku:" #: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 msgid "Friendica" @@ -3249,9 +3251,9 @@ msgstr "Friendica" #: ../../mod/dfrn_request.php:841 msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3261,943 +3263,953 @@ msgstr "Diaspora" 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 recherche Diaspora." +msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." #: ../../mod/dfrn_request.php:844 msgid "Your Identity Address:" -msgstr "Votre adresse d'identité:" +msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." #: ../../mod/dfrn_request.php:847 msgid "Submit Request" -msgstr "Envoyer la requête" +msgstr "Odeslat žádost" #: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 #: ../../mod/update_display.php:22 ../../mod/update_community.php:18 #: ../../mod/update_notes.php:41 msgid "[Embedded content - reload page to view]" -msgstr "[contenu incorporé - rechargez la page pour le voir]" +msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" #: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" -msgstr "Voir dans le contexte" +msgstr "Pohled v kontextu" #: ../../mod/contacts.php:104 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" -msgstr[0] "%d contact édité" -msgstr[1] "%d contacts édités." +msgstr[0] "%d kontakt upraven." +msgstr[1] "%d kontakty upraveny" +msgstr[2] "%d kontaktů upraveno" #: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." -msgstr "Impossible d'accéder à l'enregistrement du contact." +msgstr "Nelze získat přístup k záznamu kontaktu." #: ../../mod/contacts.php:149 msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil séléctionné." +msgstr "Nelze nalézt vybraný profil." #: ../../mod/contacts.php:178 msgid "Contact updated." -msgstr "Contact mis-à-jour." +msgstr "Kontakt aktualizován." #: ../../mod/contacts.php:278 msgid "Contact has been blocked" -msgstr "Le contact a été bloqué" +msgstr "Kontakt byl zablokován" #: ../../mod/contacts.php:278 msgid "Contact has been unblocked" -msgstr "Le contact n'est plus bloqué" +msgstr "Kontakt byl odblokován" #: ../../mod/contacts.php:288 msgid "Contact has been ignored" -msgstr "Le contact a été ignoré" +msgstr "Kontakt bude ignorován" #: ../../mod/contacts.php:288 msgid "Contact has been unignored" -msgstr "Le contact n'est plus ignoré" +msgstr "Kontakt přestal být ignorován" #: ../../mod/contacts.php:299 msgid "Contact has been archived" -msgstr "Contact archivé" +msgstr "Kontakt byl archivován" #: ../../mod/contacts.php:299 msgid "Contact has been unarchived" -msgstr "Contact désarchivé" +msgstr "Kontakt byl vrácen z archívu." #: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" -msgstr "Voulez-vous vraiment supprimer ce contact?" +msgstr "Opravdu chcete smazat tento kontakt?" #: ../../mod/contacts.php:341 msgid "Contact has been removed." -msgstr "Ce contact a été retiré." +msgstr "Kontakt byl odstraněn." #: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" -msgstr "Vous êtes ami (et réciproquement) avec %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" #: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" -msgstr "Vous partagez avec %s" +msgstr "Sdílíte s uživatelem %s" #: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" -msgstr "%s partage avec vous" +msgstr "uživatel %s sdílí s vámi" #: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." -msgstr "Les communications privées ne sont pas disponibles pour ce contact." +msgstr "Soukromá komunikace není dostupná pro tento kontakt." #: ../../mod/contacts.php:412 msgid "(Update was successful)" -msgstr "(Mise à jour effectuée avec succès)" +msgstr "(Aktualizace byla úspěšná)" #: ../../mod/contacts.php:412 msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" +msgstr "(Aktualizace nebyla úspěšná)" #: ../../mod/contacts.php:414 msgid "Suggest friends" -msgstr "Suggérer amitié/contact" +msgstr "Navrhněte přátelé" #: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" -msgstr "Type de réseau %s" +msgstr "Typ sítě: %s" #: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, 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" +msgstr[0] "%d sdílený kontakt" +msgstr[1] "%d sdílených kontaktů" +msgstr[2] "%d sdílených kontaktů" #: ../../mod/contacts.php:426 msgid "View all contacts" -msgstr "Voir tous les contacts" +msgstr "Zobrazit všechny kontakty" #: ../../mod/contacts.php:434 msgid "Toggle Blocked status" -msgstr "(dés)activer l'état \"bloqué\"" +msgstr "Přepnout stav Blokováno" #: ../../mod/contacts.php:437 ../../mod/contacts.php:491 #: ../../mod/contacts.php:701 msgid "Unignore" -msgstr "Ne plus ignorer" +msgstr "Přestat ignorovat" #: ../../mod/contacts.php:437 ../../mod/contacts.php:491 #: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" -msgstr "Ignorer" +msgstr "Ignorovat" #: ../../mod/contacts.php:440 msgid "Toggle Ignored status" -msgstr "(dés)activer l'état \"ignoré\"" +msgstr "Přepnout stav Ignorováno" #: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" -msgstr "Désarchiver" +msgstr "Vrátit z archívu" #: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" -msgstr "Archiver" +msgstr "Archivovat" #: ../../mod/contacts.php:447 msgid "Toggle Archive status" -msgstr "(dés)activer l'état \"archivé\"" +msgstr "Přepnout stav Archivováno" #: ../../mod/contacts.php:450 msgid "Repair" -msgstr "Réparer" +msgstr "Opravit" #: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" -msgstr "Réglages avancés du contact" +msgstr "Pokročilé nastavení kontaktu" #: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" -msgstr "Communications perdues avec ce contact !" +msgstr "Komunikace s tímto kontaktem byla ztracena!" #: ../../mod/contacts.php:462 msgid "Contact Editor" -msgstr "Éditeur de contact" +msgstr "Editor kontaktu" #: ../../mod/contacts.php:465 msgid "Profile Visibility" -msgstr "Visibilité du profil" +msgstr "Viditelnost profilu" #: ../../mod/contacts.php:466 #, 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." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." #: ../../mod/contacts.php:467 msgid "Contact Information / Notes" -msgstr "Informations de contact / Notes" +msgstr "Kontaktní informace / poznámky" #: ../../mod/contacts.php:468 msgid "Edit contact notes" -msgstr "Éditer les notes des contacts" +msgstr "Editovat poznámky kontaktu" #: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" +msgstr "Navštivte profil uživatele %s [%s]" #: ../../mod/contacts.php:474 msgid "Block/Unblock contact" -msgstr "Bloquer/débloquer ce contact" +msgstr "Blokovat / Odblokovat kontakt" #: ../../mod/contacts.php:475 msgid "Ignore contact" -msgstr "Ignorer ce contact" +msgstr "Ignorovat kontakt" #: ../../mod/contacts.php:476 msgid "Repair URL settings" -msgstr "Réparer les réglages d'URL" +msgstr "Opravit nastavení adresy URL " #: ../../mod/contacts.php:477 msgid "View conversations" -msgstr "Voir les conversations" +msgstr "Zobrazit konverzace" #: ../../mod/contacts.php:479 msgid "Delete contact" -msgstr "Effacer ce contact" +msgstr "Odstranit kontakt" #: ../../mod/contacts.php:483 msgid "Last update:" -msgstr "Dernière mise-à-jour :" +msgstr "Poslední aktualizace:" #: ../../mod/contacts.php:485 msgid "Update public posts" -msgstr "Met ses entrées publiques à jour: " +msgstr "Aktualizovat veřejné příspěvky" #: ../../mod/contacts.php:494 msgid "Currently blocked" -msgstr "Actuellement bloqué" +msgstr "V současnosti zablokováno" #: ../../mod/contacts.php:495 msgid "Currently ignored" -msgstr "Actuellement ignoré" +msgstr "V současnosti ignorováno" #: ../../mod/contacts.php:496 msgid "Currently archived" -msgstr "Actuellement archivé" +msgstr "Aktuálně archivován" #: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" -msgstr "Cacher ce contact aux autres" +msgstr "Skrýt tento kontakt před ostatními" #: ../../mod/contacts.php:497 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" +msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" #: ../../mod/contacts.php:498 msgid "Notification for new posts" -msgstr "Notification des nouvelles publications" +msgstr "Upozornění na nové příspěvky" #: ../../mod/contacts.php:498 msgid "Send a notification of every new post of this contact" -msgstr "" +msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" #: ../../mod/contacts.php:499 msgid "Fetch further information for feeds" -msgstr "" +msgstr "Načíst další informace pro kanál" #: ../../mod/contacts.php:550 msgid "Suggestions" -msgstr "Suggestions" +msgstr "Doporučení" #: ../../mod/contacts.php:553 msgid "Suggest potential friends" -msgstr "Suggérer des amis potentiels" +msgstr "Navrhnout potenciální přátele" #: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" -msgstr "Tous les contacts" +msgstr "Všechny kontakty" #: ../../mod/contacts.php:559 msgid "Show all contacts" -msgstr "Montrer tous les contacts" +msgstr "Zobrazit všechny kontakty" #: ../../mod/contacts.php:562 msgid "Unblocked" -msgstr "Non-bloqués" +msgstr "Odblokován" #: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" -msgstr "Ne montrer que les contacts non-bloqués" +msgstr "Zobrazit pouze neblokované kontakty" #: ../../mod/contacts.php:569 msgid "Blocked" -msgstr "Bloqués" +msgstr "Blokován" #: ../../mod/contacts.php:572 msgid "Only show blocked contacts" -msgstr "Ne montrer que les contacts bloqués" +msgstr "Zobrazit pouze blokované kontakty" #: ../../mod/contacts.php:576 msgid "Ignored" -msgstr "Ignorés" +msgstr "Ignorován" #: ../../mod/contacts.php:579 msgid "Only show ignored contacts" -msgstr "Ne montrer que les contacts ignorés" +msgstr "Zobrazit pouze ignorované kontakty" #: ../../mod/contacts.php:583 msgid "Archived" -msgstr "Archivés" +msgstr "Archivován" #: ../../mod/contacts.php:586 msgid "Only show archived contacts" -msgstr "Ne montrer que les contacts archivés" +msgstr "Zobrazit pouze archivované kontakty" #: ../../mod/contacts.php:590 msgid "Hidden" -msgstr "Cachés" +msgstr "Skrytý" #: ../../mod/contacts.php:593 msgid "Only show hidden contacts" -msgstr "Ne montrer que les contacts masqués" +msgstr "Zobrazit pouze skryté kontakty" #: ../../mod/contacts.php:641 msgid "Mutual Friendship" -msgstr "Relation réciproque" +msgstr "Vzájemné přátelství" #: ../../mod/contacts.php:645 msgid "is a fan of yours" -msgstr "Vous suit" +msgstr "je Váš fanoušek" #: ../../mod/contacts.php:649 msgid "you are a fan of" -msgstr "Vous le/la suivez" +msgstr "jste fanouškem" #: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" -msgstr "Éditer le contact" +msgstr "Editovat kontakt" #: ../../mod/contacts.php:692 msgid "Search your contacts" -msgstr "Rechercher dans vos contacts" +msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:699 ../../mod/settings.php:131 -#: ../../mod/settings.php:634 +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 msgid "Update" -msgstr "Mises-à-jour" +msgstr "Aktualizace" -#: ../../mod/settings.php:28 ../../mod/photos.php:80 +#: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" -msgstr "tout le monde" +msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/settings.php:40 +#: ../../mod/settings.php:41 msgid "Additional features" -msgstr "Fonctions supplémentaires" +msgstr "Další funkčnosti" -#: ../../mod/settings.php:45 +#: ../../mod/settings.php:46 msgid "Display" -msgstr "Afficher" +msgstr "Zobrazení" -#: ../../mod/settings.php:51 ../../mod/settings.php:774 +#: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" -msgstr "Réseaux sociaux" +msgstr "Sociální sítě" -#: ../../mod/settings.php:61 ../../include/nav.php:167 +#: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" -msgstr "Délégations" +msgstr "Delegace" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:67 msgid "Connected apps" -msgstr "Applications connectées" +msgstr "Propojené aplikace" -#: ../../mod/settings.php:71 ../../mod/uexport.php:85 +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" -msgstr "Exporter" +msgstr "Export osobních údajů" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:77 msgid "Remove account" -msgstr "Supprimer le compte" +msgstr "Odstranit účet" -#: ../../mod/settings.php:128 +#: ../../mod/settings.php:129 msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" +msgstr "Chybí některé důležité údaje!" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." +msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: ../../mod/settings.php:242 +#: ../../mod/settings.php:243 msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." +msgstr "Nastavení e-mailu aktualizována." -#: ../../mod/settings.php:257 +#: ../../mod/settings.php:258 msgid "Features updated" -msgstr "Fonctionnalités mises à jour" +msgstr "Aktualizované funkčnosti" -#: ../../mod/settings.php:318 +#: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" -msgstr "" +msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: ../../mod/settings.php:332 +#: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." -msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." +msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: ../../mod/settings.php:337 +#: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." +msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:346 msgid "Wrong password." -msgstr "Mauvais mot de passe." +msgstr "Špatné heslo." -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:357 msgid "Password changed." -msgstr "Mots de passe changés." +msgstr "Heslo bylo změněno." -#: ../../mod/settings.php:358 +#: ../../mod/settings.php:359 msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." +msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/settings.php:423 +#: ../../mod/settings.php:424 msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." +msgstr "Prosím použijte kratší jméno." -#: ../../mod/settings.php:425 +#: ../../mod/settings.php:426 msgid " Name too short." -msgstr " Nom trop court." +msgstr "Jméno je příliš krátké." -#: ../../mod/settings.php:434 +#: ../../mod/settings.php:435 msgid "Wrong Password" -msgstr "Mauvais mot de passe" +msgstr "Špatné heslo" -#: ../../mod/settings.php:439 +#: ../../mod/settings.php:440 msgid " Not valid email." -msgstr " Email invalide." +msgstr "Neplatný e-mail." -#: ../../mod/settings.php:445 +#: ../../mod/settings.php:446 msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." +msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/settings.php:500 +#: ../../mod/settings.php:501 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." +msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." -#: ../../mod/settings.php:504 +#: ../../mod/settings.php:505 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." +msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." -#: ../../mod/settings.php:534 +#: ../../mod/settings.php:535 msgid "Settings updated." -msgstr "Réglages mis à jour." +msgstr "Nastavení aktualizováno." -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:611 ../../mod/settings.php:637 -msgid "Consumer Key" -msgstr "Clé utilisateur" +msgstr "Přidat aplikaci" #: ../../mod/settings.php:612 ../../mod/settings.php:638 -msgid "Consumer Secret" -msgstr "Secret utilisateur" +msgid "Consumer Key" +msgstr "Consumer Key" #: ../../mod/settings.php:613 ../../mod/settings.php:639 -msgid "Redirect" -msgstr "Rediriger" +msgid "Consumer Secret" +msgstr "Consumer Secret" #: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Redirect" +msgstr "Přesměrování" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" -msgstr "URL de l'icône" +msgstr "URL ikony" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." +msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:669 msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:672 -msgid "Client key starts with" -msgstr "La clé cliente commence par" +msgstr "Připojené aplikace" #: ../../mod/settings.php:673 -msgid "No name" -msgstr "Sans nom" +msgid "Client key starts with" +msgstr "Klienský klíč začíná" #: ../../mod/settings.php:674 +msgid "No name" +msgstr "Bez názvu" + +#: ../../mod/settings.php:675 msgid "Remove authorization" -msgstr "Révoquer l'autorisation" +msgstr "Odstranit oprávnění" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:687 msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" +msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Plugin Settings" -msgstr "Extensions" +msgstr "Nastavení doplňku" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "Off" -msgstr "Éteint" +msgstr "Vypnuto" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "On" -msgstr "Allumé" +msgstr "Zapnuto" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:717 msgid "Additional Features" -msgstr "Fonctions supplémentaires" +msgstr "Další Funkčnosti" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 #, php-format msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" +msgstr "Vestavěná podpora pro připojení s %s je %s" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" -msgstr "activé" +msgstr "povoleno" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" -msgstr "désactivé" +msgstr "zakázáno" -#: ../../mod/settings.php:731 +#: ../../mod/settings.php:732 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:768 msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: ../../mod/settings.php:779 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" +msgstr "Přístup k elektronické poště je na tomto serveru zakázán." #: ../../mod/settings.php:780 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: ../../mod/settings.php:781 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." +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:781 +#: ../../mod/settings.php:782 msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" - -#: ../../mod/settings.php:783 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" +msgstr "Poslední úspěšná kontrola e-mailu:" #: ../../mod/settings.php:784 -msgid "IMAP port:" -msgstr "Port IMAP:" +msgid "IMAP server name:" +msgstr "jméno IMAP serveru:" #: ../../mod/settings.php:785 -msgid "Security:" -msgstr "Sécurité:" - -#: ../../mod/settings.php:785 ../../mod/settings.php:790 -msgid "None" -msgstr "Aucun(e)" +msgid "IMAP port:" +msgstr "IMAP port:" #: ../../mod/settings.php:786 -msgid "Email login name:" -msgstr "Nom de connexion:" +msgid "Security:" +msgstr "Zabezpečení:" + +#: ../../mod/settings.php:786 ../../mod/settings.php:791 +msgid "None" +msgstr "Žádný" #: ../../mod/settings.php:787 -msgid "Email password:" -msgstr "Mot de passe:" +msgid "Email login name:" +msgstr "přihlašovací jméno k e-mailu:" #: ../../mod/settings.php:788 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" +msgid "Email password:" +msgstr "heslo k Vašemu e-mailu:" #: ../../mod/settings.php:789 +msgid "Reply-to address:" +msgstr "Odpovědět na adresu:" + +#: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" -msgstr "Les notices publiques vont à tous les contacts courriel:" - -#: ../../mod/settings.php:790 -msgid "Action after import:" -msgstr "Action après import:" - -#: ../../mod/settings.php:790 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: ../../mod/settings.php:790 -msgid "Move to folder" -msgstr "Déplacer vers" +msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" #: ../../mod/settings.php:791 +msgid "Action after import:" +msgstr "Akce po importu:" + +#: ../../mod/settings.php:791 +msgid "Mark as seen" +msgstr "Označit jako přečtené" + +#: ../../mod/settings.php:791 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: ../../mod/settings.php:792 msgid "Move to folder:" -msgstr "Déplacer vers:" +msgstr "Přesunout do složky:" -#: ../../mod/settings.php:869 +#: ../../mod/settings.php:870 msgid "Display Settings" -msgstr "Affichage" +msgstr "Nastavení Zobrazení" -#: ../../mod/settings.php:875 ../../mod/settings.php:889 +#: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" -msgstr "Thème d'affichage:" +msgstr "Vybrat grafickou šablonu:" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:877 msgid "Mobile Theme:" -msgstr "Thème mobile:" - -#: ../../mod/settings.php:877 -msgid "Update browser every xx seconds" -msgstr "Mettre-à-jour l'affichage toutes les xx secondes" - -#: ../../mod/settings.php:877 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" +msgstr "Téma pro mobilní zařízení:" #: ../../mod/settings.php:878 -msgid "Number of items to display per page:" -msgstr "Nombre d’éléments par page:" +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" -#: ../../mod/settings.php:878 ../../mod/settings.php:879 -msgid "Maximum of 100 items" -msgstr "Maximum de 100 éléments" +#: ../../mod/settings.php:878 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekund, žádné maximum." #: ../../mod/settings.php:879 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" +msgid "Number of items to display per page:" +msgstr "Počet položek zobrazených na stránce:" + +#: ../../mod/settings.php:879 ../../mod/settings.php:880 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" #: ../../mod/settings.php:880 -msgid "Don't show emoticons" -msgstr "Ne pas afficher les émoticônes (smileys grahiques)" +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" #: ../../mod/settings.php:881 -msgid "Don't show notices" -msgstr "" +msgid "Don't show emoticons" +msgstr "Nezobrazovat emotikony" #: ../../mod/settings.php:882 -msgid "Infinite scroll" -msgstr "" +msgid "Don't show notices" +msgstr "Nezobrazovat oznámění" -#: ../../mod/settings.php:959 -msgid "Normal Account Page" -msgstr "Compte normal" +#: ../../mod/settings.php:883 +msgid "Infinite scroll" +msgstr "Nekonečné posouvání" #: ../../mod/settings.php:960 -msgid "This account is a normal personal profile" -msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" +msgid "User Types" +msgstr "Uživatelské typy" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Komunitní typy" + +#: ../../mod/settings.php:962 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" #: ../../mod/settings.php:963 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" +msgid "This account is a normal personal profile" +msgstr "Tento účet je běžný osobní profil" -#: ../../mod/settings.php:964 -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:966 +msgid "Soapbox Page" +msgstr "Stránka \"Soapbox\"" #: ../../mod/settings.php:967 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de communauté/célébrité" +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:968 -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:970 +msgid "Community Forum/Celebrity Account" +msgstr "Komunitní fórum/ účet celebrity" #: ../../mod/settings.php:971 -msgid "Automatic Friend Page" -msgstr "Compte d'\"amitié automatique\"" +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:972 -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:974 +msgid "Automatic Friend Page" +msgstr "Automatická stránka přítele" #: ../../mod/settings.php:975 +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:978 msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" +msgstr "Soukromé fórum [Experimentální]" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Private forum - approved members only" -msgstr "Forum privé - modéré en inscription" +msgstr "Soukromé fórum - pouze pro schválené členy" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." -msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." +msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1001 msgid "Publish your default profile in your local site directory?" -msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" +msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1007 msgid "Publish your default profile in the global social directory?" -msgstr "Publier votre profil par défaut sur l'annuaire social global?" +msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1015 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?" +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:1016 +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 msgid "Hide your profile details from unknown viewers?" -msgstr "Cacher les détails du profil aux visiteurs inconnus?" +msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" +msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à tagguer vos notices?" +msgstr "Povolit přátelům označovat Vaše příspěvky?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1036 msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" +msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1042 msgid "Permit unknown people to send you private mail?" -msgstr "Autoriser les messages privés d'inconnus?" +msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1050 msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." +msgstr "Profil není zveřejněn." -#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" -msgstr "ou" +msgstr "nebo" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1058 msgid "Your Identity Address is" -msgstr "L'adresse de votre identité est" - -#: ../../mod/settings.php:1066 -msgid "Automatically expire posts after this many days:" -msgstr "Les publications expirent automatiquement après (en jours) :" - -#: ../../mod/settings.php:1066 -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:1067 -msgid "Advanced expiration settings" -msgstr "Réglages avancés de l'expiration" - -#: ../../mod/settings.php:1068 -msgid "Advanced Expiration" -msgstr "Expiration (avancé)" +msgstr "Vaše adresa identity je" #: ../../mod/settings.php:1069 -msgid "Expire posts:" -msgstr "Faire expirer les contenus:" +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: ../../mod/settings.php:1069 +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:1070 -msgid "Expire personal notes:" -msgstr "Faire expirer les notes personnelles:" +msgid "Advanced expiration settings" +msgstr "Pokročilé nastavení expirací" #: ../../mod/settings.php:1071 -msgid "Expire starred posts:" -msgstr "Faire expirer les contenus marqués:" +msgid "Advanced Expiration" +msgstr "Nastavení expirací" #: ../../mod/settings.php:1072 -msgid "Expire photos:" -msgstr "Faire expirer les photos:" +msgid "Expire posts:" +msgstr "Expirovat příspěvky:" #: ../../mod/settings.php:1073 +msgid "Expire personal notes:" +msgstr "Expirovat osobní poznámky:" + +#: ../../mod/settings.php:1074 +msgid "Expire starred posts:" +msgstr "Expirovat příspěvky s hvězdou:" + +#: ../../mod/settings.php:1075 +msgid "Expire photos:" +msgstr "Expirovat fotografie:" + +#: ../../mod/settings.php:1076 msgid "Only expire posts by others:" -msgstr "Faire expirer seulement les messages des autres :" +msgstr "Přízpěvky expirovat pouze ostatními:" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1102 msgid "Account Settings" -msgstr "Compte" - -#: ../../mod/settings.php:1107 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: ../../mod/settings.php:1108 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: ../../mod/settings.php:1109 -msgid "Confirm:" -msgstr "Confirmer:" - -#: ../../mod/settings.php:1109 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" +msgstr "Nastavení účtu" #: ../../mod/settings.php:1110 -msgid "Current Password:" -msgstr "Mot de passe actuel:" - -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 -msgid "Your current password to confirm the changes" -msgstr "Votre mot de passe actuel pour confirmer les modifications" +msgid "Password Settings" +msgstr "Nastavení hesla" #: ../../mod/settings.php:1111 +msgid "New Password:" +msgstr "Nové heslo:" + +#: ../../mod/settings.php:1112 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: ../../mod/settings.php:1112 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: ../../mod/settings.php:1113 +msgid "Current Password:" +msgstr "Stávající heslo:" + +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 +msgid "Your current password to confirm the changes" +msgstr "Vaše stávající heslo k potvrzení změn" + +#: ../../mod/settings.php:1114 msgid "Password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:1115 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nom complet:" - -#: ../../mod/settings.php:1117 -msgid "Email Address:" -msgstr "Adresse courriel:" +msgstr "Heslo: " #: ../../mod/settings.php:1118 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" +msgid "Basic Settings" +msgstr "Základní nastavení" -#: ../../mod/settings.php:1119 -msgid "Default Post Location:" -msgstr "Publication par défaut depuis :" +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Celé jméno:" #: ../../mod/settings.php:1120 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: ../../mod/settings.php:1121 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: ../../mod/settings.php:1122 +msgid "Default Post Location:" +msgstr "Výchozí umístění příspěvků:" #: ../../mod/settings.php:1123 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: ../../mod/settings.php:1125 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" +msgid "Use Browser Location:" +msgstr "Používat umístění dle prohlížeče:" #: ../../mod/settings.php:1126 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: ../../mod/settings.php:1128 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet žádostí o přátelství za den:" + +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 +msgid "(to prevent spam abuse)" +msgstr "(Aby se zabránilo spamu)" + +#: ../../mod/settings.php:1129 msgid "Default Post Permissions" -msgstr "Permissions par défaut sur les articles" +msgstr "Výchozí oprávnění pro příspěvek" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" +msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 #: ../../mod/photos.php:1515 msgid "Show to Groups" -msgstr "Montrer aux groupes" +msgstr "Zobrazit ve Skupinách" -#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 #: ../../mod/photos.php:1516 msgid "Show to Contacts" -msgstr "Montrer aux Contacts" +msgstr "Zobrazit v Kontaktech" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1141 msgid "Default Private Post" -msgstr "Message privé par défaut" +msgstr "Výchozí Soukromý příspěvek" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1142 msgid "Default Public Post" -msgstr "Message publique par défaut" +msgstr "Výchozí Veřejný příspěvek" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" -msgstr "Permissions par défaut sur les nouveaux articles" - -#: ../../mod/settings.php:1155 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de messages privés d'inconnus par jour:" +msgstr "Výchozí oprávnění pro nové příspěvky" #: ../../mod/settings.php:1158 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: ../../mod/settings.php:1159 -msgid "By default post a status message when:" -msgstr "Par défaut, poster un statut quand:" - -#: ../../mod/settings.php:1160 -msgid "accepting a friend request" -msgstr "j'accepte un ami" +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí:" #: ../../mod/settings.php:1161 -msgid "joining a forum/community" -msgstr "joignant un forum/une communauté" +msgid "Notification Settings" +msgstr "Nastavení notifikací" #: ../../mod/settings.php:1162 -msgid "making an interesting profile change" -msgstr "je fais une modification intéressante de mon profil" +msgid "By default post a status message when:" +msgstr "Defaultně posílat statusové zprávy když:" #: ../../mod/settings.php:1163 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" +msgid "accepting a friend request" +msgstr "akceptuji požadavek na přátelství" #: ../../mod/settings.php:1164 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" +msgid "joining a forum/community" +msgstr "připojující se k fóru/komunitě" #: ../../mod/settings.php:1165 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" +msgid "making an interesting profile change" +msgstr "provedení zajímavé profilové změny" #: ../../mod/settings.php:1166 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" +msgid "Send a notification email when:" +msgstr "Poslat notifikaci e-mailem, když" #: ../../mod/settings.php:1167 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" +msgid "You receive an introduction" +msgstr "obdržíte žádost o propojení" #: ../../mod/settings.php:1168 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" +msgid "Your introductions are confirmed" +msgstr "Vaše žádosti jsou potvrzeny" #: ../../mod/settings.php:1169 -msgid "You receive a friend suggestion" -msgstr "Vous avez reçu une suggestion d'ami" +msgid "Someone writes on your profile wall" +msgstr "někdo Vám napíše na Vaši profilovou stránku" #: ../../mod/settings.php:1170 -msgid "You are tagged in a post" -msgstr "Vous avez été repéré dans une publication" +msgid "Someone writes a followup comment" +msgstr "někdo Vám napíše následný komentář" #: ../../mod/settings.php:1171 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous avez été sollicité dans une publication" +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: ../../mod/settings.php:1172 +msgid "You receive a friend suggestion" +msgstr "Obdržel jste návrh přátelství" + +#: ../../mod/settings.php:1173 +msgid "You are tagged in a post" +msgstr "Jste označen v příspěvku" #: ../../mod/settings.php:1174 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/page" +msgid "You are poked/prodded/etc. in a post" +msgstr "Byl Jste šťouchnout v příspěvku" -#: ../../mod/settings.php:1175 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifier le comportement de ce compte dans certaines situations" +#: ../../mod/settings.php:1177 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" #: ../../mod/settings.php:1178 -msgid "Relocate" -msgstr "" +msgid "Change the behaviour of this account for special situations" +msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1181 +msgid "Relocate" +msgstr "Změna umístění" + +#: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." -msgstr "" +msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" -msgstr "" +msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" #: ../../mod/profiles.php:37 msgid "Profile deleted." -msgstr "Profil supprimé." +msgstr "Profil smazán." #: ../../mod/profiles.php:55 ../../mod/profiles.php:89 msgid "Profile-" @@ -4205,341 +4217,341 @@ msgstr "Profil-" #: ../../mod/profiles.php:74 ../../mod/profiles.php:117 msgid "New profile created." -msgstr "Nouveau profil créé." +msgstr "Nový profil vytvořen." #: ../../mod/profiles.php:95 msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." +msgstr "Profil není možné naklonovat." #: ../../mod/profiles.php:170 msgid "Profile Name is required." -msgstr "Le nom du profil est requis." +msgstr "Jméno profilu je povinné." #: ../../mod/profiles.php:321 msgid "Marital Status" -msgstr "Statut marital" +msgstr "Rodinný Stav" #: ../../mod/profiles.php:325 msgid "Romantic Partner" -msgstr "Partenaire/conjoint" +msgstr "Romatický partner" #: ../../mod/profiles.php:329 msgid "Likes" -msgstr "Derniers \"J'aime\"" +msgstr "Libí se mi" #: ../../mod/profiles.php:333 msgid "Dislikes" -msgstr "Derniers \"Je n'aime pas\"" +msgstr "Nelibí se mi" #: ../../mod/profiles.php:337 msgid "Work/Employment" -msgstr "Travail/Occupation" +msgstr "Práce/Zaměstnání" #: ../../mod/profiles.php:340 msgid "Religion" -msgstr "Religion" +msgstr "Náboženství" #: ../../mod/profiles.php:344 msgid "Political Views" -msgstr "Tendance politique" +msgstr "Politické přesvědčení" #: ../../mod/profiles.php:348 msgid "Gender" -msgstr "Sexe" +msgstr "Pohlaví" #: ../../mod/profiles.php:352 msgid "Sexual Preference" -msgstr "Préférence sexuelle" +msgstr "Sexuální orientace" #: ../../mod/profiles.php:356 msgid "Homepage" -msgstr "Site internet" +msgstr "Domácí stránka" #: ../../mod/profiles.php:360 msgid "Interests" -msgstr "Centres d'intérêt" +msgstr "Zájmy" #: ../../mod/profiles.php:364 msgid "Address" -msgstr "Adresse" +msgstr "Adresa" #: ../../mod/profiles.php:371 msgid "Location" -msgstr "Localisation" +msgstr "Lokace" #: ../../mod/profiles.php:454 msgid "Profile updated." -msgstr "Profil mis à jour." +msgstr "Profil aktualizován." #: ../../mod/profiles.php:525 msgid " and " -msgstr " et " +msgstr " a " #: ../../mod/profiles.php:533 msgid "public profile" -msgstr "profil public" +msgstr "veřejný profil" #: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" #: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" -msgstr "Visiter le %2$s de %1$s" +msgstr " - Navštivte %2$s uživatele %1$s" #: ../../mod/profiles.php:540 #, 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." +msgstr "%1$s aktualizoval %2$s, změnou %3$s." #: ../../mod/profiles.php:613 msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce 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:633 msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" +msgstr "Upravit podrobnosti profilu " #: ../../mod/profiles.php:635 msgid "Change Profile Photo" -msgstr "Changer la photo du profil" +msgstr "Změna Profilové fotky" #: ../../mod/profiles.php:636 msgid "View this profile" -msgstr "Voir ce profil" +msgstr "Zobrazit tento profil" #: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" +msgstr "Vytvořit nový profil pomocí tohoto nastavení" #: ../../mod/profiles.php:638 msgid "Clone this profile" -msgstr "Cloner ce profil" +msgstr "Klonovat tento profil" #: ../../mod/profiles.php:639 msgid "Delete this profile" -msgstr "Supprimer ce profil" +msgstr "Smazat tento profil" #: ../../mod/profiles.php:640 msgid "Profile Name:" -msgstr "Nom du profil:" +msgstr "Jméno profilu:" #: ../../mod/profiles.php:641 msgid "Your Full Name:" -msgstr "Votre nom complet:" +msgstr "Vaše celé jméno:" #: ../../mod/profiles.php:642 msgid "Title/Description:" -msgstr "Titre/Description:" +msgstr "Název / Popis:" #: ../../mod/profiles.php:643 msgid "Your Gender:" -msgstr "Votre genre:" +msgstr "Vaše pohlaví:" #: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" -msgstr "Anniversaire (%s):" +msgstr "Narozeniny uživatele (%s):" #: ../../mod/profiles.php:645 msgid "Street Address:" -msgstr "Adresse postale:" +msgstr "Ulice:" #: ../../mod/profiles.php:646 msgid "Locality/City:" -msgstr "Ville/Localité:" +msgstr "Město:" #: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" -msgstr "Code postal:" +msgstr "PSČ:" #: ../../mod/profiles.php:648 msgid "Country:" -msgstr "Pays:" +msgstr "Země:" #: ../../mod/profiles.php:649 msgid "Region/State:" -msgstr "Région/État:" +msgstr "Region / stát:" #: ../../mod/profiles.php:650 msgid " Marital Status:" -msgstr " Statut marital:" +msgstr " Rodinný stav:" #: ../../mod/profiles.php:651 msgid "Who: (if applicable)" -msgstr "Qui: (si pertinent)" +msgstr "Kdo: (pokud je možné)" #: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" #: ../../mod/profiles.php:653 msgid "Since [date]:" -msgstr "Depuis [date] :" +msgstr "Od [data]:" #: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" +msgstr "Sexuální preference:" #: ../../mod/profiles.php:655 msgid "Homepage URL:" -msgstr "Page personnelle:" +msgstr "Odkaz na domovskou stránku:" #: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" -msgstr " Ville d'origine:" +msgstr "Rodné město" #: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" -msgstr "Opinions politiques:" +msgstr "Politické přesvědčení:" #: ../../mod/profiles.php:658 msgid "Religious Views:" -msgstr "Opinions religieuses:" +msgstr "Náboženské přesvědčení:" #: ../../mod/profiles.php:659 msgid "Public Keywords:" -msgstr "Mots-clés publics:" +msgstr "Veřejná klíčová slova:" #: ../../mod/profiles.php:660 msgid "Private Keywords:" -msgstr "Mots-clés privés:" +msgstr "Soukromá klíčová slova:" #: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" -msgstr "J'aime :" +msgstr "Líbí se:" #: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" -msgstr "Je n'aime pas :" +msgstr "Nelibí se:" #: ../../mod/profiles.php:663 msgid "Example: fishing photography software" -msgstr "Exemple: football dessin programmation" +msgstr "Příklad: fishing photography software" #: ../../mod/profiles.php:664 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)" +msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" #: ../../mod/profiles.php:665 msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" +msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" #: ../../mod/profiles.php:666 msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." +msgstr "Řekněte nám něco o sobě ..." #: ../../mod/profiles.php:667 msgid "Hobbies/Interests" -msgstr "Passe-temps/Centres d'intérêt" +msgstr "Koníčky/zájmy" #: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" -msgstr "Coordonnées/Réseaux sociaux" +msgstr "Kontaktní informace a sociální sítě" #: ../../mod/profiles.php:669 msgid "Musical interests" -msgstr "Goûts musicaux" +msgstr "Hudební vkus" #: ../../mod/profiles.php:670 msgid "Books, literature" -msgstr "Lectures" +msgstr "Knihy, literatura" #: ../../mod/profiles.php:671 msgid "Television" -msgstr "Télévision" +msgstr "Televize" #: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" +msgstr "Film/tanec/kultura/zábava" #: ../../mod/profiles.php:673 msgid "Love/romance" -msgstr "Amour/Romance" +msgstr "Láska/romantika" #: ../../mod/profiles.php:674 msgid "Work/employment" -msgstr "Activité professionnelle/Occupation" +msgstr "Práce/zaměstnání" #: ../../mod/profiles.php:675 msgid "School/education" -msgstr "Études/Formation" +msgstr "Škola/vzdělání" #: ../../mod/profiles.php:680 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." +msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" -msgstr "Editer/gérer les profils" +msgstr "Upravit / Spravovat profily" #: ../../mod/group.php:29 msgid "Group created." -msgstr "Groupe créé." +msgstr "Skupina vytvořena." #: ../../mod/group.php:35 msgid "Could not create group." -msgstr "Impossible de créer le groupe." +msgstr "Nelze vytvořit skupinu." #: ../../mod/group.php:47 ../../mod/group.php:140 msgid "Group not found." -msgstr "Groupe introuvable." +msgstr "Skupina nenalezena." #: ../../mod/group.php:60 msgid "Group name changed." -msgstr "Groupe renommé." +msgstr "Název skupiny byl změněn." #: ../../mod/group.php:87 msgid "Save Group" -msgstr "Sauvegarder le groupe" +msgstr "Uložit Skupinu" #: ../../mod/group.php:93 msgid "Create a group of contacts/friends." -msgstr "Créez un groupe de contacts/amis." +msgstr "Vytvořit skupinu kontaktů / přátel." #: ../../mod/group.php:94 ../../mod/group.php:180 msgid "Group Name: " -msgstr "Nom du groupe: " +msgstr "Název skupiny: " #: ../../mod/group.php:113 msgid "Group removed." -msgstr "Groupe enlevé." +msgstr "Skupina odstraněna. " #: ../../mod/group.php:115 msgid "Unable to remove group." -msgstr "Impossible d'enlever le groupe." +msgstr "Nelze odstranit skupinu." #: ../../mod/group.php:179 msgid "Group Editor" -msgstr "Éditeur de groupe" +msgstr "Editor skupin" #: ../../mod/group.php:192 msgid "Members" -msgstr "Membres" +msgstr "Členové" #: ../../mod/group.php:224 ../../mod/profperm.php:105 msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" #: ../../mod/babel.php:17 msgid "Source (bbcode) text:" -msgstr "Texte source (bbcode) :" +msgstr "Zdrojový text (bbcode):" #: ../../mod/babel.php:23 msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texte source (Diaspora) à convertir en BBcode :" +msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" #: ../../mod/babel.php:31 msgid "Source input: " -msgstr "Source input: " +msgstr "Zdrojový vstup: " #: ../../mod/babel.php:35 msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML brut)" +msgstr "bb2html (raw HTML): " #: ../../mod/babel.php:39 msgid "bb2html: " @@ -4567,113 +4579,114 @@ msgstr "bb2md2html2bb: " #: ../../mod/babel.php:69 msgid "Source input (Diaspora format): " -msgstr "Texte source (format Diaspora) :" +msgstr "Vstupní data (ve formátu Diaspora): " #: ../../mod/babel.php:74 msgid "diaspora2bb: " -msgstr "diaspora2bb :" +msgstr "diaspora2bb: " #: ../../mod/community.php:23 msgid "Not available." -msgstr "Indisponible." +msgstr "Není k dispozici." #: ../../mod/follow.php:27 msgid "Contact added" -msgstr "Contact ajouté" +msgstr "Kontakt přidán" #: ../../mod/notify.php:61 ../../mod/notifications.php:332 msgid "No more system notifications." -msgstr "Pas plus de notifications système." +msgstr "Žádné další systémová upozornění." #: ../../mod/notify.php:65 ../../mod/notifications.php:336 msgid "System Notifications" -msgstr "Notifications du système" +msgstr "Systémová upozornění" #: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" -msgstr "Nouveau message" +msgstr "Nová zpráva" #: ../../mod/message.php:67 msgid "Unable to locate contact information." -msgstr "Impossible de localiser les informations du contact." +msgstr "Nepodařilo se najít kontaktní informace." #: ../../mod/message.php:182 ../../mod/notifications.php:103 #: ../../include/nav.php:158 msgid "Messages" -msgstr "Messages" +msgstr "Zprávy" #: ../../mod/message.php:207 msgid "Do you really want to delete this message?" -msgstr "Voulez-vous vraiment supprimer ce message ?" +msgstr "Opravdu chcete smazat tuto zprávu?" #: ../../mod/message.php:227 msgid "Message deleted." -msgstr "Message supprimé." +msgstr "Zpráva odstraněna." #: ../../mod/message.php:258 msgid "Conversation removed." -msgstr "Conversation supprimée." +msgstr "Konverzace odstraněna." #: ../../mod/message.php:371 msgid "No messages." -msgstr "Aucun message." +msgstr "Žádné zprávy." #: ../../mod/message.php:378 #, php-format msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" +msgstr "Neznámý odesilatel - %s" #: ../../mod/message.php:381 #, php-format msgid "You and %s" -msgstr "Vous et %s" +msgstr "Vy a %s" #: ../../mod/message.php:384 #, php-format msgid "%s and You" -msgstr "%s et vous" +msgstr "%s a Vy" #: ../../mod/message.php:405 ../../mod/message.php:546 msgid "Delete conversation" -msgstr "Effacer conversation" +msgstr "Odstranit konverzaci" #: ../../mod/message.php:408 msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +msgstr "D M R - g:i A" #: ../../mod/message.php:411 #, php-format msgid "%d message" msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" +msgstr[0] "%d zpráva" +msgstr[1] "%d zprávy" +msgstr[2] "%d zpráv" #: ../../mod/message.php:450 msgid "Message not available." -msgstr "Message indisponible." +msgstr "Zpráva není k dispozici." #: ../../mod/message.php:520 msgid "Delete message" -msgstr "Effacer message" +msgstr "Smazat zprávu" #: ../../mod/message.php:548 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." +msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." #: ../../mod/message.php:552 msgid "Send Reply" -msgstr "Répondre" +msgstr "Poslat odpověď" #: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" +msgstr "%1$s nemá rád %2$s na %3$s" #: ../../mod/oexchange.php:25 msgid "Post successful." -msgstr "Publication réussie." +msgstr "Příspěvek úspěšně odeslán" #: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../include/bb2diaspora.php:133 @@ -4682,465 +4695,464 @@ msgstr "l F d, Y \\@ g:i A" #: ../../mod/localtime.php:24 msgid "Time Conversion" -msgstr "Conversion temporelle" +msgstr "Časová konverze" #: ../../mod/localtime.php:26 msgid "" "Friendica 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 poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách" #: ../../mod/localtime.php:30 #, php-format msgid "UTC time: %s" -msgstr "Temps UTC : %s" +msgstr "UTC čas: %s" #: ../../mod/localtime.php:33 #, php-format msgid "Current timezone: %s" -msgstr "Zone de temps courante : %s" +msgstr "Aktuální časové pásmo: %s" #: ../../mod/localtime.php:36 #, php-format msgid "Converted localtime: %s" -msgstr "Temps local converti : %s" +msgstr "Převedený lokální čas : %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" -msgstr "Sélectionner votre zone :" +msgstr "Prosím, vyberte své časové pásmo:" #: ../../mod/filer.php:30 ../../include/conversation.php:1004 #: ../../include/conversation.php:1022 msgid "Save to Folder:" -msgstr "Sauver dans le Dossier:" +msgstr "Uložit do složky:" #: ../../mod/filer.php:30 msgid "- select -" -msgstr "- choisir -" +msgstr "- vyber -" #: ../../mod/profperm.php:25 ../../mod/profperm.php:55 msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." +msgstr "Neplatný identifikátor profilu." #: ../../mod/profperm.php:101 msgid "Profile Visibility Editor" -msgstr "Éditer la visibilité du profil" +msgstr "Editor viditelnosti profilu " #: ../../mod/profperm.php:114 msgid "Visible To" -msgstr "Visible par" +msgstr "Viditelný pro" #: ../../mod/profperm.php:130 msgid "All Contacts (with secure profile access)" -msgstr "Tous les contacts (ayant un accès sécurisé)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" #: ../../mod/viewcontacts.php:39 msgid "No contacts." -msgstr "Aucun contact." +msgstr "Žádné kontakty." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 msgid "View Contacts" -msgstr "Voir les contacts" +msgstr "Zobrazit kontakty" #: ../../mod/dirfind.php:26 msgid "People Search" -msgstr "Recherche de personnes" +msgstr "Vyhledávání lidí" #: ../../mod/dirfind.php:60 ../../mod/match.php:65 msgid "No matches" -msgstr "Aucune correspondance" +msgstr "Žádné shody" -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 msgid "Upload New Photos" -msgstr "Téléverser de nouvelles photos" +msgstr "Nahrát nové fotografie" #: ../../mod/photos.php:144 msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" +msgstr "Kontakt byl zablokován" #: ../../mod/photos.php:165 msgid "Album not found." -msgstr "Album introuvable." +msgstr "Album nenalezeno." #: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" -msgstr "Effacer l'album" +msgstr "Smazat album" #: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" +msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" #: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" -msgstr "Effacer la photo" +msgstr "Smazat fotografii" #: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" -msgstr "Voulez-vous vraiment supprimer cette photo ?" +msgstr "Opravdu chcete smazat tuto fotografii?" #: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s a été identifié %2$s par %3$s" +msgstr "%1$s byl označen v %2$s uživatelem %3$s" #: ../../mod/photos.php:660 msgid "a photo" -msgstr "une photo" +msgstr "fotografie" #: ../../mod/photos.php:765 msgid "Image exceeds size limit of " -msgstr "L'image dépasse la taille maximale de " +msgstr "Velikost obrázku překračuje limit velikosti" #: ../../mod/photos.php:773 msgid "Image file is empty." -msgstr "Fichier image vide." +msgstr "Soubor obrázku je prázdný." #: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." -msgstr "Impossible de traiter l'image." +msgstr "Obrázek není možné zprocesovat" #: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." +msgstr "Nahrání obrázku selhalo." #: ../../mod/photos.php:928 msgid "No photos selected" -msgstr "Aucune photo sélectionnée" +msgstr "Není vybrána žádná fotografie" #: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." +msgstr "Přístup k této položce je omezen." #: ../../mod/photos.php:1092 #, 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." +msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií." #: ../../mod/photos.php:1127 msgid "Upload Photos" -msgstr "Téléverser des photos" +msgstr "Nahrání fotografií " #: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " -msgstr "Nom du nouvel album: " +msgstr "Název nového alba: " #: ../../mod/photos.php:1132 msgid "or existing album name: " -msgstr "ou nom d'un album existant: " +msgstr "nebo stávající název alba: " #: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice de statut pour cet envoi" +msgstr "Nezobrazovat stav pro tento upload" #: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" -msgstr "Permissions" +msgstr "Oprávnění:" #: ../../mod/photos.php:1146 msgid "Private Photo" -msgstr "Photo privée" +msgstr "Soukromé Fotografie" #: ../../mod/photos.php:1147 msgid "Public Photo" -msgstr "Photo publique" +msgstr "Veřejné Fotografie" #: ../../mod/photos.php:1214 msgid "Edit Album" -msgstr "Éditer l'album" +msgstr "Edituj album" #: ../../mod/photos.php:1220 msgid "Show Newest First" -msgstr "Plus récent d'abord" +msgstr "Zobrazit nejprve nejnovější:" #: ../../mod/photos.php:1222 msgid "Show Oldest First" -msgstr "Plus ancien d'abord" +msgstr "Zobrazit nejprve nejstarší:" -#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 msgid "View Photo" -msgstr "Voir la photo" +msgstr "Zobraz fotografii" #: ../../mod/photos.php:1290 msgid "Permission denied. Access to this item may be restricted." -msgstr "Interdit. L'accès à cet élément peut avoir été restreint." +msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." #: ../../mod/photos.php:1292 msgid "Photo not available" -msgstr "Photo indisponible" +msgstr "Fotografie není k dispozici" #: ../../mod/photos.php:1348 msgid "View photo" -msgstr "Voir photo" +msgstr "Zobrazit obrázek" #: ../../mod/photos.php:1348 msgid "Edit photo" -msgstr "Éditer la photo" +msgstr "Editovat fotografii" #: ../../mod/photos.php:1349 msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" +msgstr "Použít jako profilovou fotografii" #: ../../mod/photos.php:1374 msgid "View Full Size" -msgstr "Voir en taille réelle" +msgstr "Zobrazit v plné velikosti" #: ../../mod/photos.php:1453 msgid "Tags: " -msgstr "Étiquettes: " +msgstr "Štítky: " #: ../../mod/photos.php:1456 msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" +msgstr "[Odstranit všechny štítky]" #: ../../mod/photos.php:1496 msgid "Rotate CW (right)" -msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" #: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" -msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" #: ../../mod/photos.php:1499 msgid "New album name" -msgstr "Nom du nouvel album" +msgstr "Nové jméno alba" #: ../../mod/photos.php:1502 msgid "Caption" -msgstr "Titre" +msgstr "Titulek" #: ../../mod/photos.php:1504 msgid "Add a Tag" -msgstr "Ajouter une étiquette" +msgstr "Přidat štítek" #: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" #: ../../mod/photos.php:1517 msgid "Private photo" -msgstr "Photo privée" +msgstr "Soukromé fotografie" #: ../../mod/photos.php:1518 msgid "Public photo" -msgstr "Photo publique" +msgstr "Veřejné fotografie" -#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 msgid "Share" -msgstr "Partager" +msgstr "Sdílet" -#: ../../mod/photos.php:1799 ../../mod/videos.php:308 +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 msgid "View Album" -msgstr "Voir l'album" +msgstr "Zobrazit album" -#: ../../mod/photos.php:1808 +#: ../../mod/photos.php:1813 msgid "Recent Photos" -msgstr "Photos récentes" +msgstr "Aktuální fotografie" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" +msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Or - did you try to upload an empty file?" -msgstr "" +msgstr "Nebo - nenahrával jste prázdný soubor?" -#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 +#: ../../mod/wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" -msgstr "La taille du fichier dépasse la limite de %d" +msgstr "Velikost souboru přesáhla limit %d" #: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." -msgstr "Le téléversement a échoué." +msgstr "Nahrání souboru se nezdařilo." #: ../../mod/videos.php:125 msgid "No videos selected" -msgstr "Pas de vidéo sélectionné" +msgstr "Není vybráno žádné video" -#: ../../mod/videos.php:301 ../../include/text.php:1387 +#: ../../mod/videos.php:301 ../../include/text.php:1400 msgid "View Video" -msgstr "Regarder la vidéo" +msgstr "Zobrazit video" #: ../../mod/videos.php:317 msgid "Recent Videos" -msgstr "Vidéos récente" +msgstr "Aktuální Videa" #: ../../mod/videos.php:319 msgid "Upload New Videos" -msgstr "Téléversé une nouvelle vidéo" +msgstr "Nahrát nová videa" #: ../../mod/poke.php:192 msgid "Poke/Prod" -msgstr "Solliciter" +msgstr "Šťouchanec" #: ../../mod/poke.php:193 msgid "poke, prod or do other things to somebody" -msgstr "solliciter (poke/...) quelqu'un" +msgstr "někoho šťouchnout nebo mu provést jinou věc" #: ../../mod/poke.php:194 msgid "Recipient" -msgstr "Destinataire" +msgstr "Příjemce" #: ../../mod/poke.php:195 msgid "Choose what you wish to do to recipient" -msgstr "Choisissez ce que vous voulez faire au destinataire" +msgstr "Vyberte, co si přejete příjemci udělat" #: ../../mod/poke.php:198 msgid "Make this post private" -msgstr "Rendez ce message privé" +msgstr "Změnit tento příspěvek na soukromý" #: ../../mod/subthread.php:103 #, php-format msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit les %3$s de %2$s" +msgstr "%1$s následuje %3$s uživatele %2$s" #: ../../mod/uexport.php:77 msgid "Export account" -msgstr "Exporter le compte" +msgstr "Exportovat účet" #: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." -msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." +msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." #: ../../mod/uexport.php:78 msgid "Export all" -msgstr "Tout exporter" +msgstr "Exportovat vše" #: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" -msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." +msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" #: ../../mod/common.php:42 msgid "Common Friends" -msgstr "Amis communs" +msgstr "Společní přátelé" #: ../../mod/common.php:78 msgid "No contacts in common." -msgstr "Pas de contacts en commun." +msgstr "Žádné společné kontakty." #: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 #, php-format msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" +msgstr "Obrázek překročil limit velikosti %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 #: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" -msgstr "Photos du mur" +msgstr "Fotografie na zdi" #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." +msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." #: ../../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." +msgstr "Nepodařilo se snížit velikost obrázku [%s]." #: ../../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." +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 "Impossible de traiter l'image" +msgstr "Obrázek nelze zpracovat " #: ../../mod/profile_photo.php:242 msgid "Upload File:" -msgstr "Fichier à téléverser:" +msgstr "Nahrát soubor:" #: ../../mod/profile_photo.php:243 msgid "Select a profile:" -msgstr "Choisir un profil:" +msgstr "Vybrat profil:" #: ../../mod/profile_photo.php:245 msgid "Upload" -msgstr "Téléverser" +msgstr "Nahrát" #: ../../mod/profile_photo.php:248 msgid "skip this step" -msgstr "ignorer cette étape" +msgstr "přeskočit tento krok " #: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" +msgstr "Vybrat fotografii z Vašich fotoalb" #: ../../mod/profile_photo.php:262 msgid "Crop Image" -msgstr "(Re)cadrer l'image" +msgstr "Oříznout obrázek" #: ../../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." +msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." #: ../../mod/profile_photo.php:265 msgid "Done Editing" -msgstr "Édition terminée" +msgstr "Editace dokončena" #: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." +msgstr "Obrázek byl úspěšně nahrán." #: ../../mod/apps.php:11 msgid "Applications" -msgstr "Applications" +msgstr "Aplikace" #: ../../mod/apps.php:14 msgid "No installed applications." -msgstr "Pas d'application installée." +msgstr "Žádné nainstalované aplikace." #: ../../mod/navigation.php:20 ../../include/nav.php:34 msgid "Nothing new here" -msgstr "Rien de neuf ici" +msgstr "Zde není nic nového" #: ../../mod/navigation.php:24 ../../include/nav.php:38 msgid "Clear notifications" -msgstr "Effacer les notifications" +msgstr "Smazat notifikace" #: ../../mod/match.php:12 msgid "Profile Match" -msgstr "Correpondance de profils" +msgstr "Shoda profilu" #: ../../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." +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:57 msgid "is interested in:" -msgstr "s'intéresse à:" +msgstr "zajímá se o:" #: ../../mod/tagrm.php:41 msgid "Tag removed" -msgstr "Étiquette enlevée" +msgstr "Štítek odstraněn" #: ../../mod/tagrm.php:79 msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" +msgstr "Odebrat štítek položky" #: ../../mod/tagrm.php:81 msgid "Select a tag to remove: " -msgstr "Choisir une étiquette à enlever: " +msgstr "Vyberte štítek k odebrání: " #: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" -msgstr "Utiliser comme photo de profil" +msgstr "Odstranit" #: ../../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." +msgstr "Název události a datum začátku jsou vyžadovány." #: ../../mod/events.php:291 msgid "l, F j" @@ -5148,413 +5160,414 @@ msgstr "l, F j" #: ../../mod/events.php:313 msgid "Edit event" -msgstr "Editer l'événement" +msgstr "Editovat událost" -#: ../../mod/events.php:335 ../../include/text.php:1620 -#: ../../include/text.php:1631 +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 msgid "link to source" -msgstr "lien original" +msgstr "odkaz na zdroj" #: ../../mod/events.php:371 msgid "Create New Event" -msgstr "Créer un nouvel événement" +msgstr "Vytvořit novou událost" #: ../../mod/events.php:372 msgid "Previous" -msgstr "Précédent" +msgstr "Předchozí" #: ../../mod/events.php:446 msgid "hour:minute" -msgstr "heures:minutes" +msgstr "hodina:minuta" #: ../../mod/events.php:456 msgid "Event details" -msgstr "Détails de l'événement" +msgstr "Detaily události" #: ../../mod/events.php:457 #, php-format 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." +msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány." #: ../../mod/events.php:459 msgid "Event Starts:" -msgstr "Début de l'événement:" +msgstr "Událost začíná:" #: ../../mod/events.php:459 ../../mod/events.php:473 msgid "Required" -msgstr "Requis" +msgstr "Vyžadováno" #: ../../mod/events.php:462 msgid "Finish date/time is not known or not relevant" -msgstr "Date/heure de fin inconnue ou sans objet" +msgstr "Datum/čas konce není zadán nebo není relevantní" #: ../../mod/events.php:464 msgid "Event Finishes:" -msgstr "Fin de l'événement:" +msgstr "Akce končí:" #: ../../mod/events.php:467 msgid "Adjust for viewer timezone" -msgstr "Ajuster à la zone horaire du visiteur" +msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" #: ../../mod/events.php:469 msgid "Description:" -msgstr "Description:" +msgstr "Popis:" #: ../../mod/events.php:473 msgid "Title:" -msgstr "Titre :" +msgstr "Název:" #: ../../mod/events.php:475 msgid "Share this event" -msgstr "Partager cet événement" +msgstr "Sdílet tuto událost" #: ../../mod/delegate.php:95 msgid "No potential page delegates located." -msgstr "Pas de délégataire potentiel." +msgstr "Žádní potenciální delegáti stránky nenalezeni." #: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" -msgstr "Déléguer la gestion de la page" +msgstr "Správa delegátů stránky" #: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." -msgstr "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." +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:127 msgid "Existing Page Managers" -msgstr "Gestionnaires existants" +msgstr "Stávající správci stránky" #: ../../mod/delegate.php:129 msgid "Existing Page Delegates" -msgstr "Délégataires existants" +msgstr "Stávající delegáti stránky " #: ../../mod/delegate.php:131 msgid "Potential Delegates" -msgstr "Délégataires potentiels" +msgstr "Potenciální delegáti" #: ../../mod/delegate.php:134 msgid "Add" -msgstr "Ajouter" +msgstr "Přidat" #: ../../mod/delegate.php:135 msgid "No entries." -msgstr "Aucune entrée." +msgstr "Žádné záznamy." #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" -msgstr "Contacts qui n’appartiennent à aucun groupe" +msgstr "Kontakty, které nejsou členy skupiny" #: ../../mod/fbrowser.php:113 msgid "Files" -msgstr "Fichiers" +msgstr "Soubory" #: ../../mod/maintenance.php:5 msgid "System down for maintenance" -msgstr "Système indisponible pour cause de maintenance" +msgstr "Systém vypnut z důvodů údržby" -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 msgid "Remove My Account" -msgstr "Supprimer mon compte" +msgstr "Odstranit můj účet" -#: ../../mod/removeme.php:46 +#: ../../mod/removeme.php:47 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." +msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: ../../mod/removeme.php:47 +#: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification:" +msgstr "Prosím, zadejte své heslo pro ověření:" #: ../../mod/fsuggest.php:63 msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/contact envoyée." +msgstr "Návrhy přátelství odeslány " #: ../../mod/fsuggest.php:97 msgid "Suggest Friends" -msgstr "Suggérer des amis/contacts" +msgstr "Navrhněte přátelé" #: ../../mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" -msgstr "Suggérer un ami/contact pour %s" +msgstr "Navrhněte přátelé pro uživatele %s" #: ../../mod/item.php:110 msgid "Unable to locate original post." -msgstr "Impossible de localiser l'article original." +msgstr "Nelze nalézt původní příspěvek." #: ../../mod/item.php:319 msgid "Empty post discarded." -msgstr "Article vide défaussé." +msgstr "Prázdný příspěvek odstraněn." #: ../../mod/item.php:891 msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." +msgstr "Chyba systému. Příspěvek nebyl uložen." #: ../../mod/item.php:917 #, 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." +msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." #: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" +msgstr "Můžete je navštívit online na adrese %s" #: ../../mod/item.php:920 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." +msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." #: ../../mod/item.php:924 #, php-format msgid "%s posted an update." -msgstr "%s a publié une mise à jour." +msgstr "%s poslal aktualizaci." #: ../../mod/ping.php:238 msgid "{0} wants to be your friend" -msgstr "{0} souhaite être votre ami(e)" +msgstr "{0} chce být Vaším přítelem" #: ../../mod/ping.php:243 msgid "{0} sent you a message" -msgstr "{0} vous a envoyé un message" +msgstr "{0} vám poslal zprávu" #: ../../mod/ping.php:248 msgid "{0} requested registration" -msgstr "{0} a demandé à s'inscrire" +msgstr "{0} požaduje registraci" #: ../../mod/ping.php:254 #, php-format msgid "{0} commented %s's post" -msgstr "{0} a commenté une notice de %s" +msgstr "{0} komentoval příspěvek uživatele %s" #: ../../mod/ping.php:259 #, php-format msgid "{0} liked %s's post" -msgstr "{0} a aimé une notice de %s" +msgstr "{0} má rád příspěvek uživatele %s" #: ../../mod/ping.php:264 #, php-format msgid "{0} disliked %s's post" -msgstr "{0} n'a pas aimé une notice de %s" +msgstr "{0} nemá rád příspěvek uživatele %s" #: ../../mod/ping.php:269 #, php-format msgid "{0} is now friends with %s" -msgstr "{0} est désormais ami(e) avec %s" +msgstr "{0} se skamarádil s %s" #: ../../mod/ping.php:274 msgid "{0} posted" -msgstr "{0} a posté" +msgstr "{0} zasláno" #: ../../mod/ping.php:279 #, php-format msgid "{0} tagged %s's post with #%s" -msgstr "{0} a taggué la notice de %s avec #%s" +msgstr "{0} označen %s' příspěvek s #%s" #: ../../mod/ping.php:285 msgid "{0} mentioned you in a post" -msgstr "{0} vous a mentionné dans une publication" +msgstr "{0} vás zmínil v příspěvku" #: ../../mod/openid.php:24 msgid "OpenID protocol error. No ID returned." -msgstr "Erreur de protocole OpenID. Pas d'ID en retour." +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 "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." +msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." #: ../../mod/openid.php:93 ../../include/auth.php:112 #: ../../include/auth.php:175 msgid "Login failed." -msgstr "Échec de connexion." +msgstr "Přihlášení se nezdařilo." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." -msgstr "Identifiant de demande invalide." +msgstr "Neplatný identifikátor požadavku." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 #: ../../mod/notifications.php:211 msgid "Discard" -msgstr "Rejeter" +msgstr "Odstranit" #: ../../mod/notifications.php:78 msgid "System" -msgstr "Système" +msgstr "Systém" #: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" -msgstr "Réseau" +msgstr "Síť" #: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" -msgstr "Introductions" +msgstr "Představení" #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" -msgstr "Voir les demandes ignorées" +msgstr "Zobrazit ignorované žádosti" #: ../../mod/notifications.php:122 msgid "Hide Ignored Requests" -msgstr "Cacher les demandes ignorées" +msgstr "Skrýt ignorované žádosti" #: ../../mod/notifications.php:149 ../../mod/notifications.php:195 msgid "Notification type: " -msgstr "Type de notification: " +msgstr "Typ oznámení: " #: ../../mod/notifications.php:150 msgid "Friend Suggestion" -msgstr "Suggestion d'amitié/contact" +msgstr "Návrh přátelství" #: ../../mod/notifications.php:152 #, php-format msgid "suggested by %s" -msgstr "suggéré(e) par %s" +msgstr "navrhl %s" #: ../../mod/notifications.php:158 ../../mod/notifications.php:205 msgid "Post a new friend activity" -msgstr "Poster concernant les nouvelles amitiés" +msgstr "Zveřejnit aktivitu nového přítele." #: ../../mod/notifications.php:158 ../../mod/notifications.php:205 msgid "if applicable" -msgstr "si possible" +msgstr "je-li použitelné" #: ../../mod/notifications.php:181 msgid "Claims to be known to you: " -msgstr "Prétend que vous le connaissez: " +msgstr "Vaši údajní známí: " #: ../../mod/notifications.php:181 msgid "yes" -msgstr "oui" +msgstr "ano" #: ../../mod/notifications.php:181 msgid "no" -msgstr "non" +msgstr "ne" #: ../../mod/notifications.php:188 msgid "Approve as: " -msgstr "Approuver en tant que: " +msgstr "Schválit jako: " #: ../../mod/notifications.php:189 msgid "Friend" -msgstr "Ami" +msgstr "Přítel" #: ../../mod/notifications.php:190 msgid "Sharer" -msgstr "Initiateur du partage" +msgstr "Sdílené" #: ../../mod/notifications.php:190 msgid "Fan/Admirer" -msgstr "Fan/Admirateur" +msgstr "Fanoušek / obdivovatel" #: ../../mod/notifications.php:196 msgid "Friend/Connect Request" -msgstr "Demande de connexion/relation" +msgstr "Přítel / žádost o připojení" #: ../../mod/notifications.php:196 msgid "New Follower" -msgstr "Nouvel abonné" +msgstr "Nový následovník" #: ../../mod/notifications.php:217 msgid "No introductions." -msgstr "Aucune demande d'introduction." +msgstr "Žádné představení." #: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" -msgstr "Notifications" +msgstr "Upozornění" #: ../../mod/notifications.php:257 ../../mod/notifications.php:382 #: ../../mod/notifications.php:469 #, php-format msgid "%s liked %s's post" -msgstr "%s a aimé le billet de %s" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" #: ../../mod/notifications.php:266 ../../mod/notifications.php:391 #: ../../mod/notifications.php:478 #, php-format msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé le billet de %s" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" #: ../../mod/notifications.php:280 ../../mod/notifications.php:405 #: ../../mod/notifications.php:492 #, php-format msgid "%s is now friends with %s" -msgstr "%s est désormais ami(e) avec %s" +msgstr "%s se nyní přátelí s %s" #: ../../mod/notifications.php:287 ../../mod/notifications.php:412 #, php-format msgid "%s created a new post" -msgstr "%s a publié un billet" +msgstr "%s vytvořil nový příspěvek" #: ../../mod/notifications.php:288 ../../mod/notifications.php:413 #: ../../mod/notifications.php:501 #, php-format msgid "%s commented on %s's post" -msgstr "%s a commenté le billet de %s" +msgstr "%s okomentoval příspěvek uživatele %s'" #: ../../mod/notifications.php:302 msgid "No more network notifications." -msgstr "Aucune notification du réseau." +msgstr "Žádné další síťové upozornění." #: ../../mod/notifications.php:306 msgid "Network Notifications" -msgstr "Notifications du réseau" +msgstr "Upozornění Sítě" #: ../../mod/notifications.php:427 msgid "No more personal notifications." -msgstr "Aucun notification personnelle." +msgstr "Žádné další osobní upozornění." #: ../../mod/notifications.php:431 msgid "Personal Notifications" -msgstr "Notifications personnelles" +msgstr "Osobní upozornění" #: ../../mod/notifications.php:508 msgid "No more home notifications." -msgstr "Aucune notification de la page d'accueil." +msgstr "Žádné další domácí upozornění." #: ../../mod/notifications.php:512 msgid "Home Notifications" -msgstr "Notifications de page d'accueil" +msgstr "Domácí upozornění" #: ../../mod/invite.php:27 msgid "Total invitation limit exceeded." -msgstr "La limite d'invitation totale est éxédée." +msgstr "Celkový limit pozvánek byl překročen" #: ../../mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." -msgstr "%s : Adresse de courriel invalide." +msgstr "%s : není platná e-mailová adresa." #: ../../mod/invite.php:73 msgid "Please join us on Friendica" -msgstr "Rejoignez-nous sur Friendica" +msgstr "Prosím přidejte se k nám na Friendice" #: ../../mod/invite.php:84 msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." +msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." #: ../../mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." -msgstr "%s : L'envoi du message a échoué." +msgstr "%s : Doručení zprávy se nezdařilo." #: ../../mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." +msgstr[0] "%d zpráva odeslána." +msgstr[1] "%d zprávy odeslány." +msgstr[2] "%d zprávy odeslány." #: ../../mod/invite.php:112 msgid "You have no more invitations available" -msgstr "Vous n'avez plus d'invitations disponibles" +msgstr "Nemáte k dispozici žádné další pozvánky" #: ../../mod/invite.php:120 #, php-format @@ -5562,14 +5575,14 @@ 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." +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:122 #, php-format 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." +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:123 #, php-format @@ -5578,714 +5591,727 @@ msgid "" "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." +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:126 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." +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:132 msgid "Send invitations" -msgstr "Envoyer des invitations" +msgstr "Poslat pozvánky" #: ../../mod/invite.php:133 msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" #: ../../mod/invite.php:135 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." -msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." +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:137 msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vous devrez fournir ce code d'invitation: $invite_code" +msgstr "Budete muset zadat kód této pozvánky: $invite_code" #: ../../mod/invite.php:137 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:" +msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" #: ../../mod/invite.php:139 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" -msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter 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/manage.php:106 msgid "Manage Identities and/or Pages" -msgstr "Gérer les identités et/ou les pages" +msgstr "Správa identit a / nebo stránek" #: ../../mod/manage.php:107 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" -msgstr "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." +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:108 msgid "Select an identity to manage: " -msgstr "Choisir une identité à gérer: " +msgstr "Vyberte identitu pro správu: " #: ../../mod/home.php:34 #, php-format msgid "Welcome to %s" -msgstr "Bienvenue sur %s" +msgstr "Vítá Vás %s" #: ../../mod/allfriends.php:34 #, php-format msgid "Friends of %s" -msgstr "Amis de %s" +msgstr "Přátelé uživatele %s" #: ../../mod/allfriends.php:40 msgid "No friends to display." -msgstr "Pas d'amis à afficher." +msgstr "Žádní přátelé k zobrazení" #: ../../include/contact_widgets.php:6 msgid "Add New Contact" -msgstr "Ajouter un nouveau contact" +msgstr "Přidat nový kontakt" #: ../../include/contact_widgets.php:7 msgid "Enter address or web location" -msgstr "Entrez son adresse ou sa localisation web" +msgstr "Zadejte adresu nebo umístění webu" #: ../../include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: 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] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" +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 "Trouver des personnes" +msgstr "Nalézt lidi" #: ../../include/contact_widgets.php:30 msgid "Enter name or interest" -msgstr "Entrez un nom ou un centre d'intérêt" +msgstr "Zadejte jméno nebo zájmy" #: ../../include/contact_widgets.php:31 msgid "Connect/Follow" -msgstr "Connecter/Suivre" +msgstr "Připojit / Následovat" #: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pêche" +msgstr "Příklady: Robert Morgenstein, rybaření" #: ../../include/contact_widgets.php:36 msgid "Random Profile" -msgstr "Profil au hasard" +msgstr "Náhodný Profil" #: ../../include/contact_widgets.php:70 msgid "Networks" -msgstr "Réseaux" +msgstr "Sítě" #: ../../include/contact_widgets.php:73 msgid "All Networks" -msgstr "Tous réseaux" +msgstr "Všechny sítě" #: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" -msgstr "Dossiers sauvegardés" +msgstr "Uložené složky" #: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 msgid "Everything" -msgstr "Tout" +msgstr "Všechno" #: ../../include/contact_widgets.php:135 msgid "Categories" -msgstr "Catégories" +msgstr "Kategorie" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 +#: ../../include/plugin.php:455 ../../include/plugin.php:457 msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." +msgstr "Klikněte zde pro aktualizaci." -#: ../../include/plugin.php:462 +#: ../../include/plugin.php:463 msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action dépasse les limites définies par votre abonnement." +msgstr "Tato akce překročí limit nastavené Vaším předplatným." -#: ../../include/plugin.php:467 +#: ../../include/plugin.php:468 msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre abonnement." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." #: ../../include/api.php:263 ../../include/api.php:274 #: ../../include/api.php:375 msgid "User not found." -msgstr "Utilisateur non trouvé" +msgstr "Uživatel nenalezen" #: ../../include/api.php:1123 msgid "There is no status with this id." -msgstr "Il n'y a pas de statut avec cet id." +msgstr "Není tu žádný status s tímto id." #: ../../include/api.php:1193 msgid "There is no conversation with this id." -msgstr "Il n'y a pas de conversation avec cet id." +msgstr "Nemáme žádnou konverzaci s tímto id." #: ../../include/network.php:886 msgid "view full size" -msgstr "voir en pleine taille" +msgstr "zobrazit v plné velikosti" #: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" -msgstr "Débute:" +msgstr "Začíná:" #: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" -msgstr "Finit:" +msgstr "Končí:" + +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, 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/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" -msgstr "(sans titre)" +msgstr "(Bez předmětu)" #: ../../include/notifier.php:784 ../../include/enotify.php:28 #: ../../include/delivery.php:467 msgid "noreply" -msgstr "noreply" +msgstr "neodpovídat" #: ../../include/user.php:39 msgid "An invitation is required." -msgstr "Une invitation est requise." +msgstr "Pozvánka je vyžadována." #: ../../include/user.php:44 msgid "Invitation could not be verified." -msgstr "L'invitation fournie n'a pu être validée." +msgstr "Pozvánka nemohla být ověřena." #: ../../include/user.php:52 msgid "Invalid OpenID url" -msgstr "Adresse OpenID invalide" +msgstr "Neplatný odkaz OpenID" #: ../../include/user.php:66 ../../include/auth.php:128 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." -msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." +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/user.php:66 ../../include/auth.php:128 msgid "The error message was:" -msgstr "Le message d'erreur était :" +msgstr "Chybová zpráva byla:" #: ../../include/user.php:73 msgid "Please enter the required information." -msgstr "Entrez les informations requises." +msgstr "Zadejte prosím požadované informace." #: ../../include/user.php:87 msgid "Please use a shorter name." -msgstr "Utilisez un nom plus court." +msgstr "Použijte prosím kratší jméno." #: ../../include/user.php:89 msgid "Name too short." -msgstr "Nom trop court." +msgstr "Jméno je příliš krátké." #: ../../include/user.php:104 msgid "That doesn't appear to be your full (First Last) name." -msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." +msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." #: ../../include/user.php:109 msgid "Your email domain is not among those allowed on this site." -msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." +msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." #: ../../include/user.php:112 msgid "Not a valid email address." -msgstr "Ceci n'est pas une adresse courriel valide." +msgstr "Neplatná e-mailová adresa." #: ../../include/user.php:125 msgid "Cannot use that email." -msgstr "Impossible d'utiliser ce courriel." +msgstr "Tento e-mail nelze použít." #: ../../include/user.php:131 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." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." #: ../../include/user.php:137 ../../include/user.php:235 msgid "Nickname is already registered. Please choose another." -msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." #: ../../include/user.php:147 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." +msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." #: ../../include/user.php:163 msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." #: ../../include/user.php:221 msgid "An error occurred during registration. Please try again." -msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." #: ../../include/user.php:256 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." +msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." #: ../../include/user.php:288 ../../include/user.php:292 #: ../../include/profile_selectors.php:42 msgid "Friends" -msgstr "Amis" +msgstr "Přátelé" #: ../../include/conversation.php:207 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s a sollicité %2$s" +msgstr "%1$s šťouchnul %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:990 +#: ../../include/conversation.php:211 ../../include/text.php:1003 msgid "poked" -msgstr "a titillé" +msgstr "šťouchnut" #: ../../include/conversation.php:291 msgid "post/item" -msgstr "publication/élément" +msgstr "příspěvek/položka" #: ../../include/conversation.php:292 #, 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" +msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" #: ../../include/conversation.php:770 msgid "remove" -msgstr "enlever" +msgstr "odstranit" #: ../../include/conversation.php:774 msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" +msgstr "Smazat vybrané položky" #: ../../include/conversation.php:873 msgid "Follow Thread" -msgstr "Suivre le fil" +msgstr "Následovat vlákno" #: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" -msgstr "Voir les statuts" +msgstr "Zobrazit Status" #: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" -msgstr "Voir le profil" +msgstr "Zobrazit Profil" #: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" -msgstr "Voir les photos" +msgstr "Zobrazit Fotky" #: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" -msgstr "Posts du Réseau" +msgstr "Zobrazit Příspěvky sítě" #: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" -msgstr "Éditer le contact" +msgstr "Editovat Kontakty" #: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" -msgstr "Message privé" +msgstr "Poslat soukromou zprávu" #: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" -msgstr "Sollicitations (pokes)" +msgstr "Šťouchnout" #: ../../include/conversation.php:942 #, php-format msgid "%s likes this." -msgstr "%s aime ça." +msgstr "%s se to líbí." #: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." +msgstr "%s se to nelíbí." #: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" +msgstr "%2$d lidem se to líbí" #: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" +msgstr "%2$d lidem se to nelíbí" #: ../../include/conversation.php:964 msgid "and" -msgstr "et" +msgstr "a" #: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" -msgstr ", et %d autres personnes" +msgstr ", a %d dalších lidí" #: ../../include/conversation.php:972 #, php-format msgid "%s like this." -msgstr "%s aiment ça." +msgstr "%s se to líbí." #: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." -msgstr "%s n'aiment pas ça." +msgstr "%s se to nelíbí." #: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" -msgstr "Visible par tout le monde" +msgstr "Viditelné pro všechny" #: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" +msgstr "Prosím zadejte URL adresu videa:" #: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" #: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" -msgstr "Tag : " +msgstr "Štítek:" #: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" +msgstr "Kde právě jste?" #: ../../include/conversation.php:1006 msgid "Delete item(s)?" -msgstr "Supprimer les élément(s) ?" +msgstr "Smazat položku(y)?" -#: ../../include/conversation.php:1048 +#: ../../include/conversation.php:1049 msgid "Post to Email" -msgstr "Publier aussi par courriel" +msgstr "Poslat příspěvek na e-mail" -#: ../../include/conversation.php:1104 +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." + +#: ../../include/conversation.php:1109 msgid "permissions" -msgstr "permissions" +msgstr "oprávnění" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1133 msgid "Post to Groups" -msgstr "" +msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1134 msgid "Post to Contacts" -msgstr "" +msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Private post" -msgstr "Message privé" +msgstr "Soukromý příspěvek" #: ../../include/auth.php:38 msgid "Logged out." -msgstr "Déconnecté." +msgstr "Odhlášen." #: ../../include/uimport.php:94 msgid "Error decoding account file" -msgstr "" +msgstr "Chyba dekódování uživatelského účtu" #: ../../include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" +msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" #: ../../include/uimport.php:116 ../../include/uimport.php:127 msgid "Error! Cannot check nickname" -msgstr "Erreur! Pseudo invalide" +msgstr "Chyba! Nelze ověřit přezdívku" #: ../../include/uimport.php:120 ../../include/uimport.php:131 #, php-format msgid "User '%s' already exists on this server!" -msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" +msgstr "Uživatel '%s' již na tomto serveru existuje!" #: ../../include/uimport.php:153 msgid "User creation error" -msgstr "Erreur de création d'utilisateur" +msgstr "Chyba vytváření uživatele" #: ../../include/uimport.php:171 msgid "User profile creation error" -msgstr "Erreur de création du profil utilisateur" +msgstr "Chyba vytváření uživatelského účtu" #: ../../include/uimport.php:220 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" -msgstr[0] "%d contacts non importés" -msgstr[1] "%d contacts non importés" +msgstr[0] "%d kontakt nenaimporován" +msgstr[1] "%d kontaktů nenaimporováno" +msgstr[2] "%d kontakty nenaimporovány" #: ../../include/uimport.php:290 msgid "Done. You can now login with your username and password" -msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" +msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" -#: ../../include/text.php:304 +#: ../../include/text.php:296 msgid "newer" -msgstr "Plus récent" +msgstr "novější" -#: ../../include/text.php:306 +#: ../../include/text.php:298 msgid "older" -msgstr "Plus ancien" +msgstr "starší" -#: ../../include/text.php:311 +#: ../../include/text.php:303 msgid "prev" -msgstr "précédent" +msgstr "předchozí" -#: ../../include/text.php:313 +#: ../../include/text.php:305 msgid "first" -msgstr "premier" +msgstr "první" -#: ../../include/text.php:345 +#: ../../include/text.php:337 msgid "last" -msgstr "dernier" +msgstr "poslední" -#: ../../include/text.php:348 +#: ../../include/text.php:340 msgid "next" -msgstr "suivant" +msgstr "další" -#: ../../include/text.php:840 +#: ../../include/text.php:853 msgid "No contacts" -msgstr "Aucun contact" +msgstr "Žádné kontakty" -#: ../../include/text.php:849 +#: ../../include/text.php:862 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktů" +msgstr[2] "%d kontaktů" -#: ../../include/text.php:990 +#: ../../include/text.php:1003 msgid "poke" -msgstr "titiller" +msgstr "šťouchnout" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "ping" -msgstr "attirer l'attention" +msgstr "cinknout" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "pinged" -msgstr "a attiré l'attention de" +msgstr "cinkut" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prod" -msgstr "aiguillonner" +msgstr "pobídnout" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prodded" -msgstr "a aiguillonné" +msgstr "pobídnut" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slap" -msgstr "gifler" +msgstr "dát facku" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slapped" -msgstr "a giflé" +msgstr "být uhozen" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "finger" -msgstr "tripoter" +msgstr "osahávat" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "fingered" -msgstr "a tripoté" +msgstr "osaháván" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuff" -msgstr "rabrouer" +msgstr "odmítnout" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuffed" -msgstr "a rabroué" - -#: ../../include/text.php:1009 -msgid "happy" -msgstr "heureuse" - -#: ../../include/text.php:1010 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1011 -msgid "mellow" -msgstr "suave" - -#: ../../include/text.php:1012 -msgid "tired" -msgstr "fatiguée" - -#: ../../include/text.php:1013 -msgid "perky" -msgstr "guillerette" - -#: ../../include/text.php:1014 -msgid "angry" -msgstr "colérique" - -#: ../../include/text.php:1015 -msgid "stupified" -msgstr "stupéfaite" - -#: ../../include/text.php:1016 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1017 -msgid "interested" -msgstr "intéressée" - -#: ../../include/text.php:1018 -msgid "bitter" -msgstr "amère" - -#: ../../include/text.php:1019 -msgid "cheerful" -msgstr "entraînante" - -#: ../../include/text.php:1020 -msgid "alive" -msgstr "vivante" - -#: ../../include/text.php:1021 -msgid "annoyed" -msgstr "ennuyée" +msgstr "odmítnut" #: ../../include/text.php:1022 -msgid "anxious" -msgstr "anxieuse" +msgid "happy" +msgstr "šťasný" #: ../../include/text.php:1023 -msgid "cranky" -msgstr "excentrique" +msgid "sad" +msgstr "smutný" #: ../../include/text.php:1024 -msgid "disturbed" -msgstr "dérangée" +msgid "mellow" +msgstr "jemný" #: ../../include/text.php:1025 -msgid "frustrated" -msgstr "frustrée" +msgid "tired" +msgstr "unavený" #: ../../include/text.php:1026 -msgid "motivated" -msgstr "motivée" +msgid "perky" +msgstr "emergický" #: ../../include/text.php:1027 -msgid "relaxed" -msgstr "détendue" +msgid "angry" +msgstr "nazlobený" #: ../../include/text.php:1028 +msgid "stupified" +msgstr "otupen" + +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "popletený" + +#: ../../include/text.php:1030 +msgid "interested" +msgstr "zajímavý" + +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "hořký" + +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "radnostný" + +#: ../../include/text.php:1033 +msgid "alive" +msgstr "naživu" + +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "otráven" + +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "znepokojený" + +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "mrzutý" + +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "vyrušen" + +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "frustrovaný" + +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "motivovaný" + +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "uvolněný" + +#: ../../include/text.php:1041 msgid "surprised" -msgstr "surprise" +msgstr "překvapený" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Monday" -msgstr "Lundi" +msgstr "Pondělí" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Tuesday" -msgstr "Mardi" +msgstr "Úterý" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Wednesday" -msgstr "Mercredi" +msgstr "Středa" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Thursday" -msgstr "Jeudi" +msgstr "Čtvrtek" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Friday" -msgstr "Vendredi" +msgstr "Pátek" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Saturday" -msgstr "Samedi" +msgstr "Sobota" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Sunday" -msgstr "Dimanche" +msgstr "Neděle" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "January" -msgstr "Janvier" +msgstr "Ledna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "February" -msgstr "Février" +msgstr "Února" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "March" -msgstr "Mars" +msgstr "Března" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "April" -msgstr "Avril" +msgstr "Dubna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "May" -msgstr "Mai" +msgstr "Května" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "June" -msgstr "Juin" +msgstr "Června" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "July" -msgstr "Juillet" +msgstr "Července" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "August" -msgstr "Août" +msgstr "Srpna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "September" -msgstr "Septembre" +msgstr "Září" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "October" -msgstr "Octobre" +msgstr "Října" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "November" -msgstr "Novembre" +msgstr "Listopadu" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "December" -msgstr "Décembre" +msgstr "Prosinec" -#: ../../include/text.php:1419 +#: ../../include/text.php:1432 msgid "bytes" -msgstr "octets" +msgstr "bytů" -#: ../../include/text.php:1443 ../../include/text.php:1455 +#: ../../include/text.php:1456 ../../include/text.php:1468 msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" +msgstr "Klikněte pro otevření/zavření" -#: ../../include/text.php:1688 +#: ../../include/text.php:1701 msgid "Select an alternate language" -msgstr "Choisir une langue alternative" +msgstr "Vyběr alternativního jazyka" -#: ../../include/text.php:1944 +#: ../../include/text.php:1957 msgid "activity" -msgstr "activité" +msgstr "aktivita" -#: ../../include/text.php:1947 +#: ../../include/text.php:1960 msgid "post" -msgstr "publication" +msgstr "příspěvek" -#: ../../include/text.php:2115 +#: ../../include/text.php:2128 msgid "Item filed" -msgstr "Élément classé" +msgstr "Položka vyplněna" #: ../../include/enotify.php:16 msgid "Friendica Notification" -msgstr "Notification Friendica" +msgstr "Friendica Notifikace" #: ../../include/enotify.php:19 msgid "Thank You," -msgstr "Merci, " +msgstr "Děkujeme, " #: ../../include/enotify.php:21 #, php-format msgid "%s Administrator" -msgstr "L'administrateur de %s" +msgstr "%s Administrátor" #: ../../include/enotify.php:40 #, php-format @@ -6295,399 +6321,399 @@ msgstr "%s " #: ../../include/enotify.php:44 #, php-format msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notification] Nouveau courriel reçu sur %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 vous a envoyé un nouveau message privé sur %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 vous a envoyé %2$s." +msgstr "%1$s Vám poslal %2$s." #: ../../include/enotify.php:47 msgid "a private message" -msgstr "un message privé" +msgstr "soukromá zpráva" #: ../../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." +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:91 #, 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]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" #: ../../include/enotify.php:98 #, 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]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" #: ../../include/enotify.php:106 #, 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]" +msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" #: ../../include/enotify.php:116 #, 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" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" #: ../../include/enotify.php:117 #, php-format msgid "%s commented on an item/conversation you have been following." -msgstr "%s a commenté un élément que vous suivez." +msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." #: ../../include/enotify.php:120 ../../include/enotify.php:135 #: ../../include/enotify.php:148 ../../include/enotify.php:161 #: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." +msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." #: ../../include/enotify.php:127 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" +msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" #: ../../include/enotify.php:129 #, php-format msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a publié sur votre mur à %2$s" +msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" #: ../../include/enotify.php:131 #, 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]" +msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" #: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notification] %s vous a repéré" +msgstr "[Friendica:Upozornění] %s Vás označil" #: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" -msgstr "%1$s vous parle sur %2$s" +msgstr "%1$s Vás označil na %2$s" #: ../../include/enotify.php:144 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]vous a taggé[/url]." +msgstr "%1$s [url=%2$s]Vás označil[/url]." #: ../../include/enotify.php:155 #, php-format msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notification] %s partage une nouvelle publication" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" #: ../../include/enotify.php:156 #, php-format msgid "%1$s shared a new post at %2$s" -msgstr "" +msgstr "%1$s nasdílel nový příspěvek na %2$s" #: ../../include/enotify.php:157 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]partage une publication[/url]." +msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." #: ../../include/enotify.php:169 #, php-format msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s vous a sollicité" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" #: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" -msgstr "%1$s vous a sollicité via %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" #: ../../include/enotify.php:171 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s vous a [url=%2$s]sollicité[/url]." +msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." #: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notification] %s a repéré votre publication" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" #: ../../include/enotify.php:187 #, php-format msgid "%1$s tagged your post at %2$s" -msgstr "%1$s a tagué votre contenu sur %2$s" +msgstr "%1$s označil Váš příspěvek na %2$s" #: ../../include/enotify.php:188 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]" +msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" #: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notification] Introduction reçue" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" #: ../../include/enotify.php:200 #, 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" +msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" #: ../../include/enotify.php:201 #, 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." +msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." #: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter son profil sur %s" +msgstr "Můžete navštívit jejich profil na %s" #: ../../include/enotify.php:206 #, php-format msgid "Please visit %s to approve or reject the introduction." -msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." +msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." #: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" #: ../../include/enotify.php:214 #, 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" +msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" #: ../../include/enotify.php:215 #, 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." +msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." #: ../../include/enotify.php:220 msgid "Name:" -msgstr "Nom :" +msgstr "Jméno:" #: ../../include/enotify.php:221 msgid "Photo:" -msgstr "Photo :" +msgstr "Foto:" #: ../../include/enotify.php:224 #, php-format msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." +msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." #: ../../include/Scrape.php:584 msgid " on Last.fm" -msgstr "sur Last.fm" +msgstr " na Last.fm" #: ../../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." +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:207 msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." #: ../../include/group.php:226 msgid "Everybody" -msgstr "Tout le monde" +msgstr "Všichni" #: ../../include/group.php:249 msgid "edit" -msgstr "éditer" +msgstr "editovat" #: ../../include/group.php:271 msgid "Edit group" -msgstr "Editer groupe" +msgstr "Editovat skupinu" #: ../../include/group.php:272 msgid "Create a new group" -msgstr "Créer un nouveau groupe" +msgstr "Vytvořit novou skupinu" #: ../../include/group.php:273 msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" +msgstr "Kontakty, které nejsou v žádné skupině" #: ../../include/follow.php:32 msgid "Connect URL missing." -msgstr "URL de connexion manquante." +msgstr "Chybí URL adresa." #: ../../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." +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 "Aucun protocole de communication ni aucun flux n'a pu être découvert." +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 "L'adresse de profil indiquée ne fournit par les informations adéquates." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." #: ../../include/follow.php:82 msgid "An author or name was not found." -msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." +msgstr "Autor nebo jméno nenalezeno" #: ../../include/follow.php:84 msgid "No browser URL could be matched to this address." -msgstr "Aucune URL de navigation ne correspond à cette adresse." +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 "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." +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 "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." +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 "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce 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 "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." +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 "Impossible de récupérer les informations du contact." +msgstr "Nepodařilo se získat kontaktní informace." #: ../../include/follow.php:259 msgid "following" -msgstr "following" +msgstr "následující" #: ../../include/message.php:15 ../../include/message.php:172 msgid "[no subject]" -msgstr "[pas de sujet]" +msgstr "[bez předmětu]" #: ../../include/nav.php:73 msgid "End this session" -msgstr "Mettre fin à cette session" +msgstr "Konec této relace" #: ../../include/nav.php:91 msgid "Sign in" -msgstr "Se connecter" +msgstr "Přihlásit se" #: ../../include/nav.php:104 msgid "Home Page" -msgstr "Page d'accueil" +msgstr "Domácí stránka" #: ../../include/nav.php:108 msgid "Create an account" -msgstr "Créer un compte" +msgstr "Vytvořit účet" #: ../../include/nav.php:113 msgid "Help and documentation" -msgstr "Aide et documentation" +msgstr "Nápověda a dokumentace" #: ../../include/nav.php:116 msgid "Apps" -msgstr "Applications" +msgstr "Aplikace" #: ../../include/nav.php:116 msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" +msgstr "Doplňkové aplikace, nástroje, hry" #: ../../include/nav.php:118 msgid "Search site content" -msgstr "Rechercher dans le contenu du site" +msgstr "Hledání na stránkách tohoto webu" #: ../../include/nav.php:128 msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" +msgstr "Konverzace na tomto webu" #: ../../include/nav.php:130 msgid "Directory" -msgstr "Annuaire" +msgstr "Adresář" #: ../../include/nav.php:130 msgid "People directory" -msgstr "Annuaire des utilisateurs" +msgstr "Adresář" #: ../../include/nav.php:132 msgid "Information" -msgstr "Information" +msgstr "Informace" #: ../../include/nav.php:132 msgid "Information about this friendica instance" -msgstr "Information au sujet de cette instance de friendica" +msgstr "Informace o této instanci Friendica" #: ../../include/nav.php:142 msgid "Conversations from your friends" -msgstr "Conversations de vos amis" +msgstr "Konverzace od Vašich přátel" #: ../../include/nav.php:143 msgid "Network Reset" -msgstr "" +msgstr "Síťový Reset" #: ../../include/nav.php:143 msgid "Load Network page with no filters" -msgstr "Chargement des pages du réseau sans filtre" +msgstr "Načíst stránku Síť bez filtrů" #: ../../include/nav.php:151 msgid "Friend Requests" -msgstr "Demande d'amitié" +msgstr "Žádosti přátel" #: ../../include/nav.php:153 msgid "See all notifications" -msgstr "Voir toute notification" +msgstr "Zobrazit všechny upozornění" #: ../../include/nav.php:154 msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme 'vues'" +msgstr "Označit všechny upozornění systému jako přečtené" #: ../../include/nav.php:158 msgid "Private mail" -msgstr "Messages privés" +msgstr "Soukromá pošta" #: ../../include/nav.php:159 msgid "Inbox" -msgstr "Messages entrants" +msgstr "Doručená pošta" #: ../../include/nav.php:160 msgid "Outbox" -msgstr "Messages sortants" +msgstr "Odeslaná pošta" #: ../../include/nav.php:164 msgid "Manage" -msgstr "Gérer" +msgstr "Spravovat" #: ../../include/nav.php:164 msgid "Manage other pages" -msgstr "Gérer les autres pages" +msgstr "Spravovat jiné stránky" #: ../../include/nav.php:169 msgid "Account settings" -msgstr "Compte" +msgstr "Nastavení účtu" #: ../../include/nav.php:171 msgid "Manage/Edit Profiles" -msgstr "Gérer/Éditer les profiles" +msgstr "Spravovat/Editovat Profily" #: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" +msgstr "Spravovat/upravit přátelé a kontakty" #: ../../include/nav.php:180 msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" +msgstr "Nastavení webu a konfigurace" #: ../../include/nav.php:184 msgid "Navigation" -msgstr "Navigation" +msgstr "Navigace" #: ../../include/nav.php:184 msgid "Site map" -msgstr "Carte du site" +msgstr "Mapa webu" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -6699,116 +6725,116 @@ msgstr "j F" #: ../../include/profile_advanced.php:30 msgid "Birthday:" -msgstr "Anniversaire:" +msgstr "Narozeniny:" #: ../../include/profile_advanced.php:34 msgid "Age:" -msgstr "Age:" +msgstr "Věk:" #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" +msgstr "pro %1$d %2$s" #: ../../include/profile_advanced.php:52 msgid "Tags:" -msgstr "Tags :" +msgstr "Štítky:" #: ../../include/profile_advanced.php:56 msgid "Religion:" -msgstr "Religion:" +msgstr "Náboženství:" #: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" -msgstr "Passe-temps/Centres d'intérêt:" +msgstr "Koníčky/zájmy:" #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" -msgstr "Coordonnées/Réseaux sociaux:" +msgstr "Kontaktní informace a sociální sítě:" #: ../../include/profile_advanced.php:69 msgid "Musical interests:" -msgstr "Goûts musicaux:" +msgstr "Hudební vkus:" #: ../../include/profile_advanced.php:71 msgid "Books, literature:" -msgstr "Lectures:" +msgstr "Knihy, literatura:" #: ../../include/profile_advanced.php:73 msgid "Television:" -msgstr "Télévision:" +msgstr "Televize:" #: ../../include/profile_advanced.php:75 msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/Danse/Culture/Divertissement:" +msgstr "Film/tanec/kultura/zábava:" #: ../../include/profile_advanced.php:77 msgid "Love/Romance:" -msgstr "Amour/Romance:" +msgstr "Láska/romance" #: ../../include/profile_advanced.php:79 msgid "Work/employment:" -msgstr "Activité professionnelle/Occupation:" +msgstr "Práce/zaměstnání:" #: ../../include/profile_advanced.php:81 msgid "School/education:" -msgstr "Études/Formation:" +msgstr "Škola/vzdělávání:" -#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:918 +#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 +#: ../../include/bbcode.php:922 msgid "Image/photo" -msgstr "Image/photo" +msgstr "Obrázek/fotografie" -#: ../../include/bbcode.php:354 +#: ../../include/bbcode.php:357 #, php-format msgid "" "%s wrote the following post" -msgstr "" +msgstr "%s napsal následující příspěvek" -#: ../../include/bbcode.php:453 +#: ../../include/bbcode.php:457 msgid "" -msgstr "" +msgstr "" -#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 +#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 msgid "$1 wrote:" -msgstr "$1 a écrit:" +msgstr "$1 napsal:" -#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 +#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 msgid "Encrypted content" -msgstr "Contenu chiffré" +msgstr "Šifrovaný obsah" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" -msgstr "Inconnu | Non-classé" +msgstr "Neznámé | Nezařazeno" #: ../../include/contact_selectors.php:33 msgid "Block immediately" -msgstr "Bloquer immédiatement" +msgstr "Okamžitě blokovat " #: ../../include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" -msgstr "Douteux, spammeur, accro à l'auto-promotion" +msgstr "pochybný, spammer, self-makerter" #: ../../include/contact_selectors.php:35 msgid "Known to me, but no opinion" -msgstr "Connu de moi, mais sans opinion" +msgstr "Znám ho ale, ale bez rozhodnutí" #: ../../include/contact_selectors.php:36 msgid "OK, probably harmless" -msgstr "OK, probablement inoffensif" +msgstr "OK, pravděpodobně neškodný" #: ../../include/contact_selectors.php:37 msgid "Reputable, has my trust" -msgstr "Réputé, a toute ma confiance" +msgstr "Renomovaný, má mou důvěru" #: ../../include/contact_selectors.php:60 msgid "Weekly" -msgstr "Chaque semaine" +msgstr "Týdenně" #: ../../include/contact_selectors.php:61 msgid "Monthly" -msgstr "Chaque mois" +msgstr "Měsíčně" #: ../../include/contact_selectors.php:77 msgid "OStatus" @@ -6848,7 +6874,7 @@ msgstr "Twitter" #: ../../include/contact_selectors.php:90 msgid "Diaspora Connector" -msgstr "Connecteur Diaspora" +msgstr "Diaspora konektor" #: ../../include/contact_selectors.php:91 msgid "Statusnet" @@ -6856,361 +6882,361 @@ msgstr "Statusnet" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" -msgstr "Divers" +msgstr "Různé" #: ../../include/datetime.php:153 ../../include/datetime.php:285 msgid "year" -msgstr "an" +msgstr "rok" #: ../../include/datetime.php:158 ../../include/datetime.php:286 msgid "month" -msgstr "mois" +msgstr "měsíc" #: ../../include/datetime.php:163 ../../include/datetime.php:288 msgid "day" -msgstr "jour" +msgstr "den" #: ../../include/datetime.php:276 msgid "never" -msgstr "jamais" +msgstr "nikdy" #: ../../include/datetime.php:282 msgid "less than a second ago" -msgstr "il y a moins d'une seconde" +msgstr "méně než před sekundou" #: ../../include/datetime.php:285 msgid "years" -msgstr "ans" +msgstr "let" #: ../../include/datetime.php:286 msgid "months" -msgstr "mois" +msgstr "měsíců" #: ../../include/datetime.php:287 msgid "week" -msgstr "semaine" +msgstr "týdnem" #: ../../include/datetime.php:287 msgid "weeks" -msgstr "semaines" +msgstr "týdny" #: ../../include/datetime.php:288 msgid "days" -msgstr "jours" +msgstr "dnů" #: ../../include/datetime.php:289 msgid "hour" -msgstr "heure" +msgstr "hodina" #: ../../include/datetime.php:289 msgid "hours" -msgstr "heures" +msgstr "hodin" #: ../../include/datetime.php:290 msgid "minute" -msgstr "minute" +msgstr "minuta" #: ../../include/datetime.php:290 msgid "minutes" -msgstr "minutes" +msgstr "minut" #: ../../include/datetime.php:291 msgid "second" -msgstr "seconde" +msgstr "sekunda" #: ../../include/datetime.php:291 msgid "seconds" -msgstr "secondes" +msgstr "sekund" #: ../../include/datetime.php:300 #, php-format msgid "%1$d %2$s ago" -msgstr "%1$d %2$s auparavant" +msgstr "před %1$d %2$s" -#: ../../include/datetime.php:472 ../../include/items.php:1964 +#: ../../include/datetime.php:472 ../../include/items.php:1981 #, php-format msgid "%s's birthday" -msgstr "Anniversaire de %s's" +msgstr "%s má narozeniny" -#: ../../include/datetime.php:473 ../../include/items.php:1965 +#: ../../include/datetime.php:473 ../../include/items.php:1982 #, php-format msgid "Happy Birthday %s" -msgstr "Joyeux anniversaire, %s !" +msgstr "Veselé narozeniny %s" #: ../../include/features.php:23 msgid "General Features" -msgstr "Fonctions générales" +msgstr "Obecné funkčnosti" #: ../../include/features.php:25 msgid "Multiple Profiles" -msgstr "Profils multiples" +msgstr "Vícenásobné profily" #: ../../include/features.php:25 msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" +msgstr "Schopnost vytvořit vícenásobné profily" #: ../../include/features.php:30 msgid "Post Composition Features" -msgstr "Caractéristiques de composition de publication" +msgstr "Nastavení vytváření příspěvků" #: ../../include/features.php:31 msgid "Richtext Editor" -msgstr "Éditeur de texte enrichi" +msgstr "Richtext Editor" #: ../../include/features.php:31 msgid "Enable richtext editor" -msgstr "Activer l'éditeur de texte enrichi" +msgstr "Povolit richtext editor" #: ../../include/features.php:32 msgid "Post Preview" -msgstr "Aperçu du billet" +msgstr "Náhled příspěvku" #: ../../include/features.php:32 msgid "Allow previewing posts and comments before publishing them" -msgstr "Permet la prévisualisation des billets et commentaires avant de les publier" +msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" #: ../../include/features.php:33 msgid "Auto-mention Forums" -msgstr "" +msgstr "Automaticky zmíněná Fóra" #: ../../include/features.php:33 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" +msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" #: ../../include/features.php:38 msgid "Network Sidebar Widgets" -msgstr "Widgets réseau pour barre latérale" +msgstr "Síťové postranní widgety" #: ../../include/features.php:39 msgid "Search by Date" -msgstr "Rechercher par Date" +msgstr "Vyhledávat dle Data" #: ../../include/features.php:39 msgid "Ability to select posts by date ranges" -msgstr "Capacité de sélectionner les billets par intervalles de dates" +msgstr "Možnost označit příspěvky dle časového intervalu" #: ../../include/features.php:40 msgid "Group Filter" -msgstr "Filtre de groupe" +msgstr "Skupinový Filtr" #: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" -msgstr "" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" #: ../../include/features.php:41 msgid "Network Filter" -msgstr "Filtre de réseau" +msgstr "Síťový Filtr" #: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" -msgstr "" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" #: ../../include/features.php:42 msgid "Save search terms for re-use" -msgstr "Sauvegarder la recherche pour une utilisation ultérieure" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" #: ../../include/features.php:47 msgid "Network Tabs" -msgstr "" +msgstr "Síťové záložky" #: ../../include/features.php:48 msgid "Network Personal Tab" -msgstr "" +msgstr "Osobní síťový záložka " #: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" +msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " #: ../../include/features.php:49 msgid "Network New Tab" -msgstr "" +msgstr "Nová záložka síť" #: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" +msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" #: ../../include/features.php:50 msgid "Network Shared Links Tab" -msgstr "" +msgstr "záložka Síťové sdílené odkazy " #: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" -msgstr "" +msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" #: ../../include/features.php:55 msgid "Post/Comment Tools" -msgstr "outils de publication/commentaire" +msgstr "Nástroje Příspěvků/Komentářů" #: ../../include/features.php:56 msgid "Multiple Deletion" -msgstr "Suppression multiple" +msgstr "Násobné mazání" #: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" -msgstr "" +msgstr "Označit a smazat více " #: ../../include/features.php:57 msgid "Edit Sent Posts" -msgstr "Edité les publications envoyées" +msgstr "Editovat Odeslané příspěvky" #: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" -msgstr "" +msgstr "Editovat a opravit příspěvky a komentáře po odeslání" #: ../../include/features.php:58 msgid "Tagging" -msgstr "Tagger" +msgstr "Štítkování" #: ../../include/features.php:58 msgid "Ability to tag existing posts" -msgstr "Autorisé à tagger des publications existantes" +msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" #: ../../include/features.php:59 msgid "Post Categories" -msgstr "Catégories des publications" +msgstr "Kategorie příspěvků" #: ../../include/features.php:59 msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" +msgstr "Přidat kategorie k Vašim příspěvkům" #: ../../include/features.php:60 msgid "Ability to file posts under folders" -msgstr "" +msgstr "Možnost řadit příspěvky do složek" #: ../../include/features.php:61 msgid "Dislike Posts" -msgstr "N'aime pas" +msgstr "Označit příspěvky jako neoblíbené" #: ../../include/features.php:61 msgid "Ability to dislike posts/comments" -msgstr "Autorisé a ne pas aimer les publications/commentaires" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" #: ../../include/features.php:62 msgid "Star Posts" -msgstr "" +msgstr "Příspěvky s hvězdou" #: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" -msgstr "" +msgstr "Možnost označit příspěvky s indikátorem hvězdy" #: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" +msgstr "Sdílení oznámení ze sítě Diaspora" #: ../../include/diaspora.php:2299 msgid "Attachments:" -msgstr "Pièces jointes : " +msgstr "Přílohy:" #: ../../include/acl_selectors.php:326 msgid "Visible to everybody" -msgstr "Visible par tout le monde" +msgstr "Viditelné pro všechny" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " -msgstr "Une nouvelle personne partage avec vous à " +msgstr "Nový člověk si s vámi sdílí na" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "You have a new follower at " -msgstr "Vous avez un nouvel abonné à " +msgstr "Máte nového následovníka na" -#: ../../include/items.php:4216 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" -msgstr "Voulez-vous vraiment supprimer cet élément ?" +msgstr "Opravdu chcete smazat tuto položku?" -#: ../../include/items.php:4443 +#: ../../include/items.php:4460 msgid "Archives" -msgstr "Archives" +msgstr "Archív" #: ../../include/oembed.php:174 msgid "Embedded content" -msgstr "Contenu incorporé" +msgstr "vložený obsah" #: ../../include/oembed.php:183 msgid "Embedding disabled" -msgstr "Incorporation désactivée" +msgstr "Vkládání zakázáno" #: ../../include/security.php:22 msgid "Welcome " -msgstr "Bienvenue " +msgstr "Vítejte " #: ../../include/security.php:23 msgid "Please upload a profile photo." -msgstr "Merci d'illustrer votre profil d'une image." +msgstr "Prosím nahrejte profilovou fotografii" #: ../../include/security.php:26 msgid "Welcome back " -msgstr "Bienvenue à nouveau, " +msgstr "Vítejte zpět " #: ../../include/security.php:366 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." -msgstr "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é." +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/profile_selectors.php:6 msgid "Male" -msgstr "Masculin" +msgstr "Muž" #: ../../include/profile_selectors.php:6 msgid "Female" -msgstr "Féminin" +msgstr "Žena" #: ../../include/profile_selectors.php:6 msgid "Currently Male" -msgstr "Actuellement masculin" +msgstr "V současné době muž" #: ../../include/profile_selectors.php:6 msgid "Currently Female" -msgstr "Actuellement féminin" +msgstr "V současné době žena" #: ../../include/profile_selectors.php:6 msgid "Mostly Male" -msgstr "Principalement masculin" +msgstr "Většinou muž" #: ../../include/profile_selectors.php:6 msgid "Mostly Female" -msgstr "Principalement féminin" +msgstr "Většinou žena" #: ../../include/profile_selectors.php:6 msgid "Transgender" -msgstr "Transgenre" +msgstr "Transgender" #: ../../include/profile_selectors.php:6 msgid "Intersex" -msgstr "Inter-sexe" +msgstr "Intersex" #: ../../include/profile_selectors.php:6 msgid "Transsexual" -msgstr "Transsexuel" +msgstr "Transexuál" #: ../../include/profile_selectors.php:6 msgid "Hermaphrodite" -msgstr "Hermaphrodite" +msgstr "Hermafrodit" #: ../../include/profile_selectors.php:6 msgid "Neuter" -msgstr "Neutre" +msgstr "Neutrál" #: ../../include/profile_selectors.php:6 msgid "Non-specific" -msgstr "Non-spécifique" +msgstr "Nespecifikováno" #: ../../include/profile_selectors.php:6 msgid "Other" -msgstr "Autre" +msgstr "Jiné" #: ../../include/profile_selectors.php:6 msgid "Undecided" -msgstr "Indécis" +msgstr "Nerozhodnuto" #: ../../include/profile_selectors.php:23 msgid "Males" -msgstr "Hommes" +msgstr "Muži" #: ../../include/profile_selectors.php:23 msgid "Females" -msgstr "Femmes" +msgstr "Ženy" #: ../../include/profile_selectors.php:23 msgid "Gay" @@ -7218,19 +7244,19 @@ msgstr "Gay" #: ../../include/profile_selectors.php:23 msgid "Lesbian" -msgstr "Lesbienne" +msgstr "Lesbička" #: ../../include/profile_selectors.php:23 msgid "No Preference" -msgstr "Sans préférence" +msgstr "Bez preferencí" #: ../../include/profile_selectors.php:23 msgid "Bisexual" -msgstr "Bisexuel" +msgstr "Bisexuál" #: ../../include/profile_selectors.php:23 msgid "Autosexual" -msgstr "Auto-sexuel" +msgstr "Autosexuál" #: ../../include/profile_selectors.php:23 msgid "Abstinent" @@ -7238,153 +7264,148 @@ msgstr "Abstinent" #: ../../include/profile_selectors.php:23 msgid "Virgin" -msgstr "Vierge" +msgstr "panic/panna" #: ../../include/profile_selectors.php:23 msgid "Deviant" -msgstr "Déviant" +msgstr "Deviant" #: ../../include/profile_selectors.php:23 msgid "Fetish" -msgstr "Fétichiste" +msgstr "Fetišista" #: ../../include/profile_selectors.php:23 msgid "Oodles" -msgstr "Oodles" +msgstr "Hodně" #: ../../include/profile_selectors.php:23 msgid "Nonsexual" -msgstr "Non-sexuel" +msgstr "Nesexuální" #: ../../include/profile_selectors.php:42 msgid "Single" -msgstr "Célibataire" +msgstr "Svobodný" #: ../../include/profile_selectors.php:42 msgid "Lonely" -msgstr "Esseulé" +msgstr "Osamnělý" #: ../../include/profile_selectors.php:42 msgid "Available" -msgstr "Disponible" +msgstr "Dostupný" #: ../../include/profile_selectors.php:42 msgid "Unavailable" -msgstr "Indisponible" +msgstr "Nedostupný" #: ../../include/profile_selectors.php:42 msgid "Has crush" -msgstr "Attiré par quelqu'un" +msgstr "Zamilovaný" #: ../../include/profile_selectors.php:42 msgid "Infatuated" -msgstr "Entiché" +msgstr "Zabouchnutý" #: ../../include/profile_selectors.php:42 msgid "Dating" -msgstr "Dans une relation" +msgstr "Seznamující se" #: ../../include/profile_selectors.php:42 msgid "Unfaithful" -msgstr "Infidèle" +msgstr "Nevěrný" #: ../../include/profile_selectors.php:42 msgid "Sex Addict" -msgstr "Accro au sexe" +msgstr "Závislý na sexu" #: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" -msgstr "Amis par intérêt" +msgstr "Přátelé / výhody" #: ../../include/profile_selectors.php:42 msgid "Casual" -msgstr "Casual" +msgstr "Ležérní" #: ../../include/profile_selectors.php:42 msgid "Engaged" -msgstr "Fiancé" +msgstr "Zadaný" #: ../../include/profile_selectors.php:42 msgid "Married" -msgstr "Marié" +msgstr "Ženatý/vdaná" #: ../../include/profile_selectors.php:42 msgid "Imaginarily married" -msgstr "Se croit marié" +msgstr "Pomyslně ženatý/vdaná" #: ../../include/profile_selectors.php:42 msgid "Partners" -msgstr "Partenaire" +msgstr "Partneři" #: ../../include/profile_selectors.php:42 msgid "Cohabiting" -msgstr "En cohabitation" +msgstr "Žijící ve společné domácnosti" #: ../../include/profile_selectors.php:42 msgid "Common law" -msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" +msgstr "Zvykové právo" #: ../../include/profile_selectors.php:42 msgid "Happy" -msgstr "Heureux" +msgstr "Šťastný" #: ../../include/profile_selectors.php:42 msgid "Not looking" -msgstr "Pas intéressé" +msgstr "Nehledající" #: ../../include/profile_selectors.php:42 msgid "Swinger" -msgstr "Échangiste" +msgstr "Swinger" #: ../../include/profile_selectors.php:42 msgid "Betrayed" -msgstr "Trahi(e)" +msgstr "Zrazen" #: ../../include/profile_selectors.php:42 msgid "Separated" -msgstr "Séparé" +msgstr "Odloučený" #: ../../include/profile_selectors.php:42 msgid "Unstable" -msgstr "Instable" +msgstr "Nestálý" #: ../../include/profile_selectors.php:42 msgid "Divorced" -msgstr "Divorcé" +msgstr "Rozvedený(á)" #: ../../include/profile_selectors.php:42 msgid "Imaginarily divorced" -msgstr "Se croit divorcé" +msgstr "Pomyslně rozvedený" #: ../../include/profile_selectors.php:42 msgid "Widowed" -msgstr "Veuf/Veuve" +msgstr "Ovdovělý(á)" #: ../../include/profile_selectors.php:42 msgid "Uncertain" -msgstr "Incertain" +msgstr "Nejistý" #: ../../include/profile_selectors.php:42 msgid "It's complicated" -msgstr "C'est compliqué" +msgstr "Je to složité" #: ../../include/profile_selectors.php:42 msgid "Don't care" -msgstr "S'en désintéresse" +msgstr "Nezajímá" #: ../../include/profile_selectors.php:42 msgid "Ask me" -msgstr "Me demander" +msgstr "Zeptej se mě" #: ../../include/Contact.php:115 msgid "stopped following" -msgstr "retiré de la liste de suivi" +msgstr "následování zastaveno" #: ../../include/Contact.php:234 msgid "Drop Contact" -msgstr "Supprimer le contact" - -#: ../../include/dba.php:45 -#, 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'" +msgstr "Odstranit kontakt" diff --git a/view/fr/strings.php b/view/fr/strings.php index 79c3326c33..a8820d3f01 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -2,1568 +2,1585 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ - return ($n > 1);; + return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; }} ; -$a->strings["This entry was edited"] = ""; -$a->strings["Private Message"] = "Message privé"; -$a->strings["Edit"] = "Éditer"; -$a->strings["Select"] = "Sélectionner"; -$a->strings["Delete"] = "Supprimer"; -$a->strings["save to folder"] = "sauver vers dossier"; -$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["I like this (toggle)"] = "J'aime (bascule)"; -$a->strings["like"] = "aime"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; -$a->strings["dislike"] = "n'aime pas"; -$a->strings["Share this"] = "Partager"; -$a->strings["share"] = "partager"; -$a->strings["Categories:"] = "Catégories:"; -$a->strings["Filed under:"] = "Rangé sous:"; -$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -$a->strings["to"] = "à"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Inter-mur"; -$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["Comment"] = "Commenter"; -$a->strings["Please wait"] = "Patientez"; +$a->strings["This entry was edited"] = "Tento záznam byl editován"; +$a->strings["Private Message"] = "Soukromá zpráva"; +$a->strings["Edit"] = "Upravit"; +$a->strings["Select"] = "Vybrat"; +$a->strings["Delete"] = "Odstranit"; +$a->strings["save to folder"] = "uložit do složky"; +$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["I like this (toggle)"] = "Líbí se mi to (přepínač)"; +$a->strings["like"] = "má rád"; +$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; +$a->strings["dislike"] = "nemá rád"; +$a->strings["Share this"] = "Sdílet toto"; +$a->strings["share"] = "sdílí"; +$a->strings["Categories:"] = "Kategorie:"; +$a->strings["Filed under:"] = "Vyplněn pod:"; +$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; +$a->strings["to"] = "pro"; +$a->strings["via"] = "přes"; +$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; +$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["Comment"] = "Okomentovat"; +$a->strings["Please wait"] = "Čekejte prosím"; $a->strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", + 0 => "%d komentář", + 1 => "%d komentářů", + 2 => "%d komentářů", ); $a->strings["comment"] = array( 0 => "", - 1 => "commentaire", + 1 => "", + 2 => "komentář", ); -$a->strings["show more"] = "montrer plus"; -$a->strings["This is you"] = "C'est vous"; -$a->strings["Submit"] = "Envoyer"; -$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["Preview"] = "Aperçu"; -$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les addons."; -$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["toggle mobile"] = "activ. mobile"; -$a->strings["Home"] = "Profil"; -$a->strings["Your posts and conversations"] = "Vos notices et conversations"; +$a->strings["show more"] = "zobrazit více"; +$a->strings["This is you"] = "Nastavte Vaši polohu"; +$a->strings["Submit"] = "Odeslat"; +$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["Preview"] = "Náhled"; +$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášení pro použití rozšíření."; +$a->strings["Not Found"] = "Nenalezen"; +$a->strings["Page not found."] = "Stránka nenalezena"; +$a->strings["Permission denied"] = "Nedostatečné oprávnění"; +$a->strings["Permission denied."] = "Přístup odmítnut."; +$a->strings["toggle mobile"] = "přepnout mobil"; +$a->strings["Home"] = "Domů"; +$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; $a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Votre page de profil"; -$a->strings["Photos"] = "Photos"; -$a->strings["Your photos"] = "Vos photos"; -$a->strings["Events"] = "Événements"; -$a->strings["Your events"] = "Vos événements"; -$a->strings["Personal notes"] = "Notes personnelles"; -$a->strings["Your personal photos"] = "Vos photos personnelles"; -$a->strings["Community"] = "Communauté"; -$a->strings["don't show"] = "cacher"; -$a->strings["show"] = "montrer"; -$a->strings["Theme settings"] = "Réglages du thème graphique"; -$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; -$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["Contacts"] = "Contacts"; -$a->strings["Your contacts"] = "Vos contacts"; -$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["event"] = "évènement"; -$a->strings["status"] = "le statut"; -$a->strings["photo"] = "photo"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Profile Photos"] = "Photos du profil"; -$a->strings["Find Friends"] = "Trouver des amis"; -$a->strings["Local Directory"] = "Annuaire local"; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Similar Interests"] = "Intérêts similaires"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; -$a->strings["Invite Friends"] = "Inviter des amis"; -$a->strings["Settings"] = "Réglages"; -$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["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; -$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; -$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; -$a->strings["Alignment"] = "Alignement"; -$a->strings["Left"] = "Gauche"; -$a->strings["Center"] = "Centre"; -$a->strings["Color scheme"] = "Palette de couleurs"; -$a->strings["Posts font size"] = "Taille de texte des messages"; -$a->strings["Textareas font size"] = "Taille de police des zones de texte"; -$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; -$a->strings["default"] = "défaut"; -$a->strings["Background Image"] = "Image de fond"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; -$a->strings["Background Color"] = "Couleur de fond"; -$a->strings["HEX value for the background color. Don't include the #"] = ""; -$a->strings["font size"] = "Taille de police"; -$a->strings["base font size for your interface"] = ""; -$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 theme width"] = "Largeur du thème"; -$a->strings["Set style"] = "Définir le style"; -$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["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["Remember me"] = "Se souvenir de moi"; -$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; -$a->strings["Forgot your password?"] = "Mot de passe oublié?"; -$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; -$a->strings["terms of service"] = "conditions d'utilisation"; -$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; -$a->strings["privacy policy"] = "politique de confidentialité"; -$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; -$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; -$a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Connect"] = "Relier"; -$a->strings["Message"] = "Message"; -$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["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["[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"] = "Statut"; -$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; -$a->strings["Profile Details"] = "Détails du profil"; -$a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Videos"] = "Vidéos"; -$a->strings["Events and Calendar"] = "Événements et agenda"; -$a->strings["Personal Notes"] = "Notes personnelles"; -$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; -$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["Public access denied."] = "Accès public refusé."; -$a->strings["Item not found."] = "Élément introuvable."; -$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; -$a->strings["Item has been removed."] = "Cet élément a été enlevé."; -$a->strings["Access denied."] = "Accès refusé."; -$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["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; -$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["Yes"] = "Oui"; -$a->strings["No"] = "Non"; -$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["Import"] = "Importer"; -$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; -$a->strings["Profile not found."] = "Profil introuvable."; -$a->strings["Contact not found."] = "Contact introuvable."; -$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."; -$a->strings["Remote site reported: "] = "Alerte du site distant: "; -$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; -$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; -$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; -$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; -$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; -$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 chez %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$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 billets et contacts, et/ou à créer des billets à votre place?"; -$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["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s"; -$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["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["Upload photo"] = "Joindre photo"; -$a->strings["Insert web link"] = "Insérer lien web"; -$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."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; -$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["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"] = "Connexions"; +$a->strings["Your profile page"] = "Vaše profilová stránka"; +$a->strings["Photos"] = "Fotografie"; +$a->strings["Your photos"] = "Vaše fotky"; +$a->strings["Events"] = "Události"; +$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"] = "Komunita"; +$a->strings["don't show"] = "nikdy nezobrazit"; +$a->strings["show"] = "zobrazit"; +$a->strings["Theme settings"] = "Nastavení téma"; +$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; +$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["Contacts"] = "Kontakty"; +$a->strings["Your contacts"] = "Vaše kontakty"; +$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["event"] = "událost"; +$a->strings["status"] = "Stav"; +$a->strings["photo"] = "fotografie"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; +$a->strings["Last photos"] = "Poslední fotografie"; +$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; +$a->strings["Profile Photos"] = "Profilové fotografie"; +$a->strings["Find Friends"] = "Nalézt Přátele"; +$a->strings["Local Directory"] = "Lokální Adresář"; +$a->strings["Global Directory"] = "Globální adresář"; +$a->strings["Similar Interests"] = "Podobné zájmy"; +$a->strings["Friend Suggestions"] = "Návrhy přátel"; +$a->strings["Invite Friends"] = "Pozvat přátele"; +$a->strings["Settings"] = "Nastavení"; +$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["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; +$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["Alignment"] = "Zarovnání"; +$a->strings["Left"] = "Vlevo"; +$a->strings["Center"] = "Uprostřed"; +$a->strings["Color scheme"] = "Barevné schéma"; +$a->strings["Posts font size"] = "Velikost písma u příspěvků"; +$a->strings["Textareas font size"] = "Velikost písma textů"; +$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; +$a->strings["default"] = "standardní"; +$a->strings["Background Image"] = "Obrázek pozadí"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí."; +$a->strings["Background Color"] = "Barva pozadí"; +$a->strings["HEX value for the background color. Don't include the #"] = "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #"; +$a->strings["font size"] = "velikost fondu"; +$a->strings["base font size for your interface"] = "základní velikost fontu"; +$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 theme width"] = "Nastavení šířku grafické šablony"; +$a->strings["Set style"] = "Nastavit styl"; +$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["Register"] = "Registrovat"; +$a->strings["Logout"] = "Odhlásit se"; +$a->strings["Login"] = "Přihlásit se"; +$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; +$a->strings["Password: "] = "Heslo: "; +$a->strings["Remember me"] = "Pamatuj si mne"; +$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; +$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; +$a->strings["Password Reset"] = "Obnovení hesla"; +$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; +$a->strings["terms of service"] = "podmínky použití"; +$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; +$a->strings["privacy policy"] = "Ochrana soukromí"; +$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; +$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; +$a->strings["Edit profile"] = "Upravit profil"; +$a->strings["Connect"] = "Spojit"; +$a->strings["Message"] = "Zpráva"; +$a->strings["Profiles"] = "Profily"; +$a->strings["Manage/edit profiles"] = "Spravovat/upravit 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["Location:"] = "Místo:"; +$a->strings["Gender:"] = "Pohlaví:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; +$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["[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"] = "Stav"; +$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; +$a->strings["Profile Details"] = "Detaily profilu"; +$a->strings["Photo Albums"] = "Fotoalba"; +$a->strings["Videos"] = "Videa"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$a->strings["Personal Notes"] = "Osobní poznámky"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %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["Public access denied."] = "Veřejný přístup odepřen."; +$a->strings["Item not found."] = "Položka nenalezena."; +$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; +$a->strings["Item has been removed."] = "Položka byla odstraněna."; +$a->strings["Access denied."] = "Přístup odmítnut"; +$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["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; +$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?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$a->strings["Yes"] = "Ano"; +$a->strings["No"] = "Ne"; +$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"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; +$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["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; +$a->strings["Profile not found."] = "Profil nenalezen"; +$a->strings["Contact not found."] = "Kontakt nenalezen."; +$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."; +$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; +$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; +$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; +$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; +$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["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["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["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["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; +$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."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; +$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["Reset"] = "Reset"; +$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["Upload photo"] = "Nahrát fotografii"; +$a->strings["Insert web link"] = "Vložit webový odkaz"; +$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. 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["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["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["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."] = "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"] = "Importer courriels"; -$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["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; -$a->strings["Cancel"] = "Annuler"; -$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["Search Results For:"] = "Résultats pour:"; -$a->strings["Remove term"] = "Retirer le terme"; -$a->strings["Saved Searches"] = "Recherches"; -$a->strings["add"] = "ajouter"; -$a->strings["Commented Order"] = "Tri par commentaires"; -$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; -$a->strings["Posted Order"] = "Tri par publications"; -$a->strings["Sort by Post Date"] = "Trier par date de publication"; -$a->strings["Personal"] = "Personnel"; -$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["Shared Links"] = "Liens partagés"; -$a->strings["Interesting Links"] = "Liens intéressants"; -$a->strings["Starred"] = "Mis en avant"; -$a->strings["Favourite Posts"] = "Publications favorites"; +$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["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["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; +$a->strings["Cancel"] = "Zrušit"; +$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["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["Personal"] = "Osobní"; +$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["Shared Links"] = "Sdílené odkazy"; +$a->strings["Interesting Links"] = "Zajímavé odkazy"; +$a->strings["Starred"] = "S hvězdičkou"; +$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; $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.", + 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."] = "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["Friendica Communications Server - Setup"] = ""; -$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["Next"] = "Suivant"; -$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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Version de PHP:"; +$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["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["Friendica Communications Server - Setup"] = "Friendica Komunikač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["System check"] = "Testování systému"; +$a->strings["Next"] = "Dále"; +$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["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["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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; +$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; $a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "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["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"] = "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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l é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["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["Can not parse base url. Must have at least ://"] = ""; -$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; -$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; -$a->strings["Never"] = "Jamais"; -$a->strings["At post arrival"] = "A l'arrivé d'une publication"; -$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["Multi user instance"] = "Instance multi-utilisateurs"; -$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["Save Settings"] = "Sauvegarder les paramétres"; -$a->strings["File upload"] = "Téléversement de fichier"; -$a->strings["Policies"] = "Politiques"; -$a->strings["Advanced"] = "Avancé"; -$a->strings["Performance"] = "Performance"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; -$a->strings["Site name"] = "Nom du site"; -$a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["Additional Info"] = "Informations supplémentaires"; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; -$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é au niveau du profile utilisateur - 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'utilisation de SSL"; -$a->strings["Old style 'Share'"] = ""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; -$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."; -$a->strings["Single user instance"] = "Instance mono-utilisateur"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."; -$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["Maximum Daily Registrations"] = "Inscriptions maximum par jour"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."; -$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"] = "autoriser le suivi des éléments par fil conducteur"; -$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"] = "Publications privées par défaut pour les nouveaux utilisateurs"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; -$a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l'acces public pour les extentions listées dans le menu apps."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self"; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; -$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 (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$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["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; -$a->strings["Suppress Language"] = "Supprimer un langage"; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Path to item cache"] = "Chemin vers le cache des objets."; -$a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)."; -$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage"; -$a->strings["Temp path"] = "Chemin des fichiers temporaires"; -$a->strings["Base path to installation"] = "Chemin de base de l'installation"; -$a->strings["New base url"] = ""; -$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["Registration successful. Email send to user"] = "Souscription réussi. Mail envoyé à l'utilisateur"; +$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."; +$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; +$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["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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; +$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["

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["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["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["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é"; +$a->strings["Pending registrations"] = "Čekající registrace"; +$a->strings["Version"] = "Verze"; +$a->strings["Active plugins"] = "Aktivní pluginy"; +$a->strings["Can not parse base url. Must have at least ://"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://"; +$a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; +$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; +$a->strings["Never"] = "Nikdy"; +$a->strings["At post arrival"] = "Při obdržení příspěvku"; +$a->strings["Frequently"] = "Často"; +$a->strings["Hourly"] = "každou hodinu"; +$a->strings["Twice daily"] = "Dvakrát denně"; +$a->strings["Daily"] = "denně"; +$a->strings["Multi user instance"] = "Více uživatelská instance"; +$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["Save Settings"] = "Uložit Nastavení"; +$a->strings["File upload"] = "Nahrání souborů"; +$a->strings["Policies"] = "Politiky"; +$a->strings["Advanced"] = "Pokročilé"; +$a->strings["Performance"] = "Výkonnost"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."; +$a->strings["Site name"] = "Název webu"; +$a->strings["Banner/Logo"] = "Banner/logo"; +$a->strings["Additional Info"] = "Dodatečné informace"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."; +$a->strings["System language"] = "Systémový jazyk"; +$a->strings["System theme"] = "Grafická šablona systému "; +$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["Old style 'Share'"] = "Sdílení \"postaru\""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky."; +$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."; +$a->strings["Single user instance"] = "Jednouživatelská instance"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"; +$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["Maximum Daily Registrations"] = "Maximální počet denních registrací"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."; +$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"] = "Nastavit pro nové uživatele příspěvky jako soukromé"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."; +$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."; +$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."; +$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit "; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."; +$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["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["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; +$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."; +$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["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["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"; +$a->strings["Suppress Language"] = "Potlačit Jazyk"; +$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích"; +$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti"; +$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)."; +$a->strings["Path for lock file"] = "Cesta k souboru zámku"; +$a->strings["Temp path"] = "Cesta k dočasným souborům"; +$a->strings["Base path to installation"] = "Základní cesta k instalaci"; +$a->strings["New base url"] = "Nová výchozí url adresa"; +$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["Registration successful. Email send to user"] = "Registrace úspěšná. Email zaslán uživateli"; $a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utilisateur a (dé)bloqué", - 1 => "%s utilisateurs ont (dé)bloqué", + 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 utilisateur supprimé", - 1 => "%s utilisateurs supprimés", + 0 => "%s uživatel smazán", + 1 => "%s uživatelů smazáno", + 2 => "%s uživatelů smazáno", ); -$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["Add User"] = "Ajouter l'utilisateur"; -$a->strings["select all"] = "tout sélectionner"; -$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; -$a->strings["User waiting for permanent deletion"] = ""; -$a->strings["Request date"] = "Date de la demande"; -$a->strings["Name"] = "Nom"; -$a->strings["Email"] = "Courriel"; -$a->strings["No registrations."] = "Pas d'inscriptions."; -$a->strings["Approve"] = "Approuver"; -$a->strings["Deny"] = "Rejetter"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Site admin"] = "Administration du Site"; -$a->strings["Account expired"] = "Compte expiré"; -$a->strings["New User"] = "Nouvel utilisateur"; -$a->strings["Register date"] = "Date d'inscription"; -$a->strings["Last login"] = "Dernière connexion"; -$a->strings["Last item"] = "Dernier élément"; -$a->strings["Deleted since"] = ""; -$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["Name of the new user."] = "Nom du nouvel utilisateur."; -$a->strings["Nickname"] = "Pseudo"; -$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur."; -$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur."; -$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["Enable Debugging"] = "Activer le déboggage"; -$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["Update now"] = "Mettre à jour"; -$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["Search"] = "Recherche"; -$a->strings["No results."] = "Aucun résultat."; -$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; -$a->strings["link"] = "lien"; -$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["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer le billet"; -$a->strings["upload photo"] = "envoi image"; -$a->strings["Attach file"] = "Joindre fichier"; -$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["audio link"] = "lien audio"; -$a->strings["Set your location"] = "Définir votre localisation"; -$a->strings["set location"] = "spéc. localisation"; -$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; -$a->strings["clear location"] = "supp. localisation"; -$a->strings["Permission settings"] = "Réglages des permissions"; -$a->strings["CC: email addresses"] = "CC: adresses de courriel"; -$a->strings["Public post"] = "Billet 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["Item not available."] = "Elément non disponible."; -$a->strings["Item was not found."] = "Element introuvable."; -$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["Find on this site"] = "Trouver sur ce site"; -$a->strings["Finding: "] = "Trouvé: "; -$a->strings["Site Directory"] = "Annuaire local"; -$a->strings["Find"] = "Trouver"; -$a->strings["Age: "] = "Age: "; -$a->strings["Gender: "] = "Genre: "; -$a->strings["About:"] = "À propos:"; -$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; -$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; -$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$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["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["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Move account"] = "Migrer le compte"; -$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; -$a->strings["Account file"] = "Fichier du compte"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; -$a->strings["Visible to:"] = "Visible par:"; -$a->strings["Save"] = "Sauver"; -$a->strings["Help:"] = "Aide:"; -$a->strings["Help"] = "Aide"; -$a->strings["No profile"] = "Aucun profil"; -$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["User '%s' deleted"] = "Uživatel '%s' smazán"; +$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován"; +$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován"; +$a->strings["Add User"] = "Přidat Uživatele"; +$a->strings["select all"] = "Vybrat vše"; +$a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení"; +$a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání"; +$a->strings["Request date"] = "Datum žádosti"; +$a->strings["Name"] = "Jméno"; +$a->strings["Email"] = "E-mail"; +$a->strings["No registrations."] = "Žádné registrace."; +$a->strings["Approve"] = "Schválit"; +$a->strings["Deny"] = "Odmítnout"; +$a->strings["Block"] = "Blokovat"; +$a->strings["Unblock"] = "Odblokovat"; +$a->strings["Site admin"] = "Site administrátor"; +$a->strings["Account expired"] = "Účtu vypršela platnost"; +$a->strings["New User"] = "Nový uživatel"; +$a->strings["Register date"] = "Datum registrace"; +$a->strings["Last login"] = "Datum posledního přihlášení"; +$a->strings["Last item"] = "Poslední položka"; +$a->strings["Deleted since"] = "Smazán od"; +$a->strings["Account"] = "Účet"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Už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?"; +$a->strings["Name of the new user."] = "Jméno nového uživatele"; +$a->strings["Nickname"] = "Přezdívka"; +$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele."; +$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele."; +$a->strings["Plugin %s disabled."] = "Plugin %s zakázán."; +$a->strings["Plugin %s enabled."] = "Plugin %s povolen."; +$a->strings["Disable"] = "Zakázat"; +$a->strings["Enable"] = "Povolit"; +$a->strings["Toggle"] = "Přepnout"; +$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["Enable Debugging"] = "Povolit ladění"; +$a->strings["Log file"] = "Soubor s logem"; +$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["Update now"] = "Aktualizovat"; +$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["Search"] = "Vyhledávání"; +$a->strings["No results."] = "Žádné výsledky."; +$a->strings["Tips for New Members"] = "Tipy pro nové členy"; +$a->strings["link"] = "odkaz"; +$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["Item not found"] = "Položka nenalezena"; +$a->strings["Edit post"] = "Upravit příspěvek"; +$a->strings["upload photo"] = "nahrát fotky"; +$a->strings["Attach file"] = "Přiložit soubor"; +$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 your location"] = "Nastavte vaši polohu"; +$a->strings["set location"] = "nastavit místo"; +$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; +$a->strings["clear location"] = "vymazat místo"; +$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["Item not available."] = "Položka není k dispozici."; +$a->strings["Item was not found."] = "Položka nebyla nalezena."; +$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["Find on this site"] = "Nalézt na tomto webu"; +$a->strings["Finding: "] = "Zjištění: "; +$a->strings["Site Directory"] = "Adresář serveru"; +$a->strings["Find"] = "Najít"; +$a->strings["Age: "] = "Věk: "; +$a->strings["Gender: "] = "Pohlaví: "; +$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["Contact settings applied."] = "Nastavení kontaktu změněno"; +$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; +$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 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["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["Remote Self"] = "Remote Self"; +$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; +$a->strings["Move account"] = "Přesunout účet"; +$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; +$a->strings["Account file"] = "Soubor s účtem"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; +$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; +$a->strings["Visible to:"] = "Viditelné pro:"; +$a->strings["Save"] = "Uložit"; +$a->strings["Help:"] = "Nápověda:"; +$a->strings["Help"] = "Nápověda"; +$a->strings["No profile"] = "Žádný profil"; +$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."; $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é", + 0 => "%d požadovaný parametr nebyl nalezen na daném místě", + 1 => "%d požadované parametry nebyly nalezeny na daném místě", + 2 => "%d požadované parametry nebyly nalezeny na daném místě", ); -$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["Introduction complete."] = "Představení dokončeno."; +$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; +$a->strings["Profile unavailable."] = "Profil není k dispozici."; +$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; +$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."; +$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; +$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; +$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; +$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 propojení %s."; +$a->strings["Confirm"] = "Potvrdit"; +$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; +$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["Add a personal note:"] = "Přidat osobní poznámku:"; $a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální 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 recherche Diaspora."; -$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Submit Request"] = "Envoyer la requête"; -$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; -$a->strings["View in context"] = "Voir dans le contexte"; +$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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; +$a->strings["View in context"] = "Pohled v kontextu"; $a->strings["%d contact edited."] = array( - 0 => "%d contact édité", - 1 => "%d contacts édités.", + 0 => "%d kontakt upraven.", + 1 => "%d kontakty upraveny", + 2 => "%d kontaktů upraveno", ); -$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["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?"; -$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["(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["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."; +$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["Contact has been archived"] = "Kontakt byl archivován"; +$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; +$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; +$a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; +$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["(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 contact en commun", - 1 => "%d contacts en commun", + 0 => "%d sdílený kontakt", + 1 => "%d sdílených kontaktů", + 2 => "%d sdílených kontaktů", ); -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "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["Currently blocked"] = "Actuellement bloqué"; -$a->strings["Currently ignored"] = "Actuellement ignoré"; -$a->strings["Currently archived"] = "Actuellement archivé"; -$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; -$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["Notification for new posts"] = "Notification des nouvelles publications"; -$a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Fetch further information for feeds"] = ""; -$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["Search your contacts"] = "Rechercher dans vos contacts"; -$a->strings["Update"] = "Mises-à-jour"; -$a->strings["everybody"] = "tout le monde"; -$a->strings["Additional features"] = "Fonctions supplémentaires"; -$a->strings["Display"] = "Afficher"; -$a->strings["Social Networks"] = "Réseaux sociaux"; -$a->strings["Delegations"] = "Délégations"; -$a->strings["Connected apps"] = "Applications connectées"; -$a->strings["Export personal data"] = "Exporter"; -$a->strings["Remove account"] = "Supprimer le compte"; -$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; -$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["Features updated"] = "Fonctionnalités mises à jour"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$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["Wrong password."] = "Mauvais mot de passe."; -$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["Wrong Password"] = "Mauvais mot de passe"; -$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["Off"] = "Éteint"; -$a->strings["On"] = "Allumé"; -$a->strings["Additional Features"] = "Fonctions supplémentaires"; -$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["View all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; +$a->strings["Unignore"] = "Přestat ignorovat"; +$a->strings["Ignore"] = "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["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 URL settings"] = "Opravit nastavení adresy URL "; +$a->strings["View conversations"] = "Zobrazit konverzace"; +$a->strings["Delete contact"] = "Odstranit kontakt"; +$a->strings["Last update:"] = "Poslední aktualizace:"; +$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; +$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["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; +$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["Notification for new posts"] = "Upozornění na nové příspěvky"; +$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; +$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál"; +$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["Search your contacts"] = "Prohledat Vaše kontakty"; +$a->strings["Update"] = "Aktualizace"; +$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; +$a->strings["Additional features"] = "Další funkčnosti"; +$a->strings["Display"] = "Zobrazení"; +$a->strings["Social Networks"] = "Sociální sítě"; +$a->strings["Delegations"] = "Delegace"; +$a->strings["Connected apps"] = "Propojené aplikace"; +$a->strings["Export personal data"] = "Export osobních údajů"; +$a->strings["Remove account"] = "Odstranit účet"; +$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; +$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["Features updated"] = "Aktualizované funkčnosti"; +$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; +$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["Wrong password."] = "Špatné heslo."; +$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[" 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["Wrong Password"] = "Špatné heslo"; +$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["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["Off"] = "Vypnuto"; +$a->strings["On"] = "Zapnuto"; +$a->strings["Additional Features"] = "Další Funkčnosti"; +$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."] = "L'accès courriel est désactivé sur ce site."; -$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["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["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; -$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$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["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; +$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["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:"] = "Počet položek zobrazených na stránce:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; +$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; +$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; +$a->strings["Infinite scroll"] = "Nekonečné posouvání"; +$a->strings["User Types"] = "Uživatelské typy"; +$a->strings["Community Types"] = "Komunitní typy"; +$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 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 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 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."] = "&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["Current Password:"] = "Mot de passe actuel:"; -$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; -$a->strings["Password:"] = "Mot de passe:"; -$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["Show to Groups"] = "Montrer aux groupes"; -$a->strings["Show to Contacts"] = "Montrer aux Contacts"; -$a->strings["Default Private Post"] = "Message privé par défaut"; -$a->strings["Default Public Post"] = "Message publique par défaut"; -$a->strings["Default Permissions for New Posts"] = "Permissions par défaut sur les nouveaux articles"; -$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["Relocate"] = ""; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Profile deleted."] = "Profil supprimé."; +$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 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["Password Settings"] = "Nastavení hesla"; +$a->strings["New Password:"] = "Nové heslo:"; +$a->strings["Confirm:"] = "Potvrďte:"; +$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; +$a->strings["Current Password:"] = "Stávající heslo:"; +$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; +$a->strings["Password:"] = "Heslo: "; +$a->strings["Basic Settings"] = "Základní nastavení"; +$a->strings["Full Name:"] = "Celé jméno:"; +$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["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["Show to Groups"] = "Zobrazit ve Skupinách"; +$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; +$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; +$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; +$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; +$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["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["Relocate"] = "Změna umístění"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; +$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; +$a->strings["Profile deleted."] = "Profil smazán."; $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["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["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; -$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; -$a->strings["Change Profile Photo"] = "Changer la photo 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"; -$a->strings["Clone this profile"] = "Cloner ce profil"; -$a->strings["Delete this profile"] = "Supprimer ce profil"; -$a->strings["Profile Name:"] = "Nom du profil:"; -$a->strings["Your Full Name:"] = "Votre nom complet:"; -$a->strings["Title/Description:"] = "Titre/Description:"; -$a->strings["Your Gender:"] = "Votre genre:"; -$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; -$a->strings["Street Address:"] = "Adresse postale:"; -$a->strings["Locality/City:"] = "Ville/Localité:"; -$a->strings["Postal/Zip Code:"] = "Code postal:"; -$a->strings["Country:"] = "Pays:"; -$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"] = "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["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["Edit/Manage Profiles"] = "Editer/gérer les profils"; -$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["Save Group"] = "Sauvegarder le groupe"; -$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["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 (raw HTML): "] = "bb2html (HTML brut)"; +$a->strings["New profile created."] = "Nový profil vytvořen."; +$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; +$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["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["Change Profile Photo"] = "Změna Profilové fotky"; +$a->strings["View this profile"] = "Zobrazit tento profil"; +$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; +$a->strings["Clone this profile"] = "Klonovat tento profil"; +$a->strings["Delete this profile"] = "Smazat tento profil"; +$a->strings["Profile Name:"] = "Jméno profilu:"; +$a->strings["Your Full Name:"] = "Vaše celé jméno:"; +$a->strings["Title/Description:"] = "Název / Popis:"; +$a->strings["Your Gender:"] = "Vaše pohlaví:"; +$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; +$a->strings["Street Address:"] = "Ulice:"; +$a->strings["Locality/City:"] = "Město:"; +$a->strings["Postal/Zip Code:"] = "PSČ:"; +$a->strings["Country:"] = "Země:"; +$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)"; +$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; +$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"; +$a->strings["Books, literature"] = "Knihy, literatura"; +$a->strings["Television"] = "Televize"; +$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; +$a->strings["Love/romance"] = "Láska/romantika"; +$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["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; +$a->strings["Group created."] = "Skupina vytvořena."; +$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; +$a->strings["Group not found."] = "Skupina nenalezena."; +$a->strings["Group name changed."] = "Název skupiny byl změněn."; +$a->strings["Save Group"] = "Uložit Skupinu"; +$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; +$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["Group Editor"] = "Editor skupin"; +$a->strings["Members"] = "Členové"; +$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; +$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 (raw HTML): "] = "bb2html (raw HTML): "; $a->strings["bb2html: "] = "bb2html: "; $a->strings["bb2html2bb: "] = "bb2html2bb: "; $a->strings["bb2md: "] = "bb2md: "; $a->strings["bb2md2html: "] = "bb2md2html: "; $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :"; -$a->strings["diaspora2bb: "] = "diaspora2bb :"; -$a->strings["Not available."] = "Indisponible."; -$a->strings["Contact added"] = "Contact ajouté"; -$a->strings["No more system notifications."] = "Pas plus de notifications système."; -$a->strings["System Notifications"] = "Notifications du système"; -$a->strings["New Message"] = "Nouveau message"; -$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; -$a->strings["Messages"] = "Messages"; -$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?"; -$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["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not available."] = "Není k dispozici."; +$a->strings["Contact added"] = "Kontakt přidán"; +$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; +$a->strings["System Notifications"] = "Systémová upozornění"; +$a->strings["New Message"] = "Nová zpráva"; +$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; +$a->strings["Messages"] = "Zprávy"; +$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; +$a->strings["Message deleted."] = "Zpráva odstraněna."; +$a->strings["Conversation removed."] = "Konverzace odstraněna."; +$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 message", - 1 => "%d messages", + 0 => "%d zpráva", + 1 => "%d zprávy", + 2 => "%d zpráv", ); -$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; -$a->strings["Post successful."] = "Publication réussie."; +$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; +$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Conversion temporelle"; -$a->strings["Friendica 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["Save to Folder:"] = "Sauver dans le Dossier:"; -$a->strings["- select -"] = "- choisir -"; -$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["People Search"] = "Recherche de personnes"; -$a->strings["No matches"] = "Aucune correspondance"; -$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; -$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["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"; -$a->strings["Delete Photo"] = "Effacer la photo"; -$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été identifié %2\$s par %3\$s"; -$a->strings["a photo"] = "une photo"; -$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["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["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 de statut pour cet envoi"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Private Photo"] = "Photo privée"; -$a->strings["Public Photo"] = "Photo publique"; -$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["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["Private photo"] = "Photo privée"; -$a->strings["Public photo"] = "Photo publique"; -$a->strings["Share"] = "Partager"; -$a->strings["View Album"] = "Voir l'album"; -$a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$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["No videos selected"] = "Pas de vidéo sélectionné"; -$a->strings["View Video"] = "Regarder la vidéo"; -$a->strings["Recent Videos"] = "Vidéos récente"; -$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; -$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; -$a->strings["Export account"] = "Exporter le compte"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; -$a->strings["Export all"] = "Tout exporter"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; -$a->strings["Common Friends"] = "Amis communs"; -$a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; -$a->strings["Wall Photos"] = "Photos du mur"; -$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["Upload File:"] = "Fichier à téléverser:"; -$a->strings["Select a profile:"] = "Choisir un profil:"; -$a->strings["Upload"] = "Téléverser"; -$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["Applications"] = "Applications"; -$a->strings["No installed applications."] = "Pas d'application installée."; -$a->strings["Nothing new here"] = "Rien de neuf ici"; -$a->strings["Clear notifications"] = "Effacer les notifications"; -$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["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["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; +$a->strings["Time Conversion"] = "Časová konverze"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; +$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["Save to Folder:"] = "Uložit do složky:"; +$a->strings["- select -"] = "- vyber -"; +$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["No contacts."] = "Žádné kontakty."; +$a->strings["View Contacts"] = "Zobrazit kontakty"; +$a->strings["People Search"] = "Vyhledávání lidí"; +$a->strings["No matches"] = "Žádné shody"; +$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; +$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; +$a->strings["Album not found."] = "Album nenalezeno."; +$a->strings["Delete Album"] = "Smazat album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; +$a->strings["Delete Photo"] = "Smazat fotografii"; +$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; +$a->strings["a photo"] = "fotografie"; +$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; +$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; +$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; +$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; +$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["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["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; +$a->strings["Permissions"] = "Oprávnění:"; +$a->strings["Private Photo"] = "Soukromé Fotografie"; +$a->strings["Public Photo"] = "Veřejné Fotografie"; +$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["View Full Size"] = "Zobrazit v plné velikosti"; +$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"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Share"] = "Sdílet"; +$a->strings["View Album"] = "Zobrazit album"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; +$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["No videos selected"] = "Není vybráno žádné video"; +$a->strings["View Video"] = "Zobrazit video"; +$a->strings["Recent Videos"] = "Aktuální Videa"; +$a->strings["Upload New Videos"] = "Nahrát nová videa"; +$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; +$a->strings["Export account"] = "Exportovat účet"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; +$a->strings["Export all"] = "Exportovat vše"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; +$a->strings["Wall Photos"] = "Fotografie na zdi"; +$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["Upload File:"] = "Nahrát soubor:"; +$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"; +$a->strings["Crop Image"] = "Oříznout obrázek"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; +$a->strings["Done Editing"] = "Editace dokončena"; +$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; +$a->strings["Applications"] = "Aplikace"; +$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; +$a->strings["Nothing new here"] = "Zde není nic nového"; +$a->strings["Clear notifications"] = "Smazat notifikace"; +$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["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["Remove"] = "Odstranit"; +$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"] = "Editer l'événement"; -$a->strings["link to source"] = "lien original"; -$a->strings["Create New Event"] = "Créer un nouvel événement"; -$a->strings["Previous"] = "Précédent"; -$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["Title:"] = "Titre :"; -$a->strings["Share this event"] = "Partager cet événement"; -$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["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; -$a->strings["Files"] = "Fichiers"; -$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; -$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["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["Unable to locate original post."] = "Impossible de localiser l'article original."; -$a->strings["Empty post discarded."] = "Article vide défaussé."; -$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["{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["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["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Rejeter"; -$a->strings["System"] = "Système"; -$a->strings["Network"] = "Réseau"; -$a->strings["Introductions"] = "Introductions"; -$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["Post a new friend activity"] = "Poster concernant les nouvelles amitiés"; -$a->strings["if applicable"] = "si possible"; -$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é le billet de %s"; -$a->strings["%s disliked %s's post"] = "%s n'a pas aimé le billet 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é un billet"; -$a->strings["%s commented on %s's post"] = "%s a commenté le billet 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 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["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; -$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; -$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; -$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; +$a->strings["Edit event"] = "Editovat událost"; +$a->strings["link to source"] = "odkaz na zdroj"; +$a->strings["Create New Event"] = "Vytvořit novou událost"; +$a->strings["Previous"] = "Předchozí"; +$a->strings["hour:minute"] = "hodina:minuta"; +$a->strings["Event details"] = "Detaily události"; +$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["Title:"] = "Název:"; +$a->strings["Share this event"] = "Sdílet tuto událost"; +$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["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; +$a->strings["Files"] = "Soubory"; +$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; +$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["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["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["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 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["{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["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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; +$a->strings["Discard"] = "Odstranit"; +$a->strings["System"] = "Systém"; +$a->strings["Network"] = "Síť"; +$a->strings["Introductions"] = "Představení"; +$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["Friend Suggestion"] = "Návrh přátelství"; +$a->strings["suggested by %s"] = "navrhl %s"; +$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; +$a->strings["if applicable"] = "je-li použitelné"; +$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["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 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 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["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; +$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; +$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; +$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; $a->strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", + 0 => "%d zpráva odeslána.", + 1 => "%d zprávy odeslány.", + 2 => "%d zprávy odeslány.", ); -$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["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["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["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["Welcome to %s"] = "Bienvenue sur %s"; -$a->strings["Friends of %s"] = "Amis de %s"; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; -$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["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["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["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 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["Welcome to %s"] = "Vítá Vás %s"; +$a->strings["Friends of %s"] = "Přátelé uživatele %s"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; +$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 => "%d invitation disponible", - 1 => "%d invitations disponibles", + 0 => "Pozvánka %d k dispozici", + 1 => "Pozvánky %d k dispozici", + 2 => "Pozvánky %d k dispozici", ); -$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["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["User not found."] = "Utilisateur non trouvé"; -$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; -$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; -$a->strings["view full size"] = "voir en pleine taille"; -$a->strings["Starts:"] = "Débute:"; -$a->strings["Finishes:"] = "Finit:"; -$a->strings["(no subject)"] = "(sans titre)"; -$a->strings["noreply"] = "noreply"; -$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["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["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["Friends"] = "Amis"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; -$a->strings["poked"] = "a titillé"; -$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["remove"] = "enlever"; -$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; -$a->strings["Follow Thread"] = "Suivre le fil"; -$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["Poke"] = "Sollicitations (pokes)"; -$a->strings["%s likes this."] = "%s aime ça."; -$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; -$a->strings["and"] = "et"; -$a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%s like this."] = "%s aiment ça."; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$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["Delete item(s)?"] = "Supprimer les élément(s) ?"; -$a->strings["Post to Email"] = "Publier aussi par courriel"; -$a->strings["permissions"] = "permissions"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = "Message privé"; -$a->strings["Logged out."] = "Déconnecté."; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; -$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; -$a->strings["User creation error"] = "Erreur de création d'utilisateur"; -$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; +$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["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["User not found."] = "Uživatel nenalezen"; +$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; +$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; +$a->strings["view full size"] = "zobrazit v plné velikosti"; +$a->strings["Starts:"] = "Začíná:"; +$a->strings["Finishes:"] = "Končí:"; +$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["noreply"] = "neodpovídat"; +$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["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["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["Friends"] = "Přátelé"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; +$a->strings["poked"] = "šťouchnut"; +$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["remove"] = "odstranit"; +$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; +$a->strings["Follow Thread"] = "Následovat vlákno"; +$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["Poke"] = "Šťouchnout"; +$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í"; +$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; +$a->strings["and"] = "a"; +$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 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["Delete item(s)?"] = "Smazat položku(y)?"; +$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; +$a->strings["permissions"] = "oprávnění"; +$a->strings["Post to Groups"] = "Zveřejnit na Groups"; +$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; +$a->strings["Private post"] = "Soukromý příspěvek"; +$a->strings["Logged out."] = "Odhlášen."; +$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; +$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; +$a->strings["User creation error"] = "Chyba vytváření uživatele"; +$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; $a->strings["%d contact not imported"] = array( - 0 => "%d contacts non importés", - 1 => "%d contacts non importés", + 0 => "%d kontakt nenaimporován", + 1 => "%d kontaktů nenaimporováno", + 2 => "%d kontakty nenaimporovány", ); -$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; -$a->strings["newer"] = "Plus récent"; -$a->strings["older"] = "Plus ancien"; -$a->strings["prev"] = "précédent"; -$a->strings["first"] = "premier"; -$a->strings["last"] = "dernier"; -$a->strings["next"] = "suivant"; -$a->strings["No contacts"] = "Aucun contact"; +$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; +$a->strings["newer"] = "novější"; +$a->strings["older"] = "starší"; +$a->strings["prev"] = "předchozí"; +$a->strings["first"] = "první"; +$a->strings["last"] = "poslední"; +$a->strings["next"] = "další"; +$a->strings["No contacts"] = "Žádné kontakty"; $a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacts", + 0 => "%d kontakt", + 1 => "%d kontaktů", + 2 => "%d kontaktů", ); -$a->strings["poke"] = "titiller"; -$a->strings["ping"] = "attirer l'attention"; -$a->strings["pinged"] = "a attiré l'attention de"; -$a->strings["prod"] = "aiguillonner"; -$a->strings["prodded"] = "a aiguillonné"; -$a->strings["slap"] = "gifler"; -$a->strings["slapped"] = "a giflé"; -$a->strings["finger"] = "tripoter"; -$a->strings["fingered"] = "a tripoté"; -$a->strings["rebuff"] = "rabrouer"; -$a->strings["rebuffed"] = "a rabroué"; -$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["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["January"] = "Janvier"; -$a->strings["February"] = "Février"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Avril"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juin"; -$a->strings["July"] = "Juillet"; -$a->strings["August"] = "Août"; -$a->strings["September"] = "Septembre"; -$a->strings["October"] = "Octobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Décembre"; -$a->strings["bytes"] = "octets"; -$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -$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["Friendica Notification"] = "Notification Friendica"; -$a->strings["Thank You,"] = "Merci, "; -$a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["poke"] = "šťouchnout"; +$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"] = "osahávat"; +$a->strings["fingered"] = "osaháván"; +$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["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["January"] = "Ledna"; +$a->strings["February"] = "Února"; +$a->strings["March"] = "Března"; +$a->strings["April"] = "Dubna"; +$a->strings["May"] = "Května"; +$a->strings["June"] = "Června"; +$a->strings["July"] = "Července"; +$a->strings["August"] = "Srpna"; +$a->strings["September"] = "Září"; +$a->strings["October"] = "Října"; +$a->strings["November"] = "Listopadu"; +$a->strings["December"] = "Prosinec"; +$a->strings["bytes"] = "bytů"; +$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; +$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["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: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] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/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[" on Last.fm"] = "sur Last.fm"; -$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["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["[no subject]"] = "[pas de sujet]"; -$a->strings["End this session"] = "Mettre fin à cette session"; -$a->strings["Sign in"] = "Se connecter"; -$a->strings["Home Page"] = "Page d'accueil"; -$a->strings["Create an account"] = "Créer un compte"; -$a->strings["Help and documentation"] = "Aide et documentation"; -$a->strings["Apps"] = "Applications"; -$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; -$a->strings["Search site content"] = "Rechercher dans le contenu du site"; -$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; -$a->strings["Directory"] = "Annuaire"; -$a->strings["People directory"] = "Annuaire des utilisateurs"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; -$a->strings["Conversations from your friends"] = "Conversations de vos amis"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; -$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["Account settings"] = "Compte"; -$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; -$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; -$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Carte du site"; +$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] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/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[" on Last.fm"] = " na Last.fm"; +$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["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["[no subject]"] = "[bez předmětu]"; +$a->strings["End this session"] = "Konec této relace"; +$a->strings["Sign in"] = "Přihlásit se"; +$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"; +$a->strings["Apps"] = "Aplikace"; +$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; +$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["Information"] = "Informace"; +$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; +$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; +$a->strings["Network Reset"] = "Síťový Reset"; +$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; +$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["Account settings"] = "Nastavení účtu"; +$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; +$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; +$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; +$a->strings["Navigation"] = "Navigace"; +$a->strings["Site map"] = "Mapa webu"; $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["Image/photo"] = "Image/photo"; -$a->strings["%s wrote the following post"] = ""; -$a->strings[""] = ""; -$a->strings["$1 wrote:"] = "$1 a écrit:"; -$a->strings["Encrypted content"] = "Contenu chiffré"; -$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"; -$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; -$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; -$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; -$a->strings["Weekly"] = "Chaque semaine"; -$a->strings["Monthly"] = "Chaque mois"; +$a->strings["Birthday:"] = "Narozeniny:"; +$a->strings["Age:"] = "Věk:"; +$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["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:"; +$a->strings["Books, literature:"] = "Knihy, literatura:"; +$a->strings["Television:"] = "Televize:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; +$a->strings["Love/Romance:"] = "Láska/romance"; +$a->strings["Work/employment:"] = "Práce/zaměstnání:"; +$a->strings["School/education:"] = "Škola/vzdělávání:"; +$a->strings["Image/photo"] = "Obrázek/fotografie"; +$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings[""] = ""; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; +$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; +$a->strings["Block immediately"] = "Okamžitě blokovat "; +$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; +$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; +$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; +$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; +$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!"; @@ -1573,137 +1590,136 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; +$a->strings["Diaspora Connector"] = "Diaspora konektor"; $a->strings["Statusnet"] = "Statusnet"; -$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["%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["General Features"] = "Fonctions générales"; -$a->strings["Multiple Profiles"] = "Profils multiples"; -$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; -$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; -$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; -$a->strings["Post Preview"] = "Aperçu du billet"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des billets et commentaires avant de les publier"; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; -$a->strings["Search by Date"] = "Rechercher par Date"; -$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les billets par intervalles de dates"; -$a->strings["Group Filter"] = "Filtre de groupe"; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = "Filtre de réseau"; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; -$a->strings["Multiple Deletion"] = "Suppression multiple"; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = "Edité les publications envoyées"; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = "Tagger"; -$a->strings["Ability to tag existing posts"] = "Autorisé à tagger des publications existantes"; -$a->strings["Post Categories"] = "Catégories des publications"; -$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = "N'aime pas"; -$a->strings["Ability to dislike posts/comments"] = "Autorisé a ne pas aimer les publications/commentaires"; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; -$a->strings["Attachments:"] = "Pièces jointes : "; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$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["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; -$a->strings["Archives"] = "Archives"; -$a->strings["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; -$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["Male"] = "Masculin"; -$a->strings["Female"] = "Féminin"; -$a->strings["Currently Male"] = "Actuellement masculin"; -$a->strings["Currently Female"] = "Actuellement féminin"; -$a->strings["Mostly Male"] = "Principalement masculin"; -$a->strings["Mostly Female"] = "Principalement féminin"; -$a->strings["Transgender"] = "Transgenre"; -$a->strings["Intersex"] = "Inter-sexe"; -$a->strings["Transsexual"] = "Transsexuel"; -$a->strings["Hermaphrodite"] = "Hermaphrodite"; -$a->strings["Neuter"] = "Neutre"; -$a->strings["Non-specific"] = "Non-spécifique"; -$a->strings["Other"] = "Autre"; -$a->strings["Undecided"] = "Indécis"; -$a->strings["Males"] = "Hommes"; -$a->strings["Females"] = "Femmes"; +$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ýdnem"; +$a->strings["weeks"] = "týdny"; +$a->strings["days"] = "dnů"; +$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["%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["General Features"] = "Obecné funkčnosti"; +$a->strings["Multiple Profiles"] = "Vícenásobné profily"; +$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; +$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; +$a->strings["Richtext Editor"] = "Richtext Editor"; +$a->strings["Enable richtext editor"] = "Povolit richtext editor"; +$a->strings["Post Preview"] = "Náhled příspěvku"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; +$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; +$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; +$a->strings["Search by Date"] = "Vyhledávat dle Data"; +$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; +$a->strings["Group Filter"] = "Skupinový Filtr"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; +$a->strings["Network Filter"] = "Síťový Filtr"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; +$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; +$a->strings["Network Tabs"] = "Síťové záložky"; +$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; +$a->strings["Network New Tab"] = "Nová záložka síť"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; +$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; +$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; +$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; +$a->strings["Multiple Deletion"] = "Násobné mazání"; +$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; +$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; +$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; +$a->strings["Tagging"] = "Štítkování"; +$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; +$a->strings["Post Categories"] = "Kategorie příspěvků"; +$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; +$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; +$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; +$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; +$a->strings["Star Posts"] = "Příspěvky s hvězdou"; +$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; +$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$a->strings["Visible to everybody"] = "Viditelné pro všechny"; +$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["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; +$a->strings["Archives"] = "Archív"; +$a->strings["Embedded content"] = "vložený obsah"; +$a->strings["Embedding disabled"] = "Vkládání zakázáno"; +$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["Male"] = "Muž"; +$a->strings["Female"] = "Žena"; +$a->strings["Currently Male"] = "V současné době muž"; +$a->strings["Currently Female"] = "V současné době žena"; +$a->strings["Mostly Male"] = "Většinou muž"; +$a->strings["Mostly Female"] = "Většinou žena"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transexuál"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutrál"; +$a->strings["Non-specific"] = "Nespecifikováno"; +$a->strings["Other"] = "Jiné"; +$a->strings["Undecided"] = "Nerozhodnuto"; +$a->strings["Males"] = "Muži"; +$a->strings["Females"] = "Ženy"; $a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbienne"; -$a->strings["No Preference"] = "Sans préférence"; -$a->strings["Bisexual"] = "Bisexuel"; -$a->strings["Autosexual"] = "Auto-sexuel"; +$a->strings["Lesbian"] = "Lesbička"; +$a->strings["No Preference"] = "Bez preferencí"; +$a->strings["Bisexual"] = "Bisexuál"; +$a->strings["Autosexual"] = "Autosexuál"; $a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Vierge"; -$a->strings["Deviant"] = "Déviant"; -$a->strings["Fetish"] = "Fétichiste"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Non-sexuel"; -$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"; -$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"] = "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["It's complicated"] = "C'est compliqué"; -$a->strings["Don't care"] = "S'en désintéresse"; -$a->strings["Ask me"] = "Me demander"; -$a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Drop Contact"] = "Supprimer le contact"; -$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["Virgin"] = "panic/panna"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetišista"; +$a->strings["Oodles"] = "Hodně"; +$a->strings["Nonsexual"] = "Nesexuální"; +$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"; +$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["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["It's complicated"] = "Je to složité"; +$a->strings["Don't care"] = "Nezajímá"; +$a->strings["Ask me"] = "Zeptej se mě"; +$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Drop Contact"] = "Odstranit kontakt"; From 5cbcf79e271989c690191c34bc695deb94e19e53 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 17 May 2014 08:46:51 +0200 Subject: [PATCH 19/30] FR: update to the strings --- view/fr/messages.po | 3322 +++++++++++++++++++++---------------------- view/fr/strings.php | 3307 +++++++++++++++++++++--------------------- 2 files changed, 3304 insertions(+), 3325 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 87b3ccc72e..22d339fab8 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -3,140 +3,145 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Michal Šupler , 2011-2014 +# Domovoy , 2012 +# ltriay , 2013 +# Marquis_de_Carabas , 2012 +# Olivier , 2011-2012 +# tomamplius , 2014 +# Tubuntu , 2013-2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-05-16 07:51+0200\n" -"PO-Revision-Date: 2014-05-16 17:27+0000\n" -"Last-Translator: Michal Šupler \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" +"PO-Revision-Date: 2014-05-16 19:00+0000\n" +"Last-Translator: Tubuntu \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: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../../object/Item.php:92 msgid "This entry was edited" -msgstr "Tento záznam byl editován" +msgstr "" #: ../../object/Item.php:113 ../../mod/content.php:619 #: ../../mod/photos.php:1355 msgid "Private Message" -msgstr "Soukromá zpráva" +msgstr "Message privé" #: ../../object/Item.php:117 ../../mod/editpost.php:109 #: ../../mod/content.php:727 ../../mod/settings.php:671 msgid "Edit" -msgstr "Upravit" +msgstr "Éditer" #: ../../object/Item.php:126 ../../mod/content.php:437 #: ../../mod/content.php:739 ../../mod/photos.php:1649 #: ../../include/conversation.php:612 msgid "Select" -msgstr "Vybrat" +msgstr "Sélectionner" #: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 #: ../../mod/content.php:740 ../../mod/contacts.php:703 #: ../../mod/settings.php:672 ../../mod/group.php:171 #: ../../mod/photos.php:1650 ../../include/conversation.php:613 msgid "Delete" -msgstr "Odstranit" +msgstr "Supprimer" #: ../../object/Item.php:130 ../../mod/content.php:762 msgid "save to folder" -msgstr "uložit do složky" +msgstr "sauver vers dossier" #: ../../object/Item.php:192 ../../mod/content.php:752 msgid "add star" -msgstr "přidat hvězdu" +msgstr "mett en avant" #: ../../object/Item.php:193 ../../mod/content.php:753 msgid "remove star" -msgstr "odebrat hvězdu" +msgstr "ne plus mettre en avant" #: ../../object/Item.php:194 ../../mod/content.php:754 msgid "toggle star status" -msgstr "přepnout hvězdu" +msgstr "mettre en avant" #: ../../object/Item.php:197 ../../mod/content.php:757 msgid "starred" -msgstr "označeno hvězdou" +msgstr "mis en avant" #: ../../object/Item.php:202 ../../mod/content.php:758 msgid "add tag" -msgstr "přidat štítek" +msgstr "ajouter un tag" #: ../../object/Item.php:213 ../../mod/content.php:683 #: ../../mod/photos.php:1538 msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" +msgstr "J'aime (bascule)" #: ../../object/Item.php:213 ../../mod/content.php:683 msgid "like" -msgstr "má rád" +msgstr "aime" #: ../../object/Item.php:214 ../../mod/content.php:684 #: ../../mod/photos.php:1539 msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" +msgstr "Je n'aime pas (bascule)" #: ../../object/Item.php:214 ../../mod/content.php:684 msgid "dislike" -msgstr "nemá rád" +msgstr "n'aime pas" #: ../../object/Item.php:216 ../../mod/content.php:686 msgid "Share this" -msgstr "Sdílet toto" +msgstr "Partager" #: ../../object/Item.php:216 ../../mod/content.php:686 msgid "share" -msgstr "sdílí" +msgstr "partager" #: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" -msgstr "Kategorie:" +msgstr "Catégories:" #: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" -msgstr "Vyplněn pod:" +msgstr "Rangé sous:" #: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 #: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" -msgstr "Zobrazit profil uživatele %s na %s" +msgstr "Voir le profil de %s @ %s" #: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" -msgstr "pro" +msgstr "à" #: ../../object/Item.php:310 msgid "via" -msgstr "přes" +msgstr "via" #: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" -msgstr "Zeď-na-Zeď" +msgstr "Inter-mur" #: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" -msgstr "přes Zeď-na-Zeď " +msgstr "en Inter-mur:" #: ../../object/Item.php:321 ../../mod/content.php:481 #: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" -msgstr "%s od %s" +msgstr "%s de %s" #: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 #: ../../mod/content.php:708 ../../mod/photos.php:1560 #: ../../mod/photos.php:1604 ../../mod/photos.php:1692 msgid "Comment" -msgstr "Okomentovat" +msgstr "Commenter" #: ../../object/Item.php:344 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/content.php:498 @@ -144,34 +149,32 @@ msgstr "Okomentovat" #: ../../mod/message.php:565 ../../mod/photos.php:1541 #: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" -msgstr "Čekejte prosím" +msgstr "Patientez" #: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "%d komentář" -msgstr[1] "%d komentářů" -msgstr[2] "%d komentářů" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" #: ../../object/Item.php:369 ../../object/Item.php:382 #: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentář" +msgstr[1] "commentaire" #: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" -msgstr "zobrazit více" +msgstr "montrer plus" #: ../../object/Item.php:655 ../../mod/content.php:706 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602 #: ../../mod/photos.php:1690 msgid "This is you" -msgstr "Nastavte Vaši polohu" +msgstr "C'est vous" #: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 @@ -191,62 +194,62 @@ msgstr "Nastavte Vaši polohu" #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" -msgstr "Odeslat" +msgstr "Envoyer" #: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" -msgstr "Tučné" +msgstr "Gras" #: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" -msgstr "Kurzíva" +msgstr "Italique" #: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" -msgstr "Podrtžené" +msgstr "Souligné" #: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" -msgstr "Citovat" +msgstr "Citation" #: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" -msgstr "Kód" +msgstr "Code" #: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" -msgstr "Obrázek" +msgstr "Image" #: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" -msgstr "Odkaz" +msgstr "Lien" #: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" -msgstr "Video" +msgstr "Vidéo" #: ../../object/Item.php:667 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1562 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: ../../include/conversation.php:1124 msgid "Preview" -msgstr "Náhled" +msgstr "Aperçu" #: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " -msgstr "Musíte být přihlášení pro použití rozšíření." +msgstr "Vous devez être connecté pour utiliser les addons." #: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" -msgstr "Nenalezen" +msgstr "Non trouvé" #: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." -msgstr "Stránka nenalezena" +msgstr "Page introuvable." #: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" -msgstr "Nedostatečné oprávnění" +msgstr "Permission refusée" #: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 #: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 @@ -271,23 +274,23 @@ msgstr "Nedostatečné oprávnění" #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 #: ../../include/items.php:4390 msgid "Permission denied." -msgstr "Přístup odmítnut." +msgstr "Permission refusée." #: ../../index.php:419 msgid "toggle mobile" -msgstr "přepnout mobil" +msgstr "activ. mobile" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 #: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" -msgstr "Domů" +msgstr "Profil" #: ../../view/theme/perihel/theme.php:33 #: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 #: ../../include/nav.php:145 msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" +msgstr "Vos notices et conversations" #: ../../view/theme/perihel/theme.php:34 #: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 @@ -300,57 +303,57 @@ msgstr "Profil" #: ../../view/theme/perihel/theme.php:34 #: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 msgid "Your profile page" -msgstr "Vaše profilová stránka" +msgstr "Votre page de profil" #: ../../view/theme/perihel/theme.php:35 #: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" -msgstr "Fotografie" +msgstr "Photos" #: ../../view/theme/perihel/theme.php:35 #: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 msgid "Your photos" -msgstr "Vaše fotky" +msgstr "Vos photos" #: ../../view/theme/perihel/theme.php:36 #: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" -msgstr "Události" +msgstr "Événements" #: ../../view/theme/perihel/theme.php:36 #: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 msgid "Your events" -msgstr "Vaše události" +msgstr "Vos événements" #: ../../view/theme/perihel/theme.php:37 #: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 msgid "Personal notes" -msgstr "Osobní poznámky" +msgstr "Notes personnelles" #: ../../view/theme/perihel/theme.php:37 #: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 msgid "Your personal photos" -msgstr "Vaše osobní fotky" +msgstr "Vos photos personnelles" #: ../../view/theme/perihel/theme.php:38 #: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 #: ../../include/nav.php:128 msgid "Community" -msgstr "Komunita" +msgstr "Communauté" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 #: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 msgid "don't show" -msgstr "nikdy nezobrazit" +msgstr "cacher" #: ../../view/theme/perihel/config.php:89 #: ../../view/theme/diabook/theme.php:621 #: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 msgid "show" -msgstr "zobrazit" +msgstr "montrer" #: ../../view/theme/perihel/config.php:97 #: ../../view/theme/diabook/config.php:150 @@ -359,64 +362,64 @@ msgstr "zobrazit" #: ../../view/theme/cleanzero/config.php:82 #: ../../view/theme/vier/config.php:49 msgid "Theme settings" -msgstr "Nastavení téma" +msgstr "Réglages du thème graphique" #: ../../view/theme/perihel/config.php:98 #: ../../view/theme/diabook/config.php:151 #: ../../view/theme/dispy/config.php:73 #: ../../view/theme/cleanzero/config.php:84 msgid "Set font-size for posts and comments" -msgstr "Nastav velikost písma pro přízpěvky a komentáře." +msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" #: ../../view/theme/perihel/config.php:99 #: ../../view/theme/diabook/config.php:152 #: ../../view/theme/dispy/config.php:74 msgid "Set line-height for posts and comments" -msgstr "Nastav výšku řádku pro přízpěvky a komentáře." +msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" #: ../../view/theme/perihel/config.php:100 #: ../../view/theme/diabook/config.php:153 msgid "Set resolution for middle column" -msgstr "Nastav rozlišení pro prostřední sloupec" +msgstr "Réglez la résolution de la colonne centrale" #: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 #: ../../include/nav.php:173 msgid "Contacts" -msgstr "Kontakty" +msgstr "Contacts" #: ../../view/theme/diabook/theme.php:125 msgid "Your contacts" -msgstr "Vaše kontakty" +msgstr "Vos contacts" #: ../../view/theme/diabook/theme.php:130 #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:624 #: ../../view/theme/diabook/config.php:158 msgid "Community Pages" -msgstr "Komunitní stránky" +msgstr "Pages de Communauté" #: ../../view/theme/diabook/theme.php:391 #: ../../view/theme/diabook/theme.php:626 #: ../../view/theme/diabook/config.php:160 msgid "Community Profiles" -msgstr "Komunitní profily" +msgstr "Profils communautaires" #: ../../view/theme/diabook/theme.php:412 #: ../../view/theme/diabook/theme.php:630 #: ../../view/theme/diabook/config.php:164 msgid "Last users" -msgstr "Poslední uživatelé" +msgstr "Derniers utilisateurs" #: ../../view/theme/diabook/theme.php:441 #: ../../view/theme/diabook/theme.php:632 #: ../../view/theme/diabook/config.php:166 msgid "Last likes" -msgstr "Poslední líbí/nelíbí" +msgstr "Dernièrement aimé" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 #: ../../include/conversation.php:246 ../../include/text.php:1953 msgid "event" -msgstr "událost" +msgstr "évènement" #: ../../view/theme/diabook/theme.php:466 #: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 @@ -425,33 +428,33 @@ msgstr "událost" #: ../../include/conversation.php:249 ../../include/conversation.php:258 #: ../../include/diaspora.php:1908 msgid "status" -msgstr "Stav" +msgstr "le statut" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 #: ../../include/text.php:1955 ../../include/diaspora.php:1908 msgid "photo" -msgstr "fotografie" +msgstr "photo" #: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 #: ../../include/conversation.php:137 ../../include/diaspora.php:1924 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s má rád %2$s' na %3$s" +msgstr "%1$s aime %3$s de %2$s" #: ../../view/theme/diabook/theme.php:486 #: ../../view/theme/diabook/theme.php:631 #: ../../view/theme/diabook/config.php:165 msgid "Last photos" -msgstr "Poslední fotografie" +msgstr "Dernières photos" #: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 #: ../../mod/photos.php:155 ../../mod/photos.php:1062 #: ../../mod/photos.php:1187 ../../mod/photos.php:1210 #: ../../mod/photos.php:1756 ../../mod/photos.php:1768 msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" +msgstr "Photos du contact" #: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 #: ../../mod/photos.php:729 ../../mod/photos.php:1187 @@ -461,377 +464,377 @@ msgstr "Fotogalerie kontaktu" #: ../../mod/profile_photo.php:305 ../../include/user.php:334 #: ../../include/user.php:341 ../../include/user.php:348 msgid "Profile Photos" -msgstr "Profilové fotografie" +msgstr "Photos du profil" #: ../../view/theme/diabook/theme.php:523 #: ../../view/theme/diabook/theme.php:629 #: ../../view/theme/diabook/config.php:163 msgid "Find Friends" -msgstr "Nalézt Přátele" +msgstr "Trouver des amis" #: ../../view/theme/diabook/theme.php:524 msgid "Local Directory" -msgstr "Lokální Adresář" +msgstr "Annuaire local" #: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 msgid "Global Directory" -msgstr "Globální adresář" +msgstr "Annuaire global" #: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 msgid "Similar Interests" -msgstr "Podobné zájmy" +msgstr "Intérêts similaires" #: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 #: ../../include/contact_widgets.php:34 msgid "Friend Suggestions" -msgstr "Návrhy přátel" +msgstr "Suggestions d'amitiés/contacts" #: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 msgid "Invite Friends" -msgstr "Pozvat přátele" +msgstr "Inviter des amis" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 #: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 #: ../../include/nav.php:169 msgid "Settings" -msgstr "Nastavení" +msgstr "Réglages" #: ../../view/theme/diabook/theme.php:579 #: ../../view/theme/diabook/theme.php:625 #: ../../view/theme/diabook/config.php:159 msgid "Earth Layers" -msgstr "Earth Layers" +msgstr "Géolocalisation" #: ../../view/theme/diabook/theme.php:584 msgid "Set zoomfactor for Earth Layers" -msgstr "Nastavit faktor přiblížení pro Earth Layers" +msgstr "Régler le niveau de zoom pour la géolocalisation" #: ../../view/theme/diabook/theme.php:585 #: ../../view/theme/diabook/config.php:156 msgid "Set longitude (X) for Earth Layers" -msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" +msgstr "Régler la longitude (X) pour la géolocalisation" #: ../../view/theme/diabook/theme.php:586 #: ../../view/theme/diabook/config.php:157 msgid "Set latitude (Y) for Earth Layers" -msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" +msgstr "Régler la latitude (Y) pour la géolocalisation" #: ../../view/theme/diabook/theme.php:599 #: ../../view/theme/diabook/theme.php:627 #: ../../view/theme/diabook/config.php:161 msgid "Help or @NewHere ?" -msgstr "Pomoc nebo @ProNováčky ?" +msgstr "Aide ou @NewHere?" #: ../../view/theme/diabook/theme.php:606 #: ../../view/theme/diabook/theme.php:628 #: ../../view/theme/diabook/config.php:162 msgid "Connect Services" -msgstr "Propojené služby" +msgstr "Connecter des services" #: ../../view/theme/diabook/theme.php:622 msgid "Show/hide boxes at right-hand column:" -msgstr "Zobrazit/skrýt boxy na pravém sloupci:" +msgstr "Montrer/cacher les boîtes dans la colonne de droite :" #: ../../view/theme/diabook/config.php:154 msgid "Set color scheme" -msgstr "Nastavení barevného schematu" +msgstr "Choisir le schéma de couleurs" #: ../../view/theme/diabook/config.php:155 msgid "Set zoomfactor for Earth Layer" -msgstr "Nastavit přiblížení pro Earth Layer" +msgstr "Niveau de zoom" #: ../../view/theme/quattro/config.php:67 msgid "Alignment" -msgstr "Zarovnání" +msgstr "Alignement" #: ../../view/theme/quattro/config.php:67 msgid "Left" -msgstr "Vlevo" +msgstr "Gauche" #: ../../view/theme/quattro/config.php:67 msgid "Center" -msgstr "Uprostřed" +msgstr "Centre" #: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 #: ../../view/theme/cleanzero/config.php:86 msgid "Color scheme" -msgstr "Barevné schéma" +msgstr "Palette de couleurs" #: ../../view/theme/quattro/config.php:69 msgid "Posts font size" -msgstr "Velikost písma u příspěvků" +msgstr "Taille de texte des messages" #: ../../view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "Velikost písma textů" +msgstr "Taille de police des zones de texte" #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" +msgstr "Choisir le schéma de couleurs" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 #: ../../include/text.php:1689 msgid "default" -msgstr "standardní" +msgstr "défaut" #: ../../view/theme/clean/config.php:74 msgid "Background Image" -msgstr "Obrázek pozadí" +msgstr "Image de fond" #: ../../view/theme/clean/config.php:74 msgid "" "The URL to a picture (e.g. from your photo album) that should be used as " "background image." -msgstr "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí." +msgstr "" #: ../../view/theme/clean/config.php:75 msgid "Background Color" -msgstr "Barva pozadí" +msgstr "Couleur de fond" #: ../../view/theme/clean/config.php:75 msgid "HEX value for the background color. Don't include the #" -msgstr "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #" +msgstr "" #: ../../view/theme/clean/config.php:77 msgid "font size" -msgstr "velikost fondu" +msgstr "Taille de police" #: ../../view/theme/clean/config.php:77 msgid "base font size for your interface" -msgstr "základní velikost fontu" +msgstr "" #: ../../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)" +msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" #: ../../view/theme/cleanzero/config.php:85 msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" +msgstr "Largeur du thème" #: ../../view/theme/vier/config.php:50 msgid "Set style" -msgstr "Nastavit styl" +msgstr "Définir le style" #: ../../boot.php:692 msgid "Delete this item?" -msgstr "Odstranit tuto položku?" +msgstr "Effacer cet élément?" #: ../../boot.php:695 msgid "show fewer" -msgstr "zobrazit méně" +msgstr "montrer moins" #: ../../boot.php:1023 #, php-format msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." +msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." #: ../../boot.php:1025 #, php-format msgid "Update Error at %s" -msgstr "Chyba aktualizace na %s" +msgstr "Erreur de mise-à-jour à %s" #: ../../boot.php:1135 msgid "Create a New Account" -msgstr "Vytvořit nový účet" +msgstr "Créer un nouveau compte" #: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 msgid "Register" -msgstr "Registrovat" +msgstr "S'inscrire" #: ../../boot.php:1160 ../../include/nav.php:73 msgid "Logout" -msgstr "Odhlásit se" +msgstr "Se déconnecter" #: ../../boot.php:1161 ../../include/nav.php:91 msgid "Login" -msgstr "Přihlásit se" +msgstr "Connexion" #: ../../boot.php:1163 msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" +msgstr "Pseudo ou courriel: " #: ../../boot.php:1164 msgid "Password: " -msgstr "Heslo: " +msgstr "Mot de passe: " #: ../../boot.php:1165 msgid "Remember me" -msgstr "Pamatuj si mne" +msgstr "Se souvenir de moi" #: ../../boot.php:1168 msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " +msgstr "Ou connectez-vous via OpenID: " #: ../../boot.php:1174 msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" +msgstr "Mot de passe oublié?" #: ../../boot.php:1175 ../../mod/lostpass.php:84 msgid "Password Reset" -msgstr "Obnovení hesla" +msgstr "Réinitialiser le mot de passe" #: ../../boot.php:1177 msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" +msgstr "Conditions d'utilisation du site internet" #: ../../boot.php:1178 msgid "terms of service" -msgstr "podmínky použití" +msgstr "conditions d'utilisation" #: ../../boot.php:1180 msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" +msgstr "Politique de confidentialité du site internet" #: ../../boot.php:1181 msgid "privacy policy" -msgstr "Ochrana soukromí" +msgstr "politique de confidentialité" #: ../../boot.php:1314 msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." +msgstr "Le compte demandé n'est pas disponible." #: ../../boot.php:1353 ../../mod/profile.php:21 msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." +msgstr "Le profil demandé n'est pas disponible." #: ../../boot.php:1393 ../../boot.php:1497 msgid "Edit profile" -msgstr "Upravit profil" +msgstr "Editer le profil" #: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 #: ../../include/contact_widgets.php:9 msgid "Connect" -msgstr "Spojit" +msgstr "Relier" #: ../../boot.php:1459 msgid "Message" -msgstr "Zpráva" +msgstr "Message" #: ../../boot.php:1467 ../../include/nav.php:171 msgid "Profiles" -msgstr "Profily" +msgstr "Profils" #: ../../boot.php:1467 msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" +msgstr "Gérer/éditer les profils" #: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" +msgstr "Changer de photo de profil" #: ../../boot.php:1474 ../../mod/profiles.php:731 msgid "Create New Profile" -msgstr "Vytvořit nový profil" +msgstr "Créer un nouveau profil" #: ../../boot.php:1484 ../../mod/profiles.php:742 msgid "Profile Image" -msgstr "Profilový obrázek" +msgstr "Image du profil" #: ../../boot.php:1487 ../../mod/profiles.php:744 msgid "visible to everybody" -msgstr "viditelné pro všechny" +msgstr "visible par tous" #: ../../boot.php:1488 ../../mod/profiles.php:745 msgid "Edit visibility" -msgstr "Upravit viditelnost" +msgstr "Changer la visibilité" #: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 #: ../../include/event.php:40 ../../include/bb2diaspora.php:155 msgid "Location:" -msgstr "Místo:" +msgstr "Localisation:" #: ../../boot.php:1515 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 msgid "Gender:" -msgstr "Pohlaví:" +msgstr "Genre:" #: ../../boot.php:1518 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 msgid "Status:" -msgstr "Status:" +msgstr "Statut:" #: ../../boot.php:1520 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 msgid "Homepage:" -msgstr "Domácí stránka:" +msgstr "Page personnelle:" #: ../../boot.php:1596 ../../boot.php:1682 msgid "g A l F d" -msgstr "g A l F d" +msgstr "g A | F d" #: ../../boot.php:1597 ../../boot.php:1683 msgid "F d" -msgstr "d. F" +msgstr "F d" #: ../../boot.php:1642 ../../boot.php:1723 msgid "[today]" -msgstr "[Dnes]" +msgstr "[aujourd'hui]" #: ../../boot.php:1654 msgid "Birthday Reminders" -msgstr "Připomínka narozenin" +msgstr "Rappels d'anniversaires" #: ../../boot.php:1655 msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" +msgstr "Anniversaires cette semaine:" #: ../../boot.php:1716 msgid "[No description]" -msgstr "[Žádný popis]" +msgstr "[Sans description]" #: ../../boot.php:1734 msgid "Event Reminders" -msgstr "Připomenutí událostí" +msgstr "Rappels d'événements" #: ../../boot.php:1735 msgid "Events this week:" -msgstr "Události tohoto týdne:" +msgstr "Evénements cette semaine:" #: ../../boot.php:1972 ../../include/nav.php:76 msgid "Status" -msgstr "Stav" +msgstr "Statut" #: ../../boot.php:1975 msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " +msgstr "Messages d'état et publications" #: ../../boot.php:1982 msgid "Profile Details" -msgstr "Detaily profilu" +msgstr "Détails du profil" #: ../../boot.php:1989 ../../mod/photos.php:52 msgid "Photo Albums" -msgstr "Fotoalba" +msgstr "Albums photo" #: ../../boot.php:1993 ../../boot.php:1996 msgid "Videos" -msgstr "Videa" +msgstr "Vidéos" #: ../../boot.php:2006 msgid "Events and Calendar" -msgstr "Události a kalendář" +msgstr "Événements et agenda" #: ../../boot.php:2010 ../../mod/notes.php:44 msgid "Personal Notes" -msgstr "Osobní poznámky" +msgstr "Notes personnelles" #: ../../boot.php:2013 msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" +msgstr "Vous seul pouvez voir ça" #: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format msgid "%1$s is currently %2$s" -msgstr "%1$s je právě %2$s" +msgstr "%1$s est d'humeur %2$s" #: ../../mod/mood.php:133 msgid "Mood" -msgstr "Nálada" +msgstr "Humeur" #: ../../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" +msgstr "Spécifiez votre humeur du moment, et informez vos amis" #: ../../mod/display.php:19 ../../mod/_search.php:89 #: ../../mod/directory.php:31 ../../mod/search.php:89 @@ -839,116 +842,116 @@ msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" #: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 #: ../../mod/videos.php:115 msgid "Public access denied." -msgstr "Veřejný přístup odepřen." +msgstr "Accès public refusé." #: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 #: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 #: ../../include/items.php:4194 msgid "Item not found." -msgstr "Položka nenalezena." +msgstr "Élément introuvable." #: ../../mod/display.php:99 ../../mod/profile.php:155 msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." +msgstr "L'accès au profil a été restreint." #: ../../mod/display.php:263 msgid "Item has been removed." -msgstr "Položka byla odstraněna." +msgstr "Cet élément a été enlevé." #: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 msgid "Access denied." -msgstr "Přístup odmítnut" +msgstr "Accès refusé." #: ../../mod/friendica.php:58 msgid "This is Friendica, version" -msgstr "Toto je Friendica, verze" +msgstr "Motorisé par Friendica version" #: ../../mod/friendica.php:59 msgid "running at web location" -msgstr "běžící na webu" +msgstr "hébergé sur" #: ../../mod/friendica.php:61 msgid "" "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." +msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." #: ../../mod/friendica.php:63 msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny navštivte:" +msgstr "Pour les rapports de bugs: rendez vous sur" #: ../../mod/friendica.php:64 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" +msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" #: ../../mod/friendica.php:78 msgid "Installed plugins/addons/apps:" -msgstr "Instalované pluginy/doplňky/aplikace:" +msgstr "Extensions/applications installées:" #: ../../mod/friendica.php:91 msgid "No installed plugins/addons/apps" -msgstr "Nejsou žádné nainstalované doplňky/aplikace" +msgstr "Aucune extension/greffon/application installée" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" -msgstr "%1$s vítá %2$s" +msgstr "%1$s accueille %2$s" #: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" +msgstr "Détails d'inscription pour %s" #: ../../mod/register.php:100 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 "Inscription réussie. Vérifiez vos emails pour la suite des instructions." #: ../../mod/register.php:104 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 "Impossible d'envoyer un email. Voici le message qui a échoué." #: ../../mod/register.php:109 msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." +msgstr "Votre inscription ne peut être traitée." #: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" -msgstr "Žádost o registraci na %s" +msgstr "Demande d'inscription à %s" #: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." -msgstr "Vaše registrace čeká na schválení vlastníkem serveru." +msgstr "Votre inscription attend une validation du propriétaire du site." #: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." #: ../../mod/register.php:224 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 "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." #: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." -msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." +msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." #: ../../mod/register.php:226 msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " +msgstr "Votre OpenID (facultatif): " #: ../../mod/register.php:240 msgid "Include your profile in member directory?" -msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." +msgstr "Inclure votre profil dans l'annuaire des membres?" #: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 #: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 @@ -961,7 +964,7 @@ msgstr "Toto je Váš veřejný profil.
Ten může #: ../../mod/settings.php:1076 ../../mod/profiles.php:614 #: ../../mod/message.php:209 ../../include/items.php:4235 msgid "Yes" -msgstr "Ano" +msgstr "Oui" #: ../../mod/register.php:244 ../../mod/api.php:106 #: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 @@ -973,308 +976,308 @@ msgstr "Ano" #: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" -msgstr "Ne" +msgstr "Non" #: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." +msgstr "L'inscription à ce site se fait uniquement sur invitation." #: ../../mod/register.php:262 msgid "Your invitation ID: " -msgstr "Vaše pozvání ID:" +msgstr "Votre ID d'invitation: " #: ../../mod/register.php:265 ../../mod/admin.php:575 msgid "Registration" -msgstr "Registrace" +msgstr "Inscription" #: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vaše celé jméno (např. Jan Novák):" +msgstr "Votre nom complet (p.ex. Michel Dupont): " #: ../../mod/register.php:274 msgid "Your Email Address: " -msgstr "Vaše e-mailová adresa:" +msgstr "Votre adresse courriel: " #: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." -msgstr "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 "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:276 msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" +msgstr "Choisir un pseudo: " #: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" -msgstr "Import" +msgstr "Importer" #: ../../mod/register.php:286 msgid "Import your profile to this friendica instance" -msgstr "Import Vašeho profilu do této friendica instance" +msgstr "Importer votre profile dans cette instance de friendica" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 #: ../../mod/profiles.php:587 msgid "Profile not found." -msgstr "Profil nenalezen" +msgstr "Profil introuvable." #: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." -msgstr "Kontakt nenalezen." +msgstr "Contact introuvable." #: ../../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." +msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." #: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." +msgstr "Réponse du site distant incomprise." #: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " -msgstr "Neočekávaná odpověď od vzdáleného serveru:" +msgstr "Réponse inattendue du site distant: " #: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." +msgstr "Confirmation achevée avec succès." #: ../../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:" +msgstr "Alerte du site distant: " #: ../../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." +msgstr "Échec temporaire. Merci de recommencer ultérieurement." #: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." +msgstr "Introduction échouée ou annulée." #: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." +msgstr "Impossible de définir la photo du contact." #: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 #: ../../include/diaspora.php:620 #, php-format msgid "%1$s is now friends with %2$s" -msgstr "%1$s je nyní přítel s %2$s" +msgstr "%1$s est désormais lié à %2$s" #: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " -msgstr "Pro '%s' nenalezen žádný uživatelský záznam " +msgstr "Pas d'utilisateur trouvé pour '%s' " #: ../../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." +msgstr "Notre clé de chiffrement de site est apparemment corrompue." #: ../../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 "URL de site absente ou indéchiffrable." #: ../../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." +msgstr "Pas d'entrée pour ce contact sur notre site." #: ../../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." +msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'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 "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." #: ../../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." +msgstr "Impossible de vous définir des permissions sur notre système." #: ../../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" +msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" #: ../../mod/dfrn_confirm.php:751 #, php-format msgid "Connection accepted at %s" -msgstr "Připojení přijato na %s" +msgstr "Connexion acceptée chez %s" #: ../../mod/dfrn_confirm.php:800 #, php-format msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" +msgstr "%1$s a rejoint %2$s" #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" -msgstr "Povolit připojení aplikacím" +msgstr "Autoriser l'application à se connecter" #: ../../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:" +msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " #: ../../mod/api.php:89 msgid "Please login to continue." -msgstr "Pro pokračování se prosím přihlaste." +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 "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ů?" +msgstr "Voulez-vous autoriser cette application à accéder à vos billets et contacts, et/ou à créer des billets à votre place?" #: ../../mod/lostpass.php:17 msgid "No valid account found." -msgstr "Nenalezen žádný platný účet." +msgstr "Impossible de trouver un compte valide." #: ../../mod/lostpass.php:33 msgid "Password reset request issued. Check your email." -msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." +msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." #: ../../mod/lostpass.php:44 #, php-format msgid "Password reset requested at %s" -msgstr "Na %s bylo zažádáno o resetování hesla" +msgstr "Requête de réinitialisation de mot de passe à %s" #: ../../mod/lostpass.php:66 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 "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:85 msgid "Your password has been reset as requested." -msgstr "Vaše heslo bylo na Vaše přání resetováno." +msgstr "Votre mot de passe a bien été réinitialisé." #: ../../mod/lostpass.php:86 msgid "Your new password is" -msgstr "Někdo Vám napsal na Vaši profilovou stránku" +msgstr "Votre nouveau mot de passe est " #: ../../mod/lostpass.php:87 msgid "Save or copy your new password - and then" -msgstr "Uložte si nebo zkopírujte nové heslo - a pak" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" #: ../../mod/lostpass.php:88 msgid "click here to login" -msgstr "klikněte zde pro přihlášení" +msgstr "cliquez ici pour vous connecter" #: ../../mod/lostpass.php:89 msgid "" "Your password may be changed from the Settings page after " "successful login." -msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." +msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." #: ../../mod/lostpass.php:107 #, php-format msgid "Your password has been changed at %s" -msgstr "Vaše heslo bylo změněno na %s" +msgstr "Votre mot de passe a été modifié à %s" #: ../../mod/lostpass.php:122 msgid "Forgot your Password?" -msgstr "Zapomněli jste heslo?" +msgstr "Mot de passe oublié?" #: ../../mod/lostpass.php:123 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." +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:124 msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail: " +msgstr "Pseudo ou Courriel: " #: ../../mod/lostpass.php:125 msgid "Reset" -msgstr "Reset" +msgstr "Réinitialiser" #: ../../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." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." #: ../../mod/wallmessage.php:56 ../../mod/message.php:63 msgid "No recipient selected." -msgstr "Nevybrán příjemce." +msgstr "Pas de destinataire sélectionné." #: ../../mod/wallmessage.php:59 msgid "Unable to check your home location." -msgstr "Nebylo možné zjistit Vaši domácí lokaci." +msgstr "Impossible de vérifier votre localisation." #: ../../mod/wallmessage.php:62 ../../mod/message.php:70 msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." +msgstr "Impossible d'envoyer le message." #: ../../mod/wallmessage.php:65 ../../mod/message.php:73 msgid "Message collection failure." -msgstr "Sběr zpráv selhal." +msgstr "Récupération des messages infructueuse." #: ../../mod/wallmessage.php:68 ../../mod/message.php:76 msgid "Message sent." -msgstr "Zpráva odeslána." +msgstr "Message envoyé." #: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 msgid "No recipient." -msgstr "Žádný příjemce." +msgstr "Pas de destinataire." #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 #: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" +msgstr "Entrez un lien web:" #: ../../mod/wallmessage.php:142 ../../mod/message.php:319 msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" +msgstr "Envoyer un message privé" #: ../../mod/wallmessage.php:143 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." -msgstr "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ů." +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:144 ../../mod/message.php:320 #: ../../mod/message.php:553 msgid "To:" -msgstr "Adresát:" +msgstr "À:" #: ../../mod/wallmessage.php:145 ../../mod/message.php:325 #: ../../mod/message.php:555 msgid "Subject:" -msgstr "Předmět:" +msgstr "Sujet:" #: ../../mod/wallmessage.php:151 ../../mod/message.php:329 #: ../../mod/message.php:558 ../../mod/invite.php:134 msgid "Your message:" -msgstr "Vaše zpráva:" +msgstr "Votre message:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 #: ../../include/conversation.php:1089 msgid "Upload photo" -msgstr "Nahrát fotografii" +msgstr "Joindre photo" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 #: ../../include/conversation.php:1093 msgid "Insert web link" -msgstr "Vložit webový odkaz" +msgstr "Insérer lien web" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" -msgstr "Vítejte na Friendica" +msgstr "Bienvenue sur Friendica" #: ../../mod/newmember.php:8 msgid "New Member Checklist" -msgstr "Seznam doporučení pro nového člena" +msgstr "Checklist du nouvel utilisateur" #: ../../mod/newmember.php:12 msgid "" @@ -1282,33 +1285,33 @@ 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 "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." +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 "Začínáme" +msgstr "Bien démarrer" #: ../../mod/newmember.php:18 msgid "Friendica Walk-Through" -msgstr "Prohlídka Friendica " +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 "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." +msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." #: ../../mod/newmember.php:26 msgid "Go to Your Settings" -msgstr "Navštivte své nastavení" +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 "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." +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 "" @@ -1316,44 +1319,44 @@ msgid "" " 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 "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:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotografii" +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 "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 "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 "Editujte Váš profil" +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 "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 "É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 "Profilová klíčová slova" +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 "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 "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 "Probíhá pokus o připojení" +msgstr "Connexions" #: ../../mod/newmember.php:49 ../../mod/newmember.php:51 #: ../../include/contact_selectors.php:81 @@ -1364,50 +1367,50 @@ msgstr "Facebook" 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." +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 "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální 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 "Importování emaiů" +msgstr "Importer courriels" #: ../../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" +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 "Navštivte Vaši stránku s kontakty" +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 "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." +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 "Navštivte lokální adresář Friendica" +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 "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 "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 "Nalezení nových lidí" +msgstr "Trouver de nouvelles personnes" #: ../../mod/newmember.php:62 msgid "" @@ -1416,51 +1419,51 @@ msgid "" "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." +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:270 msgid "Groups" -msgstr "Skupiny" +msgstr "Groupes" #: ../../mod/newmember.php:70 msgid "Group Your Contacts" -msgstr "Seskupte si své kontakty" +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 "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 "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 "Proč nejsou mé příspěvky veřejné?" +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 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" +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 "Získání nápovědy" +msgstr "Obtenir de l'aide" #: ../../mod/newmember.php:82 msgid "Go to the Help Section" -msgstr "Navštivte sekci nápovědy" +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 "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." +msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." #: ../../mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" +msgstr "Voulez-vous vraiment supprimer cette suggestion ?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 @@ -1470,247 +1473,246 @@ msgstr "Opravdu chcete smazat tento návrh?" #: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 #: ../../include/items.php:4238 msgid "Cancel" -msgstr "Zrušit" +msgstr "Annuler" #: ../../mod/suggest.php:72 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." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." #: ../../mod/suggest.php:90 msgid "Ignore/Hide" -msgstr "Ignorovat / skrýt" +msgstr "Ignorer/cacher" #: ../../mod/network.php:136 msgid "Search Results For:" -msgstr "Výsledky hledání pro:" +msgstr "Résultats pour:" #: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" -msgstr "Odstranit termín" +msgstr "Retirer le terme" #: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 #: ../../include/features.php:42 msgid "Saved Searches" -msgstr "Uložená hledání" +msgstr "Recherches" #: ../../mod/network.php:189 ../../include/group.php:275 msgid "add" -msgstr "přidat" +msgstr "ajouter" #: ../../mod/network.php:350 msgid "Commented Order" -msgstr "Dle komentářů" +msgstr "Tri par commentaires" #: ../../mod/network.php:353 msgid "Sort by Comment Date" -msgstr "Řadit podle data komentáře" +msgstr "Trier par date de commentaire" #: ../../mod/network.php:356 msgid "Posted Order" -msgstr "Dle data" +msgstr "Tri par publications" #: ../../mod/network.php:359 msgid "Sort by Post Date" -msgstr "Řadit podle data příspěvku" +msgstr "Trier par date de publication" #: ../../mod/network.php:365 ../../mod/notifications.php:88 msgid "Personal" -msgstr "Osobní" +msgstr "Personnel" #: ../../mod/network.php:368 msgid "Posts that mention or involve you" -msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" +msgstr "Publications qui vous concernent" #: ../../mod/network.php:374 msgid "New" -msgstr "Nové" +msgstr "Nouveau" #: ../../mod/network.php:377 msgid "Activity Stream - by date" -msgstr "Proud aktivit - dle data" +msgstr "Flux d'activités - par date" #: ../../mod/network.php:383 msgid "Shared Links" -msgstr "Sdílené odkazy" +msgstr "Liens partagés" #: ../../mod/network.php:386 msgid "Interesting Links" -msgstr "Zajímavé odkazy" +msgstr "Liens intéressants" #: ../../mod/network.php:392 msgid "Starred" -msgstr "S hvězdičkou" +msgstr "Mis en avant" #: ../../mod/network.php:395 msgid "Favourite Posts" -msgstr "Oblíbené přízpěvky" +msgstr "Publications favorites" #: ../../mod/network.php:457 #, 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] "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ě." +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:460 msgid "Private messages to this group are at risk of public disclosure." -msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." +msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." #: ../../mod/network.php:514 ../../mod/content.php:119 msgid "No such group" -msgstr "Žádná taková skupina" +msgstr "Groupe inexistant" #: ../../mod/network.php:531 ../../mod/content.php:130 msgid "Group is empty" -msgstr "Skupina je prázdná" +msgstr "Groupe vide" #: ../../mod/network.php:538 ../../mod/content.php:134 msgid "Group: " -msgstr "Skupina: " +msgstr "Groupe: " #: ../../mod/network.php:548 msgid "Contact: " -msgstr "Kontakt: " +msgstr "Contact: " #: ../../mod/network.php:550 msgid "Private messages to this person are at risk of public disclosure." -msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." +msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." #: ../../mod/network.php:555 msgid "Invalid contact." -msgstr "Neplatný kontakt." +msgstr "Contact invalide." #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" -msgstr "Friendica Komunikační server - Nastavení" +msgstr "" #: ../../mod/install.php:123 msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." +msgstr "Impossible de se connecter à la base." #: ../../mod/install.php:127 msgid "Could not create table." -msgstr "Nelze vytvořit tabulku." +msgstr "Impossible de créer une table." #: ../../mod/install.php:133 msgid "Your Friendica site database has been installed." -msgstr "Vaše databáze Friendica byla nainstalována." +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 "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 "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:206 #: ../../mod/install.php:521 msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." +msgstr "Référez-vous au fichier \"INSTALL.txt\"." #: ../../mod/install.php:203 msgid "System check" -msgstr "Testování systému" +msgstr "Vérifications système" #: ../../mod/install.php:207 ../../mod/events.php:373 msgid "Next" -msgstr "Dále" +msgstr "Suivant" #: ../../mod/install.php:208 msgid "Check again" -msgstr "Otestovat znovu" +msgstr "Vérifier à nouveau" #: ../../mod/install.php:227 msgid "Database connection" -msgstr "Databázové spojení" +msgstr "Connexion à la base de données" #: ../../mod/install.php:228 msgid "" "In order to install Friendica we need to know how to connect to your " "database." -msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." +msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." #: ../../mod/install.php:229 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." -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, " +msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." #: ../../mod/install.php:230 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." -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." +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:234 msgid "Database Server Name" -msgstr "Jméno databázového serveru" +msgstr "Serveur de base de données" #: ../../mod/install.php:235 msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" +msgstr "Nom d'utilisateur de la base" #: ../../mod/install.php:236 msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " +msgstr "Mot de passe de la base" #: ../../mod/install.php:237 msgid "Database Name" -msgstr "Jméno databáze" +msgstr "Nom de la base" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "Site administrator email address" -msgstr "Emailová adresa administrátora webu" +msgstr "Adresse électronique de l'administrateur du site" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." +msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." #: ../../mod/install.php:242 ../../mod/install.php:280 msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" +msgstr "Sélectionner un fuseau horaire par défaut pour votre site" #: ../../mod/install.php:267 msgid "Site settings" -msgstr "Nastavení webu" +msgstr "Réglages du site" #: ../../mod/install.php:321 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." +msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." #: ../../mod/install.php:322 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See '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'" +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:326 msgid "PHP executable path" -msgstr "Cesta k \"PHP executable\"" +msgstr "Chemin vers l'exécutable de PHP" #: ../../mod/install.php:326 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." +msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." #: ../../mod/install.php:331 msgid "Command line PHP" -msgstr "Příkazový řádek PHP" +msgstr "Version \"ligne de commande\" de PHP" #: ../../mod/install.php:340 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" +msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" #: ../../mod/install.php:341 msgid "Found PHP version: " -msgstr "Nalezena PHP verze:" +msgstr "Version de PHP:" #: ../../mod/install.php:343 msgid "PHP cli binary" @@ -1720,11 +1722,11 @@ msgstr "PHP cli binary" msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." +msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." #: ../../mod/install.php:355 msgid "This is required for message delivery to work." -msgstr "Toto je nutné pro fungování doručování zpráv." +msgstr "Ceci est requis pour que la livraison des messages fonctionne." #: ../../mod/install.php:357 msgid "PHP register_argc_argv" @@ -1734,570 +1736,570 @@ msgstr "PHP register_argc_argv" 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 "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:379 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 "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." #: ../../mod/install.php:381 msgid "Generate encryption keys" -msgstr "Generovat kriptovací klíče" +msgstr "Générer les clés de chiffrement" #: ../../mod/install.php:388 msgid "libCurl PHP module" -msgstr "libCurl PHP modul" +msgstr "Module libCurl de PHP" #: ../../mod/install.php:389 msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" +msgstr "Module GD (graphiques) de PHP" #: ../../mod/install.php:390 msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" +msgstr "Module OpenSSL de PHP" #: ../../mod/install.php:391 msgid "mysqli PHP module" -msgstr "mysqli PHP modul" +msgstr "Module Mysqli de PHP" #: ../../mod/install.php:392 msgid "mb_string PHP module" -msgstr "mb_string PHP modul" +msgstr "Module mb_string de PHP" #: ../../mod/install.php:397 ../../mod/install.php:399 msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" +msgstr "Module mod_rewrite Apache" #: ../../mod/install.php:397 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 "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé." #: ../../mod/install.php:405 msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." +msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." #: ../../mod/install.php:409 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." +msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." #: ../../mod/install.php:413 msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." +msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." #: ../../mod/install.php:417 msgid "Error: mysqli PHP module required but not installed." -msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." +msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." #: ../../mod/install.php:421 msgid "Error: mb_string PHP module required but not installed." -msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." +msgstr "Erreur: le module PHP mb_string est requis mais pas installé." #: ../../mod/install.php:438 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." -msgstr "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 "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:439 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." -msgstr "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 "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:440 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." -msgstr "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." +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:441 msgid "" "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." +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:444 msgid ".htconfig.php is writable" -msgstr ".htconfig.php je editovatelné" +msgstr "Fichier .htconfig.php accessible en écriture" #: ../../mod/install.php:454 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." +msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." #: ../../mod/install.php:455 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." -msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" +msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." #: ../../mod/install.php:456 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" +msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." #: ../../mod/install.php:457 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." +msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." #: ../../mod/install.php:460 msgid "view/smarty3 is writable" -msgstr "view/smarty3 je nastaven pro zápis" +msgstr "view/smarty3 est autorisé à l écriture" #: ../../mod/install.php:472 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." +msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." #: ../../mod/install.php:474 msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." +msgstr "La réécriture d'URL fonctionne." #: ../../mod/install.php:484 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." -msgstr "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 "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:508 msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." +msgstr "Des erreurs ont été signalées lors de la création des tables." #: ../../mod/install.php:519 msgid "

What next

" -msgstr "

Co dál

" +msgstr "

Ensuite

" #: ../../mod/install.php:520 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." +msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." #: ../../mod/admin.php:55 msgid "Theme settings updated." -msgstr "Nastavení téma zobrazení bylo aktualizováno." +msgstr "Réglages du thème sauvés." #: ../../mod/admin.php:102 ../../mod/admin.php:573 msgid "Site" -msgstr "Web" +msgstr "Site" #: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 msgid "Users" -msgstr "Uživatelé" +msgstr "Utilisateurs" #: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 #: ../../mod/settings.php:57 msgid "Plugins" -msgstr "Pluginy" +msgstr "Extensions" #: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 msgid "Themes" -msgstr "Témata" +msgstr "Thèmes" #: ../../mod/admin.php:106 msgid "DB updates" -msgstr "Aktualizace databáze" +msgstr "Mise-à-jour de la base" #: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 msgid "Logs" -msgstr "Logy" +msgstr "Journaux" #: ../../mod/admin.php:126 ../../include/nav.php:180 msgid "Admin" -msgstr "Administrace" +msgstr "Admin" #: ../../mod/admin.php:127 msgid "Plugin Features" -msgstr "Funkčnosti rozšíření" +msgstr "Propriétés des extensions" #: ../../mod/admin.php:129 msgid "User registrations waiting for confirmation" -msgstr "Registrace uživatele čeká na potvrzení" +msgstr "Inscriptions en attente de confirmation" #: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" -msgstr "Normální účet" +msgstr "Compte normal" #: ../../mod/admin.php:189 ../../mod/admin.php:856 msgid "Soapbox Account" -msgstr "Soapbox účet" +msgstr "Compte \"boîte à savon\"" #: ../../mod/admin.php:190 ../../mod/admin.php:857 msgid "Community/Celebrity Account" -msgstr "Komunitní účet / Účet celebrity" +msgstr "Compte de communauté/célébrité" #: ../../mod/admin.php:191 ../../mod/admin.php:858 msgid "Automatic Friend Account" -msgstr "Účet s automatickým schvalováním přátel" +msgstr "Compte auto-amical" #: ../../mod/admin.php:192 msgid "Blog Account" -msgstr "Účet Blogu" +msgstr "Compte de blog" #: ../../mod/admin.php:193 msgid "Private Forum" -msgstr "Soukromé fórum" +msgstr "Forum privé" #: ../../mod/admin.php:212 msgid "Message queues" -msgstr "Fronty zpráv" +msgstr "Files d'attente des messages" #: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 #: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 #: ../../mod/admin.php:1257 ../../mod/admin.php:1344 msgid "Administration" -msgstr "Administrace" +msgstr "Administration" #: ../../mod/admin.php:218 msgid "Summary" -msgstr "Shrnutí" +msgstr "Résumé" #: ../../mod/admin.php:220 msgid "Registered users" -msgstr "Registrovaní uživatelé" +msgstr "Utilisateurs inscrits" #: ../../mod/admin.php:222 msgid "Pending registrations" -msgstr "Čekající registrace" +msgstr "Inscriptions en attente" #: ../../mod/admin.php:223 msgid "Version" -msgstr "Verze" +msgstr "Versio" #: ../../mod/admin.php:225 msgid "Active plugins" -msgstr "Aktivní pluginy" +msgstr "Extensions activés" #: ../../mod/admin.php:248 msgid "Can not parse base url. Must have at least ://" -msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" +msgstr "" #: ../../mod/admin.php:485 msgid "Site settings updated." -msgstr "Nastavení webu aktualizováno." +msgstr "Réglages du site mis-à-jour." #: ../../mod/admin.php:514 ../../mod/settings.php:823 msgid "No special theme for mobile devices" -msgstr "žádné speciální téma pro mobilní zařízení" +msgstr "Pas de thème particulier pour les terminaux mobiles" #: ../../mod/admin.php:531 ../../mod/contacts.php:408 msgid "Never" -msgstr "Nikdy" +msgstr "Jamais" #: ../../mod/admin.php:532 msgid "At post arrival" -msgstr "Při obdržení příspěvku" +msgstr "A l'arrivé d'une publication" #: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 msgid "Frequently" -msgstr "Často" +msgstr "Fréquemment" #: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 msgid "Hourly" -msgstr "každou hodinu" +msgstr "Toutes les heures" #: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 msgid "Twice daily" -msgstr "Dvakrát denně" +msgstr "Deux fois par jour" #: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 msgid "Daily" -msgstr "denně" +msgstr "Chaque jour" #: ../../mod/admin.php:541 msgid "Multi user instance" -msgstr "Více uživatelská instance" +msgstr "Instance multi-utilisateurs" #: ../../mod/admin.php:559 msgid "Closed" -msgstr "Uzavřeno" +msgstr "Fermé" #: ../../mod/admin.php:560 msgid "Requires approval" -msgstr "Vyžaduje schválení" +msgstr "Demande une apptrobation" #: ../../mod/admin.php:561 msgid "Open" -msgstr "Otevřená" +msgstr "Ouvert" #: ../../mod/admin.php:565 msgid "No SSL policy, links will track page SSL state" -msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" +msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" #: ../../mod/admin.php:566 msgid "Force all links to use SSL" -msgstr "Vyžadovat u všech odkazů použití SSL" +msgstr "Forcer tous les liens à utiliser SSL" #: ../../mod/admin.php:567 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)" +msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" #: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 #: ../../mod/admin.php:1346 ../../mod/settings.php:609 #: ../../mod/settings.php:719 ../../mod/settings.php:793 #: ../../mod/settings.php:872 ../../mod/settings.php:1104 msgid "Save Settings" -msgstr "Uložit Nastavení" +msgstr "Sauvegarder les paramétres" #: ../../mod/admin.php:576 msgid "File upload" -msgstr "Nahrání souborů" +msgstr "Téléversement de fichier" #: ../../mod/admin.php:577 msgid "Policies" -msgstr "Politiky" +msgstr "Politiques" #: ../../mod/admin.php:578 msgid "Advanced" -msgstr "Pokročilé" +msgstr "Avancé" #: ../../mod/admin.php:579 msgid "Performance" -msgstr "Výkonnost" +msgstr "Performance" #: ../../mod/admin.php:580 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." +msgstr "" #: ../../mod/admin.php:583 msgid "Site name" -msgstr "Název webu" +msgstr "Nom du site" #: ../../mod/admin.php:584 msgid "Banner/Logo" -msgstr "Banner/logo" +msgstr "Bannière/Logo" #: ../../mod/admin.php:585 msgid "Additional Info" -msgstr "Dodatečné informace" +msgstr "Informations supplémentaires" #: ../../mod/admin.php:585 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." -msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." +msgstr "" #: ../../mod/admin.php:586 msgid "System language" -msgstr "Systémový jazyk" +msgstr "Langue du système" #: ../../mod/admin.php:587 msgid "System theme" -msgstr "Grafická šablona systému " +msgstr "Thème du système" #: ../../mod/admin.php:587 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" +msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" #: ../../mod/admin.php:588 msgid "Mobile system theme" -msgstr "Systémové téma zobrazení pro mobilní zařízení" +msgstr "Thème mobile" #: ../../mod/admin.php:588 msgid "Theme for mobile devices" -msgstr "Téma zobrazení pro mobilní zařízení" +msgstr "Thème pour les terminaux mobiles" #: ../../mod/admin.php:589 msgid "SSL link policy" -msgstr "Politika SSL odkazů" +msgstr "Politique SSL pour les liens" #: ../../mod/admin.php:589 msgid "Determines whether generated links should be forced to use SSL" -msgstr "Určuje, zda-li budou generované odkazy používat SSL" +msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" #: ../../mod/admin.php:590 msgid "Old style 'Share'" -msgstr "Sdílení \"postaru\"" +msgstr "" #: ../../mod/admin.php:590 msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." +msgstr "" #: ../../mod/admin.php:591 msgid "Hide help entry from navigation menu" -msgstr "skrýt nápovědu z navigačního menu" +msgstr "Cacher l'aide du menu de navigation" #: ../../mod/admin.php:591 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." -msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." +msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." #: ../../mod/admin.php:592 msgid "Single user instance" -msgstr "Jednouživatelská instance" +msgstr "Instance mono-utilisateur" #: ../../mod/admin.php:592 msgid "Make this instance multi-user or single-user for the named user" -msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" +msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." #: ../../mod/admin.php:593 msgid "Maximum image size" -msgstr "Maximální velikost obrázků" +msgstr "Taille maximale des images" #: ../../mod/admin.php:593 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." +msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." #: ../../mod/admin.php:594 msgid "Maximum image length" -msgstr "Maximální velikost obrázků" +msgstr "Longueur maximale des images" #: ../../mod/admin.php:594 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" +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:595 msgid "JPEG image quality" -msgstr "JPEG kvalita obrázku" +msgstr "Qualité JPEG des images" #: ../../mod/admin.php:595 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." +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:597 msgid "Register policy" -msgstr "Politika registrace" +msgstr "Politique d'inscription" #: ../../mod/admin.php:598 msgid "Maximum Daily Registrations" -msgstr "Maximální počet denních registrací" +msgstr "Inscriptions maximum par jour" #: ../../mod/admin.php:598 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." -msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." +msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." #: ../../mod/admin.php:599 msgid "Register text" -msgstr "Registrace textu" +msgstr "Texte d'inscription" #: ../../mod/admin.php:599 msgid "Will be displayed prominently on the registration page." -msgstr "Bude zřetelně zobrazeno na registrační stránce." +msgstr "Sera affiché de manière bien visible sur la page d'accueil." #: ../../mod/admin.php:600 msgid "Accounts abandoned after x days" -msgstr "Účet je opuštěn po x dnech" +msgstr "Les comptes sont abandonnés après x jours" #: ../../mod/admin.php:600 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." +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:601 msgid "Allowed friend domains" -msgstr "Povolené domény přátel" +msgstr "Domaines autorisés" #: ../../mod/admin.php:601 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." +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:602 msgid "Allowed email domains" -msgstr "Povolené e-mailové domény" +msgstr "Domaines courriel autorisés" #: ../../mod/admin.php:602 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." +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:603 msgid "Block public" -msgstr "Blokovat veřejnost" +msgstr "Interdire la publication globale" #: ../../mod/admin.php:603 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." +msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." #: ../../mod/admin.php:604 msgid "Force publish" -msgstr "Publikovat" +msgstr "Forcer la publication globale" #: ../../mod/admin.php:604 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." +msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." #: ../../mod/admin.php:605 msgid "Global directory update URL" -msgstr "aktualizace URL adresy Globálního adresáře " +msgstr "URL de mise-à-jour de l'annuaire global" #: ../../mod/admin.php:605 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." +msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." #: ../../mod/admin.php:606 msgid "Allow threaded items" -msgstr "Povolit vícevláknové zpracování obsahu" +msgstr "autoriser le suivi des éléments par fil conducteur" #: ../../mod/admin.php:606 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." +msgstr "Permettre une imbrication infinie des commentaires." #: ../../mod/admin.php:607 msgid "Private posts by default for new users" -msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" +msgstr "Publications privées par défaut pour les nouveaux utilisateurs" #: ../../mod/admin.php:607 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." -msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." +msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." #: ../../mod/admin.php:608 msgid "Don't include post content in email notifications" -msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" +msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" #: ../../mod/admin.php:608 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." -msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " +msgstr "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." #: ../../mod/admin.php:609 msgid "Disallow public access to addons listed in the apps menu." -msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." +msgstr "Interdire l'acces public pour les extentions listées dans le menu apps." #: ../../mod/admin.php:609 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." -msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." +msgstr "" #: ../../mod/admin.php:610 msgid "Don't embed private images in posts" -msgstr "Nepovolit přidávání soukromých správ v příspěvcích" +msgstr "" #: ../../mod/admin.php:610 msgid "" @@ -2305,945 +2307,942 @@ msgid "" "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a " "while." -msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." +msgstr "" #: ../../mod/admin.php:611 msgid "Allow Users to set remote_self" -msgstr "Umožnit uživatelům nastavit " +msgstr "Autoriser les utilisateurs à définir remote_self" #: ../../mod/admin.php:611 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." -msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." +msgstr "" #: ../../mod/admin.php:612 msgid "Block multiple registrations" -msgstr "Blokovat více registrací" +msgstr "Interdire les inscriptions multiples" #: ../../mod/admin.php:612 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." +msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." #: ../../mod/admin.php:613 msgid "OpenID support" -msgstr "podpora OpenID" +msgstr "Support OpenID" #: ../../mod/admin.php:613 msgid "OpenID support for registration and logins." -msgstr "Podpora OpenID pro registraci a přihlašování." +msgstr "Supporter OpenID pour les inscriptions et connexions." #: ../../mod/admin.php:614 msgid "Fullname check" -msgstr "kontrola úplného jména" +msgstr "Vérification du \"Prénom Nom\"" #: ../../mod/admin.php:614 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í." +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:615 msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Regulární výrazy" +msgstr "Regex UTF-8" #: ../../mod/admin.php:615 msgid "Use PHP UTF8 regular expressions" -msgstr "Použít PHP UTF8 regulární výrazy." +msgstr "Utiliser les expressions rationnelles de PHP en UTF8" #: ../../mod/admin.php:616 msgid "Show Community Page" -msgstr "Zobrazit stránku komunity" +msgstr "Montrer la \"Place publique\"" #: ../../mod/admin.php:616 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." +msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site." #: ../../mod/admin.php:617 msgid "Enable OStatus support" -msgstr "Zapnout podporu OStatus" +msgstr "Activer le support d'OStatus" #: ../../mod/admin.php:617 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." +msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." #: ../../mod/admin.php:618 msgid "OStatus conversation completion interval" -msgstr "Interval dokončení konverzace OStatus" +msgstr "" #: ../../mod/admin.php:618 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." -msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." +msgstr "" #: ../../mod/admin.php:619 msgid "Enable Diaspora support" -msgstr "Povolit podporu Diaspora" +msgstr "Activer le support de Diaspora" #: ../../mod/admin.php:619 msgid "Provide built-in Diaspora network compatibility." -msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." +msgstr "Fournir une compatibilité Diaspora intégrée." #: ../../mod/admin.php:620 msgid "Only allow Friendica contacts" -msgstr "Povolit pouze Friendica kontakty" +msgstr "N'autoriser que les contacts Friendica" #: ../../mod/admin.php:620 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é." +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:621 msgid "Verify SSL" -msgstr "Ověřit SSL" +msgstr "Vérifier SSL" #: ../../mod/admin.php:621 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." +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:622 msgid "Proxy user" -msgstr "Proxy uživatel" +msgstr "Utilisateur du proxy" #: ../../mod/admin.php:623 msgid "Proxy URL" -msgstr "Proxy URL adresa" +msgstr "URL du proxy" #: ../../mod/admin.php:624 msgid "Network timeout" -msgstr "čas síťového spojení vypršelo (timeout)" +msgstr "Dépassement du délai d'attente du réseau" #: ../../mod/admin.php:624 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)." +msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." #: ../../mod/admin.php:625 msgid "Delivery interval" -msgstr "Interval doručování" +msgstr "Intervalle de transmission" #: ../../mod/admin.php:625 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." +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:626 msgid "Poll interval" -msgstr "Dotazovací interval" +msgstr "Intervalle de réception" #: ../../mod/admin.php:626 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." +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:627 msgid "Maximum Load Average" -msgstr "Maximální průměrné zatížení" +msgstr "Plafond de la charge moyenne" #: ../../mod/admin.php:627 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" +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:629 msgid "Use MySQL full text engine" -msgstr "Použít fulltextový vyhledávací stroj MySQL" +msgstr "Utiliser le moteur de recherche plein texte de MySQL" #: ../../mod/admin.php:629 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." -msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" +msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." #: ../../mod/admin.php:630 msgid "Suppress Language" -msgstr "Potlačit Jazyk" +msgstr "Supprimer un langage" #: ../../mod/admin.php:630 msgid "Suppress language information in meta information about a posting." -msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" +msgstr "" #: ../../mod/admin.php:631 msgid "Path to item cache" -msgstr "Cesta k položkám vyrovnávací paměti" +msgstr "Chemin vers le cache des objets." #: ../../mod/admin.php:632 msgid "Cache duration in seconds" -msgstr "Doba platnosti vyrovnávací paměti v sekundách" +msgstr "Durée du cache en secondes" #: ../../mod/admin.php:632 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." -msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)." +msgstr "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)." #: ../../mod/admin.php:633 msgid "Path for lock file" -msgstr "Cesta k souboru zámku" +msgstr "Chemin vers le ficher de verrouillage" #: ../../mod/admin.php:634 msgid "Temp path" -msgstr "Cesta k dočasným souborům" +msgstr "Chemin des fichiers temporaires" #: ../../mod/admin.php:635 msgid "Base path to installation" -msgstr "Základní cesta k instalaci" +msgstr "Chemin de base de l'installation" #: ../../mod/admin.php:637 msgid "New base url" -msgstr "Nová výchozí url adresa" +msgstr "" #: ../../mod/admin.php:655 msgid "Update has been marked successful" -msgstr "Aktualizace byla označena jako úspěšná." +msgstr "Mise-à-jour validée comme 'réussie'" #: ../../mod/admin.php:665 #, php-format msgid "Executing %s failed. Check system logs." -msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol." +msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système." #: ../../mod/admin.php:668 #, php-format msgid "Update %s was successfully applied." -msgstr "Aktualizace %s byla úspěšně aplikována." +msgstr "Mise-à-jour %s appliquée avec succès." #: ../../mod/admin.php:672 #, 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á." +msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." #: ../../mod/admin.php:675 #, php-format msgid "Update function %s could not be found." -msgstr "Aktualizační funkce %s nebyla nalezena." +msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée." #: ../../mod/admin.php:690 msgid "No failed updates." -msgstr "Žádné neúspěšné aktualizace." +msgstr "Pas de mises-à-jour échouées." #: ../../mod/admin.php:694 msgid "Failed Updates" -msgstr "Neúspěšné aktualizace" +msgstr "Mises-à-jour échouées" #: ../../mod/admin.php:695 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." +msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." #: ../../mod/admin.php:696 msgid "Mark success (if update was manually applied)" -msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" +msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" #: ../../mod/admin.php:697 msgid "Attempt to execute this update step automatically" -msgstr "Pokusit se provést tuto aktualizaci automaticky." +msgstr "Tenter d'éxecuter cette étape automatiquement" #: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" -msgstr "Registrace úspěšná. Email zaslán uživateli" +msgstr "Souscription réussi. Mail envoyé à l'utilisateur" #: ../../mod/admin.php:753 #, 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" +msgstr[0] "%s utilisateur a (dé)bloqué" +msgstr[1] "%s utilisateurs ont (dé)bloqué" #: ../../mod/admin.php:760 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" -msgstr[0] "%s uživatel smazán" -msgstr[1] "%s uživatelů smazáno" -msgstr[2] "%s uživatelů smazáno" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" #: ../../mod/admin.php:799 #, php-format msgid "User '%s' deleted" -msgstr "Uživatel '%s' smazán" +msgstr "Utilisateur '%s' supprimé" #: ../../mod/admin.php:807 #, php-format msgid "User '%s' unblocked" -msgstr "Uživatel '%s' odblokován" +msgstr "Utilisateur '%s' débloqué" #: ../../mod/admin.php:807 #, php-format msgid "User '%s' blocked" -msgstr "Uživatel '%s' blokován" +msgstr "Utilisateur '%s' bloqué" #: ../../mod/admin.php:902 msgid "Add User" -msgstr "Přidat Uživatele" +msgstr "Ajouter l'utilisateur" #: ../../mod/admin.php:903 msgid "select all" -msgstr "Vybrat vše" +msgstr "tout sélectionner" #: ../../mod/admin.php:904 msgid "User registrations waiting for confirm" -msgstr "Registrace uživatele čeká na potvrzení" +msgstr "Inscriptions d'utilisateurs en attente de confirmation" #: ../../mod/admin.php:905 msgid "User waiting for permanent deletion" -msgstr "Uživatel čeká na trvalé smazání" +msgstr "" #: ../../mod/admin.php:906 msgid "Request date" -msgstr "Datum žádosti" +msgstr "Date de la demande" #: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 #: ../../mod/admin.php:932 ../../mod/crepair.php:150 #: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Name" -msgstr "Jméno" +msgstr "Nom" #: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 #: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" -msgstr "E-mail" +msgstr "Courriel" #: ../../mod/admin.php:907 msgid "No registrations." -msgstr "Žádné registrace." +msgstr "Pas d'inscriptions." #: ../../mod/admin.php:908 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" -msgstr "Schválit" +msgstr "Approuver" #: ../../mod/admin.php:909 msgid "Deny" -msgstr "Odmítnout" +msgstr "Rejetter" #: ../../mod/admin.php:911 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" -msgstr "Blokovat" +msgstr "Bloquer" #: ../../mod/admin.php:912 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" -msgstr "Odblokovat" +msgstr "Débloquer" #: ../../mod/admin.php:913 msgid "Site admin" -msgstr "Site administrátor" +msgstr "Administration du Site" #: ../../mod/admin.php:914 msgid "Account expired" -msgstr "Účtu vypršela platnost" +msgstr "Compte expiré" #: ../../mod/admin.php:917 msgid "New User" -msgstr "Nový uživatel" +msgstr "Nouvel utilisateur" #: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Register date" -msgstr "Datum registrace" +msgstr "Date d'inscription" #: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last login" -msgstr "Datum posledního přihlášení" +msgstr "Dernière connexion" #: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last item" -msgstr "Poslední položka" +msgstr "Dernier élément" #: ../../mod/admin.php:918 msgid "Deleted since" -msgstr "Smazán od" +msgstr "" #: ../../mod/admin.php:919 ../../mod/settings.php:36 msgid "Account" -msgstr "Účet" +msgstr "Compte" #: ../../mod/admin.php:921 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 "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:922 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 "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:932 msgid "Name of the new user." -msgstr "Jméno nového uživatele" +msgstr "Nom du nouvel utilisateur." #: ../../mod/admin.php:933 msgid "Nickname" -msgstr "Přezdívka" +msgstr "Pseudo" #: ../../mod/admin.php:933 msgid "Nickname of the new user." -msgstr "Přezdívka nového uživatele." +msgstr "Pseudo du nouvel utilisateur." #: ../../mod/admin.php:934 msgid "Email address of the new user." -msgstr "Emailová adresa nového uživatele." +msgstr "Adresse mail du nouvel utilisateur." #: ../../mod/admin.php:967 #, php-format msgid "Plugin %s disabled." -msgstr "Plugin %s zakázán." +msgstr "Extension %s désactivée." #: ../../mod/admin.php:971 #, php-format msgid "Plugin %s enabled." -msgstr "Plugin %s povolen." +msgstr "Extension %s activée." #: ../../mod/admin.php:981 ../../mod/admin.php:1195 msgid "Disable" -msgstr "Zakázat" +msgstr "Désactiver" #: ../../mod/admin.php:983 ../../mod/admin.php:1197 msgid "Enable" -msgstr "Povolit" +msgstr "Activer" #: ../../mod/admin.php:1006 ../../mod/admin.php:1225 msgid "Toggle" -msgstr "Přepnout" +msgstr "Activer/Désactiver" #: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " -msgstr "Autor: " +msgstr "Auteur: " #: ../../mod/admin.php:1015 ../../mod/admin.php:1236 msgid "Maintainer: " -msgstr "Správce: " +msgstr "Mainteneur: " #: ../../mod/admin.php:1155 msgid "No themes found." -msgstr "Nenalezeny žádná témata." +msgstr "Aucun thème trouvé." #: ../../mod/admin.php:1217 msgid "Screenshot" -msgstr "Snímek obrazovky" +msgstr "Capture d'écran" #: ../../mod/admin.php:1263 msgid "[Experimental]" -msgstr "[Experimentální]" +msgstr "[Expérimental]" #: ../../mod/admin.php:1264 msgid "[Unsupported]" -msgstr "[Nepodporováno]" +msgstr "[Non supporté]" #: ../../mod/admin.php:1291 msgid "Log settings updated." -msgstr "Nastavení protokolu aktualizováno." +msgstr "Réglages des journaux mis-à-jour." #: ../../mod/admin.php:1347 msgid "Clear" -msgstr "Vyčistit" +msgstr "Effacer" #: ../../mod/admin.php:1353 msgid "Enable Debugging" -msgstr "Povolit ladění" +msgstr "Activer le déboggage" #: ../../mod/admin.php:1354 msgid "Log file" -msgstr "Soubor s logem" +msgstr "Fichier de journaux" #: ../../mod/admin.php:1354 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" +msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." #: ../../mod/admin.php:1355 msgid "Log level" -msgstr "Úroveň auditu" +msgstr "Niveau de journalisaton" #: ../../mod/admin.php:1404 ../../mod/contacts.php:487 msgid "Update now" -msgstr "Aktualizovat" +msgstr "Mettre à jour" #: ../../mod/admin.php:1405 msgid "Close" -msgstr "Zavřít" +msgstr "Fermer" #: ../../mod/admin.php:1411 msgid "FTP Host" -msgstr "Hostitel FTP" +msgstr "Hôte FTP" #: ../../mod/admin.php:1412 msgid "FTP Path" -msgstr "Cesta FTP" +msgstr "Chemin FTP" #: ../../mod/admin.php:1413 msgid "FTP User" -msgstr "FTP uživatel" +msgstr "Utilisateur FTP" #: ../../mod/admin.php:1414 msgid "FTP Password" -msgstr "FTP heslo" +msgstr "Mot de passe FTP" #: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 #: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" -msgstr "Vyhledávání" +msgstr "Recherche" #: ../../mod/_search.php:180 ../../mod/_search.php:206 #: ../../mod/search.php:170 ../../mod/search.php:196 #: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." -msgstr "Žádné výsledky." +msgstr "Aucun résultat." #: ../../mod/profile.php:180 msgid "Tips for New Members" -msgstr "Tipy pro nové členy" +msgstr "Conseils aux nouveaux venus" #: ../../mod/share.php:44 msgid "link" -msgstr "odkaz" +msgstr "lien" #: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" +msgstr "%1$s a taggué %3$s de %2$s avec %4$s" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 msgid "Item not found" -msgstr "Položka nenalezena" +msgstr "Élément introuvable" #: ../../mod/editpost.php:39 msgid "Edit post" -msgstr "Upravit příspěvek" +msgstr "Éditer le billet" #: ../../mod/editpost.php:111 ../../include/conversation.php:1090 msgid "upload photo" -msgstr "nahrát fotky" +msgstr "envoi image" #: ../../mod/editpost.php:112 ../../include/conversation.php:1091 msgid "Attach file" -msgstr "Přiložit soubor" +msgstr "Joindre fichier" #: ../../mod/editpost.php:113 ../../include/conversation.php:1092 msgid "attach file" -msgstr "přidat soubor" +msgstr "ajout fichier" #: ../../mod/editpost.php:115 ../../include/conversation.php:1094 msgid "web link" -msgstr "webový odkaz" +msgstr "lien web" #: ../../mod/editpost.php:116 ../../include/conversation.php:1095 msgid "Insert video link" -msgstr "Zadejte odkaz na video" +msgstr "Insérer un lien video" #: ../../mod/editpost.php:117 ../../include/conversation.php:1096 msgid "video link" -msgstr "odkaz na video" +msgstr "lien vidéo" #: ../../mod/editpost.php:118 ../../include/conversation.php:1097 msgid "Insert audio link" -msgstr "Zadejte odkaz na zvukový záznam" +msgstr "Insérer un lien audio" #: ../../mod/editpost.php:119 ../../include/conversation.php:1098 msgid "audio link" -msgstr "odkaz na audio" +msgstr "lien audio" #: ../../mod/editpost.php:120 ../../include/conversation.php:1099 msgid "Set your location" -msgstr "Nastavte vaši polohu" +msgstr "Définir votre localisation" #: ../../mod/editpost.php:121 ../../include/conversation.php:1100 msgid "set location" -msgstr "nastavit místo" +msgstr "spéc. localisation" #: ../../mod/editpost.php:122 ../../include/conversation.php:1101 msgid "Clear browser location" -msgstr "Odstranit adresu v prohlížeči" +msgstr "Effacer la localisation du navigateur" #: ../../mod/editpost.php:123 ../../include/conversation.php:1102 msgid "clear location" -msgstr "vymazat místo" +msgstr "supp. localisation" #: ../../mod/editpost.php:125 ../../include/conversation.php:1108 msgid "Permission settings" -msgstr "Nastavení oprávnění" +msgstr "Réglages des permissions" #: ../../mod/editpost.php:133 ../../include/conversation.php:1117 msgid "CC: email addresses" -msgstr "skrytá kopie: e-mailové adresy" +msgstr "CC: adresses de courriel" #: ../../mod/editpost.php:134 ../../include/conversation.php:1118 msgid "Public post" -msgstr "Veřejný příspěvek" +msgstr "Billet publique" #: ../../mod/editpost.php:137 ../../include/conversation.php:1104 msgid "Set title" -msgstr "Nastavit titulek" +msgstr "Définir un titre" #: ../../mod/editpost.php:139 ../../include/conversation.php:1106 msgid "Categories (comma-separated list)" -msgstr "Kategorie (čárkou oddělený seznam)" +msgstr "Catégories (séparées par des virgules)" #: ../../mod/editpost.php:140 ../../include/conversation.php:1120 msgid "Example: bob@example.com, mary@example.com" -msgstr "Příklad: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" #: ../../mod/attach.php:8 msgid "Item not available." -msgstr "Položka není k dispozici." +msgstr "Elément non disponible." #: ../../mod/attach.php:20 msgid "Item was not found." -msgstr "Položka nebyla nalezena." +msgstr "Element introuvable." #: ../../mod/regmod.php:63 msgid "Account approved." -msgstr "Účet schválen." +msgstr "Inscription validée." #: ../../mod/regmod.php:100 #, php-format msgid "Registration revoked for %s" -msgstr "Registrace zrušena pro %s" +msgstr "Inscription révoquée pour %s" #: ../../mod/regmod.php:112 msgid "Please login." -msgstr "Přihlaste se, prosím." +msgstr "Merci de vous connecter." #: ../../mod/directory.php:57 msgid "Find on this site" -msgstr "Nalézt na tomto webu" +msgstr "Trouver sur ce site" #: ../../mod/directory.php:59 ../../mod/contacts.php:693 msgid "Finding: " -msgstr "Zjištění: " +msgstr "Trouvé: " #: ../../mod/directory.php:60 msgid "Site Directory" -msgstr "Adresář serveru" +msgstr "Annuaire local" #: ../../mod/directory.php:61 ../../mod/contacts.php:694 #: ../../include/contact_widgets.php:33 msgid "Find" -msgstr "Najít" +msgstr "Trouver" #: ../../mod/directory.php:111 ../../mod/profiles.php:690 msgid "Age: " -msgstr "Věk: " +msgstr "Age: " #: ../../mod/directory.php:114 msgid "Gender: " -msgstr "Pohlaví: " +msgstr "Genre: " #: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 msgid "About:" -msgstr "O mě:" +msgstr "À propos:" #: ../../mod/directory.php:187 msgid "No entries (some entries may be hidden)." -msgstr "Žádné záznamy (některé položky mohou být skryty)." +msgstr "Aucune entrée (certaines peuvent être cachées)." #: ../../mod/crepair.php:104 msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" +msgstr "Réglages du contact appliqués." #: ../../mod/crepair.php:106 msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." +msgstr "Impossible d'appliquer les réglages." #: ../../mod/crepair.php:137 msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" +msgstr "Réglages du réparateur de contacts" #: ../../mod/crepair.php:139 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." -msgstr "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." +msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." #: ../../mod/crepair.php:140 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 "une photo" #: ../../mod/crepair.php:146 msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" +msgstr "Retour à l'éditeur de contact" #: ../../mod/crepair.php:151 msgid "Account Nickname" -msgstr "Přezdívka účtu" +msgstr "Pseudo du compte" #: ../../mod/crepair.php:152 msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" +msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" #: ../../mod/crepair.php:153 msgid "Account URL" -msgstr "URL adresa účtu" +msgstr "URL du compte" #: ../../mod/crepair.php:154 msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" +msgstr "Echec du téléversement de l'image." #: ../../mod/crepair.php:155 msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" +msgstr "Accès public refusé." #: ../../mod/crepair.php:156 msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" +msgstr "Aucune photo sélectionnée" #: ../../mod/crepair.php:157 msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" +msgstr "Téléverser des photos" #: ../../mod/crepair.php:158 msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" +msgstr "Nouvelle photo depuis cette URL" #: ../../mod/crepair.php:159 msgid "Remote Self" -msgstr "Remote Self" +msgstr "" #: ../../mod/crepair.php:161 msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" +msgstr "" #: ../../mod/crepair.php:161 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." -msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." +msgstr "" #: ../../mod/uimport.php:66 msgid "Move account" -msgstr "Přesunout účet" +msgstr "Migrer le compte" #: ../../mod/uimport.php:67 msgid "You can import an account from another Friendica server." -msgstr "Můžete importovat účet z jiného Friendica serveru." +msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." #: ../../mod/uimport.php:68 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." -msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." +msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici." #: ../../mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (statusnet/identi.ca) or from Diaspora" -msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" +msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" #: ../../mod/uimport.php:70 msgid "Account file" -msgstr "Soubor s účtem" +msgstr "Fichier du compte" #: ../../mod/uimport.php:70 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" -msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" +msgstr "" #: ../../mod/lockview.php:31 ../../mod/lockview.php:39 msgid "Remote privacy information not available." -msgstr "Vzdálené soukromé informace nejsou k dispozici." +msgstr "Informations de confidentialité indisponibles." #: ../../mod/lockview.php:48 msgid "Visible to:" -msgstr "Viditelné pro:" +msgstr "Visible par:" #: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 msgid "Save" -msgstr "Uložit" +msgstr "Sauver" #: ../../mod/help.php:79 msgid "Help:" -msgstr "Nápověda:" +msgstr "Aide:" #: ../../mod/help.php:84 ../../include/nav.php:113 msgid "Help" -msgstr "Nápověda" +msgstr "Aide" #: ../../mod/hcard.php:10 msgid "No profile" -msgstr "Žádný profil" +msgstr "Aucun profil" #: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." +msgstr "Cette introduction a déjà été acceptée." #: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 msgid "Profile location is not valid or does not contain profile information." -msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" +msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." #: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 msgid "Warning: profile location has no identifiable owner name." -msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." #: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 msgid "Warning: profile location has no profile photo." -msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." #: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d 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ě" +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 "Představení dokončeno." +msgstr "Phase d'introduction achevée." #: ../../mod/dfrn_request.php:209 msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" +msgstr "Erreur de protocole non-récupérable." #: ../../mod/dfrn_request.php:237 msgid "Profile unavailable." -msgstr "Profil není k dispozici." +msgstr "Profil indisponible." #: ../../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í." +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 "Ochrana proti spamu byla aktivována" +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 "Přátelům se doporučuje to zkusit znovu za 24 hodin." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." #: ../../mod/dfrn_request.php:326 msgid "Invalid locator" -msgstr "Neplatný odkaz" +msgstr "Localisateur invalide" #: ../../mod/dfrn_request.php:335 msgid "Invalid email address." -msgstr "Neplatná emailová adresa" +msgstr "Adresse courriel invalide." #: ../../mod/dfrn_request.php:362 msgid "This account has not been configured for email. Request failed." -msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." +msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." #: ../../mod/dfrn_request.php:458 msgid "Unable to resolve your name at the provided location." -msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." +msgstr "Impossible de résoudre votre nom à l'emplacement fourni." #: ../../mod/dfrn_request.php:471 msgid "You have already introduced yourself here." -msgstr "Již jste se zde zavedli." +msgstr "Vous vous êtes déjà présenté ici." #: ../../mod/dfrn_request.php:475 #, php-format msgid "Apparently you are already friends with %s." -msgstr "Zřejmě jste již přátelé se %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." #: ../../mod/dfrn_request.php:496 msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." +msgstr "URL de profil invalide." #: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." +msgstr "URL de profil interdite." #: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." +msgstr "Échec de mise-à-jour du contact." #: ../../mod/dfrn_request.php:592 msgid "Your introduction has been sent." -msgstr "Vaše žádost o propojení byla odeslána." +msgstr "Votre introduction a été envoyée." #: ../../mod/dfrn_request.php:645 msgid "Please login to confirm introduction." -msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." +msgstr "Connectez-vous pour confirmer l'introduction." #: ../../mod/dfrn_request.php:659 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 "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." #: ../../mod/dfrn_request.php:670 msgid "Hide this contact" -msgstr "Skrýt tento kontakt" +msgstr "Cacher ce contact" #: ../../mod/dfrn_request.php:673 #, php-format msgid "Welcome home %s." -msgstr "Vítejte doma %s." +msgstr "Bienvenue chez vous, %s." #: ../../mod/dfrn_request.php:674 #, php-format msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte Vaši žádost o propojení %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." #: ../../mod/dfrn_request.php:675 msgid "Confirm" -msgstr "Potvrdit" +msgstr "Confirmer" #: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" +msgstr "[Nom non-publié]" #: ../../mod/dfrn_request.php:811 msgid "" "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í:" +msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" #: ../../mod/dfrn_request.php:827 msgid "Connect as an email follower (Coming soon)" -msgstr "Připojte se jako emailový následovník (Již brzy)" +msgstr "Connecter un utilisateur de courriel (bientôt)" #: ../../mod/dfrn_request.php:829 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." +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:832 msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" +msgstr "Requête de relation/amitié" #: ../../mod/dfrn_request.php:833 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" +msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" #: ../../mod/dfrn_request.php:834 msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" +msgstr "Merci de répondre à ce qui suit:" #: ../../mod/dfrn_request.php:835 #, php-format msgid "Does %s know you?" -msgstr "Zná Vás uživatel %s ?" +msgstr "Est-ce que %s vous connaît?" #: ../../mod/dfrn_request.php:838 msgid "Add a personal note:" -msgstr "Přidat osobní poznámku:" +msgstr "Ajouter une note personnelle:" #: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 msgid "Friendica" @@ -3251,7 +3250,7 @@ msgstr "Friendica" #: ../../mod/dfrn_request.php:841 msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" +msgstr "StatusNet/Federated Social Web" #: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 #: ../../include/contact_selectors.php:80 @@ -3263,518 +3262,516 @@ msgstr "Diaspora" 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." +msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora." #: ../../mod/dfrn_request.php:844 msgid "Your Identity Address:" -msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." +msgstr "Votre adresse d'identité:" #: ../../mod/dfrn_request.php:847 msgid "Submit Request" -msgstr "Odeslat žádost" +msgstr "Envoyer la requête" #: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 #: ../../mod/update_display.php:22 ../../mod/update_community.php:18 #: ../../mod/update_notes.php:41 msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" +msgstr "[contenu incorporé - rechargez la page pour le voir]" #: ../../mod/content.php:496 ../../include/conversation.php:688 msgid "View in context" -msgstr "Pohled v kontextu" +msgstr "Voir dans le contexte" #: ../../mod/contacts.php:104 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" -msgstr[0] "%d kontakt upraven." -msgstr[1] "%d kontakty upraveny" -msgstr[2] "%d kontaktů upraveno" +msgstr[0] "%d contact édité" +msgstr[1] "%d contacts édités." #: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." -msgstr "Nelze získat přístup k záznamu kontaktu." +msgstr "Impossible d'accéder à l'enregistrement du contact." #: ../../mod/contacts.php:149 msgid "Could not locate selected profile." -msgstr "Nelze nalézt vybraný profil." +msgstr "Impossible de localiser le profil séléctionné." #: ../../mod/contacts.php:178 msgid "Contact updated." -msgstr "Kontakt aktualizován." +msgstr "Contact mis-à-jour." #: ../../mod/contacts.php:278 msgid "Contact has been blocked" -msgstr "Kontakt byl zablokován" +msgstr "Le contact a été bloqué" #: ../../mod/contacts.php:278 msgid "Contact has been unblocked" -msgstr "Kontakt byl odblokován" +msgstr "Le contact n'est plus bloqué" #: ../../mod/contacts.php:288 msgid "Contact has been ignored" -msgstr "Kontakt bude ignorován" +msgstr "Le contact a été ignoré" #: ../../mod/contacts.php:288 msgid "Contact has been unignored" -msgstr "Kontakt přestal být ignorován" +msgstr "Le contact n'est plus ignoré" #: ../../mod/contacts.php:299 msgid "Contact has been archived" -msgstr "Kontakt byl archivován" +msgstr "Contact archivé" #: ../../mod/contacts.php:299 msgid "Contact has been unarchived" -msgstr "Kontakt byl vrácen z archívu." +msgstr "Contact désarchivé" #: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" -msgstr "Opravdu chcete smazat tento kontakt?" +msgstr "Voulez-vous vraiment supprimer ce contact?" #: ../../mod/contacts.php:341 msgid "Contact has been removed." -msgstr "Kontakt byl odstraněn." +msgstr "Ce contact a été retiré." #: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" -msgstr "Jste vzájemní přátelé s uživatelem %s" +msgstr "Vous êtes ami (et réciproquement) avec %s" #: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" -msgstr "Sdílíte s uživatelem %s" +msgstr "Vous partagez avec %s" #: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" -msgstr "uživatel %s sdílí s vámi" +msgstr "%s partage avec vous" #: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." -msgstr "Soukromá komunikace není dostupná pro tento kontakt." +msgstr "Les communications privées ne sont pas disponibles pour ce contact." #: ../../mod/contacts.php:412 msgid "(Update was successful)" -msgstr "(Aktualizace byla úspěšná)" +msgstr "(Mise à jour effectuée avec succès)" #: ../../mod/contacts.php:412 msgid "(Update was not successful)" -msgstr "(Aktualizace nebyla úspěšná)" +msgstr "(Mise à jour échouée)" #: ../../mod/contacts.php:414 msgid "Suggest friends" -msgstr "Navrhněte přátelé" +msgstr "Suggérer amitié/contact" #: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" -msgstr "Typ sítě: %s" +msgstr "Type de réseau %s" #: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 #, 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ů" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" #: ../../mod/contacts.php:426 msgid "View all contacts" -msgstr "Zobrazit všechny kontakty" +msgstr "Voir tous les contacts" #: ../../mod/contacts.php:434 msgid "Toggle Blocked status" -msgstr "Přepnout stav Blokováno" +msgstr "(dés)activer l'état \"bloqué\"" #: ../../mod/contacts.php:437 ../../mod/contacts.php:491 #: ../../mod/contacts.php:701 msgid "Unignore" -msgstr "Přestat ignorovat" +msgstr "Ne plus ignorer" #: ../../mod/contacts.php:437 ../../mod/contacts.php:491 #: ../../mod/contacts.php:701 ../../mod/notifications.php:51 #: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" -msgstr "Ignorovat" +msgstr "Ignorer" #: ../../mod/contacts.php:440 msgid "Toggle Ignored status" -msgstr "Přepnout stav Ignorováno" +msgstr "(dés)activer l'état \"ignoré\"" #: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" -msgstr "Vrátit z archívu" +msgstr "Désarchiver" #: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" -msgstr "Archivovat" +msgstr "Archiver" #: ../../mod/contacts.php:447 msgid "Toggle Archive status" -msgstr "Přepnout stav Archivováno" +msgstr "(dés)activer l'état \"archivé\"" #: ../../mod/contacts.php:450 msgid "Repair" -msgstr "Opravit" +msgstr "Réparer" #: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" -msgstr "Pokročilé nastavení kontaktu" +msgstr "Réglages avancés du contact" #: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" -msgstr "Komunikace s tímto kontaktem byla ztracena!" +msgstr "Communications perdues avec ce contact !" #: ../../mod/contacts.php:462 msgid "Contact Editor" -msgstr "Editor kontaktu" +msgstr "Éditeur de contact" #: ../../mod/contacts.php:465 msgid "Profile Visibility" -msgstr "Viditelnost profilu" +msgstr "Visibilité du profil" #: ../../mod/contacts.php:466 #, 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 "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." #: ../../mod/contacts.php:467 msgid "Contact Information / Notes" -msgstr "Kontaktní informace / poznámky" +msgstr "Informations de contact / Notes" #: ../../mod/contacts.php:468 msgid "Edit contact notes" -msgstr "Editovat poznámky kontaktu" +msgstr "Éditer les notes des contacts" #: ../../mod/contacts.php:473 ../../mod/contacts.php:665 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" -msgstr "Navštivte profil uživatele %s [%s]" +msgstr "Visiter le profil de %s [%s]" #: ../../mod/contacts.php:474 msgid "Block/Unblock contact" -msgstr "Blokovat / Odblokovat kontakt" +msgstr "Bloquer/débloquer ce contact" #: ../../mod/contacts.php:475 msgid "Ignore contact" -msgstr "Ignorovat kontakt" +msgstr "Ignorer ce contact" #: ../../mod/contacts.php:476 msgid "Repair URL settings" -msgstr "Opravit nastavení adresy URL " +msgstr "Réparer les réglages d'URL" #: ../../mod/contacts.php:477 msgid "View conversations" -msgstr "Zobrazit konverzace" +msgstr "Voir les conversations" #: ../../mod/contacts.php:479 msgid "Delete contact" -msgstr "Odstranit kontakt" +msgstr "Effacer ce contact" #: ../../mod/contacts.php:483 msgid "Last update:" -msgstr "Poslední aktualizace:" +msgstr "Dernière mise-à-jour :" #: ../../mod/contacts.php:485 msgid "Update public posts" -msgstr "Aktualizovat veřejné příspěvky" +msgstr "Met ses entrées publiques à jour: " #: ../../mod/contacts.php:494 msgid "Currently blocked" -msgstr "V současnosti zablokováno" +msgstr "Actuellement bloqué" #: ../../mod/contacts.php:495 msgid "Currently ignored" -msgstr "V současnosti ignorováno" +msgstr "Actuellement ignoré" #: ../../mod/contacts.php:496 msgid "Currently archived" -msgstr "Aktuálně archivován" +msgstr "Actuellement archivé" #: ../../mod/contacts.php:497 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" +msgstr "Cacher ce contact aux autres" #: ../../mod/contacts.php:497 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é" +msgstr "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles" #: ../../mod/contacts.php:498 msgid "Notification for new posts" -msgstr "Upozornění na nové příspěvky" +msgstr "Notification des nouvelles publications" #: ../../mod/contacts.php:498 msgid "Send a notification of every new post of this contact" -msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" +msgstr "" #: ../../mod/contacts.php:499 msgid "Fetch further information for feeds" -msgstr "Načíst další informace pro kanál" +msgstr "" #: ../../mod/contacts.php:550 msgid "Suggestions" -msgstr "Doporučení" +msgstr "Suggestions" #: ../../mod/contacts.php:553 msgid "Suggest potential friends" -msgstr "Navrhnout potenciální přátele" +msgstr "Suggérer des amis potentiels" #: ../../mod/contacts.php:556 ../../mod/group.php:194 msgid "All Contacts" -msgstr "Všechny kontakty" +msgstr "Tous les contacts" #: ../../mod/contacts.php:559 msgid "Show all contacts" -msgstr "Zobrazit všechny kontakty" +msgstr "Montrer tous les contacts" #: ../../mod/contacts.php:562 msgid "Unblocked" -msgstr "Odblokován" +msgstr "Non-bloqués" #: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" -msgstr "Zobrazit pouze neblokované kontakty" +msgstr "Ne montrer que les contacts non-bloqués" #: ../../mod/contacts.php:569 msgid "Blocked" -msgstr "Blokován" +msgstr "Bloqués" #: ../../mod/contacts.php:572 msgid "Only show blocked contacts" -msgstr "Zobrazit pouze blokované kontakty" +msgstr "Ne montrer que les contacts bloqués" #: ../../mod/contacts.php:576 msgid "Ignored" -msgstr "Ignorován" +msgstr "Ignorés" #: ../../mod/contacts.php:579 msgid "Only show ignored contacts" -msgstr "Zobrazit pouze ignorované kontakty" +msgstr "Ne montrer que les contacts ignorés" #: ../../mod/contacts.php:583 msgid "Archived" -msgstr "Archivován" +msgstr "Archivés" #: ../../mod/contacts.php:586 msgid "Only show archived contacts" -msgstr "Zobrazit pouze archivované kontakty" +msgstr "Ne montrer que les contacts archivés" #: ../../mod/contacts.php:590 msgid "Hidden" -msgstr "Skrytý" +msgstr "Cachés" #: ../../mod/contacts.php:593 msgid "Only show hidden contacts" -msgstr "Zobrazit pouze skryté kontakty" +msgstr "Ne montrer que les contacts masqués" #: ../../mod/contacts.php:641 msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" +msgstr "Relation réciproque" #: ../../mod/contacts.php:645 msgid "is a fan of yours" -msgstr "je Váš fanoušek" +msgstr "Vous suit" #: ../../mod/contacts.php:649 msgid "you are a fan of" -msgstr "jste fanouškem" +msgstr "Vous le/la suivez" #: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 msgid "Edit contact" -msgstr "Editovat kontakt" +msgstr "Éditer le contact" #: ../../mod/contacts.php:692 msgid "Search your contacts" -msgstr "Prohledat Vaše kontakty" +msgstr "Rechercher dans vos contacts" #: ../../mod/contacts.php:699 ../../mod/settings.php:132 #: ../../mod/settings.php:635 msgid "Update" -msgstr "Aktualizace" +msgstr "Mises-à-jour" #: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." +msgstr "tout le monde" #: ../../mod/settings.php:41 msgid "Additional features" -msgstr "Další funkčnosti" +msgstr "Fonctions supplémentaires" #: ../../mod/settings.php:46 msgid "Display" -msgstr "Zobrazení" +msgstr "Afficher" #: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" -msgstr "Sociální sítě" +msgstr "Réseaux sociaux" #: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" -msgstr "Delegace" +msgstr "Délégations" #: ../../mod/settings.php:67 msgid "Connected apps" -msgstr "Propojené aplikace" +msgstr "Applications connectées" #: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" -msgstr "Export osobních údajů" +msgstr "Exporter" #: ../../mod/settings.php:77 msgid "Remove account" -msgstr "Odstranit účet" +msgstr "Supprimer le compte" #: ../../mod/settings.php:129 msgid "Missing some important data!" -msgstr "Chybí některé důležité údaje!" +msgstr "Il manque certaines informations importantes!" #: ../../mod/settings.php:238 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í." +msgstr "Impossible de se connecter au compte courriel configuré." #: ../../mod/settings.php:243 msgid "Email settings updated." -msgstr "Nastavení e-mailu aktualizována." +msgstr "Réglages de courriel mis-à-jour." #: ../../mod/settings.php:258 msgid "Features updated" -msgstr "Aktualizované funkčnosti" +msgstr "Fonctionnalités mises à jour" #: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" -msgstr "Správa o změně umístění byla odeslána vašim kontaktům" +msgstr "" #: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." -msgstr "Hesla se neshodují. Heslo nebylo změněno." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." #: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." #: ../../mod/settings.php:346 msgid "Wrong password." -msgstr "Špatné heslo." +msgstr "Mauvais mot de passe." #: ../../mod/settings.php:357 msgid "Password changed." -msgstr "Heslo bylo změněno." +msgstr "Mots de passe changés." #: ../../mod/settings.php:359 msgid "Password update failed. Please try again." -msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." #: ../../mod/settings.php:424 msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." +msgstr " Merci d'utiliser un nom plus court." #: ../../mod/settings.php:426 msgid " Name too short." -msgstr "Jméno je příliš krátké." +msgstr " Nom trop court." #: ../../mod/settings.php:435 msgid "Wrong Password" -msgstr "Špatné heslo" +msgstr "Mauvais mot de passe" #: ../../mod/settings.php:440 msgid " Not valid email." -msgstr "Neplatný e-mail." +msgstr " Email invalide." #: ../../mod/settings.php:446 msgid " Cannot change to that email." -msgstr "Nelze provést změnu na tento e-mail." +msgstr " Impossible de changer pour cet email." #: ../../mod/settings.php:501 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." +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:505 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." +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:535 msgid "Settings updated." -msgstr "Nastavení aktualizováno." +msgstr "Réglages mis à jour." #: ../../mod/settings.php:608 ../../mod/settings.php:634 #: ../../mod/settings.php:670 msgid "Add application" -msgstr "Přidat aplikaci" +msgstr "Ajouter une application" #: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Key" -msgstr "Consumer Key" +msgstr "Clé utilisateur" #: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Consumer Secret" -msgstr "Consumer Secret" +msgstr "Secret utilisateur" #: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Redirect" -msgstr "Přesměrování" +msgstr "Rediriger" #: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" -msgstr "URL ikony" +msgstr "URL de l'icône" #: ../../mod/settings.php:626 msgid "You can't edit this application." -msgstr "Nemůžete editovat tuto aplikaci." +msgstr "Vous ne pouvez pas éditer cette application." #: ../../mod/settings.php:669 msgid "Connected Apps" -msgstr "Připojené aplikace" +msgstr "Applications connectées" #: ../../mod/settings.php:673 msgid "Client key starts with" -msgstr "Klienský klíč začíná" +msgstr "La clé cliente commence par" #: ../../mod/settings.php:674 msgid "No name" -msgstr "Bez názvu" +msgstr "Sans nom" #: ../../mod/settings.php:675 msgid "Remove authorization" -msgstr "Odstranit oprávnění" +msgstr "Révoquer l'autorisation" #: ../../mod/settings.php:687 msgid "No Plugin settings configured" -msgstr "Žádný doplněk není nastaven" +msgstr "Pas de réglages d'extensions configurés" #: ../../mod/settings.php:695 msgid "Plugin Settings" -msgstr "Nastavení doplňku" +msgstr "Extensions" #: ../../mod/settings.php:709 msgid "Off" -msgstr "Vypnuto" +msgstr "Éteint" #: ../../mod/settings.php:709 msgid "On" -msgstr "Zapnuto" +msgstr "Allumé" #: ../../mod/settings.php:717 msgid "Additional Features" -msgstr "Další Funkčnosti" +msgstr "Fonctions supplémentaires" #: ../../mod/settings.php:731 ../../mod/settings.php:732 #, php-format msgid "Built-in support for %s connectivity is %s" -msgstr "Vestavěná podpora pro připojení s %s je %s" +msgstr "Le support natif pour la connectivité %s est %s" #: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" -msgstr "povoleno" +msgstr "activé" #: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" -msgstr "zakázáno" +msgstr "désactivé" #: ../../mod/settings.php:732 msgid "StatusNet" @@ -3782,162 +3779,162 @@ msgstr "StatusNet" #: ../../mod/settings.php:768 msgid "Email access is disabled on this site." -msgstr "Přístup k elektronické poště je na tomto serveru zakázán." +msgstr "L'accès courriel est désactivé sur ce site." #: ../../mod/settings.php:780 msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" +msgstr "Réglages de courriel/boîte à lettre" #: ../../mod/settings.php:781 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." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." #: ../../mod/settings.php:782 msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" +msgstr "Dernière vérification réussie des courriels:" #: ../../mod/settings.php:784 msgid "IMAP server name:" -msgstr "jméno IMAP serveru:" +msgstr "Nom du serveur IMAP:" #: ../../mod/settings.php:785 msgid "IMAP port:" -msgstr "IMAP port:" +msgstr "Port IMAP:" #: ../../mod/settings.php:786 msgid "Security:" -msgstr "Zabezpečení:" +msgstr "Sécurité:" #: ../../mod/settings.php:786 ../../mod/settings.php:791 msgid "None" -msgstr "Žádný" +msgstr "Aucun(e)" #: ../../mod/settings.php:787 msgid "Email login name:" -msgstr "přihlašovací jméno k e-mailu:" +msgstr "Nom de connexion:" #: ../../mod/settings.php:788 msgid "Email password:" -msgstr "heslo k Vašemu e-mailu:" +msgstr "Mot de passe:" #: ../../mod/settings.php:789 msgid "Reply-to address:" -msgstr "Odpovědět na adresu:" +msgstr "Adresse de réponse:" #: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" -msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" +msgstr "Les notices publiques vont à tous les contacts courriel:" #: ../../mod/settings.php:791 msgid "Action after import:" -msgstr "Akce po importu:" +msgstr "Action après import:" #: ../../mod/settings.php:791 msgid "Mark as seen" -msgstr "Označit jako přečtené" +msgstr "Marquer comme vu" #: ../../mod/settings.php:791 msgid "Move to folder" -msgstr "Přesunout do složky" +msgstr "Déplacer vers" #: ../../mod/settings.php:792 msgid "Move to folder:" -msgstr "Přesunout do složky:" +msgstr "Déplacer vers:" #: ../../mod/settings.php:870 msgid "Display Settings" -msgstr "Nastavení Zobrazení" +msgstr "Affichage" #: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" -msgstr "Vybrat grafickou šablonu:" +msgstr "Thème d'affichage:" #: ../../mod/settings.php:877 msgid "Mobile Theme:" -msgstr "Téma pro mobilní zařízení:" +msgstr "Thème mobile:" #: ../../mod/settings.php:878 msgid "Update browser every xx seconds" -msgstr "Aktualizovat prohlížeč každých xx sekund" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" #: ../../mod/settings.php:878 msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekund, žádné maximum." +msgstr "Délai minimum de 10 secondes, pas de maximum" #: ../../mod/settings.php:879 msgid "Number of items to display per page:" -msgstr "Počet položek zobrazených na stránce:" +msgstr "Nombre d’éléments par page:" #: ../../mod/settings.php:879 ../../mod/settings.php:880 msgid "Maximum of 100 items" -msgstr "Maximum 100 položek" +msgstr "Maximum de 100 éléments" #: ../../mod/settings.php:880 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" +msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" #: ../../mod/settings.php:881 msgid "Don't show emoticons" -msgstr "Nezobrazovat emotikony" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" #: ../../mod/settings.php:882 msgid "Don't show notices" -msgstr "Nezobrazovat oznámění" +msgstr "" #: ../../mod/settings.php:883 msgid "Infinite scroll" -msgstr "Nekonečné posouvání" +msgstr "" #: ../../mod/settings.php:960 msgid "User Types" -msgstr "Uživatelské typy" +msgstr "" #: ../../mod/settings.php:961 msgid "Community Types" -msgstr "Komunitní typy" +msgstr "" #: ../../mod/settings.php:962 msgid "Normal Account Page" -msgstr "Normální stránka účtu" +msgstr "Compte normal" #: ../../mod/settings.php:963 msgid "This account is a normal personal profile" -msgstr "Tento účet je běžný osobní profil" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" #: ../../mod/settings.php:966 msgid "Soapbox Page" -msgstr "Stránka \"Soapbox\"" +msgstr "Compte \"boîte à savon\"" #: ../../mod/settings.php:967 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í" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" #: ../../mod/settings.php:970 msgid "Community Forum/Celebrity Account" -msgstr "Komunitní fórum/ účet celebrity" +msgstr "Compte de communauté/célébrité" #: ../../mod/settings.php:971 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í." +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" #: ../../mod/settings.php:974 msgid "Automatic Friend Page" -msgstr "Automatická stránka přítele" +msgstr "Compte d'\"amitié automatique\"" #: ../../mod/settings.php:975 msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" #: ../../mod/settings.php:978 msgid "Private Forum [Experimental]" -msgstr "Soukromé fórum [Experimentální]" +msgstr "Forum privé [expérimental]" #: ../../mod/settings.php:979 msgid "Private forum - approved members only" -msgstr "Soukromé fórum - pouze pro schválené členy" +msgstr "Forum privé - modéré en inscription" #: ../../mod/settings.php:991 msgid "OpenID:" @@ -3945,271 +3942,271 @@ msgstr "OpenID:" #: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." #: ../../mod/settings.php:1001 msgid "Publish your default profile in your local site directory?" -msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" #: ../../mod/settings.php:1007 msgid "Publish your default profile in the global social directory?" -msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" #: ../../mod/settings.php:1015 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?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" #: ../../mod/settings.php:1019 ../../include/conversation.php:1055 msgid "Hide your profile details from unknown viewers?" -msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" #: ../../mod/settings.php:1024 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?" +msgstr "Autoriser vos amis à publier sur votre profil?" #: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" -msgstr "Povolit přátelům označovat Vaše příspěvky?" +msgstr "Autoriser vos amis à tagguer vos notices?" #: ../../mod/settings.php:1036 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?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" #: ../../mod/settings.php:1042 msgid "Permit unknown people to send you private mail?" -msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" +msgstr "Autoriser les messages privés d'inconnus?" #: ../../mod/settings.php:1050 msgid "Profile is not published." -msgstr "Profil není zveřejněn." +msgstr "Ce profil n'est pas publié." #: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" -msgstr "nebo" +msgstr "ou" #: ../../mod/settings.php:1058 msgid "Your Identity Address is" -msgstr "Vaše adresa identity je" +msgstr "L'adresse de votre identité est" #: ../../mod/settings.php:1069 msgid "Automatically expire posts after this many days:" -msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" +msgstr "Les publications expirent automatiquement après (en jours) :" #: ../../mod/settings.php:1069 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" +msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées" #: ../../mod/settings.php:1070 msgid "Advanced expiration settings" -msgstr "Pokročilé nastavení expirací" +msgstr "Réglages avancés de l'expiration" #: ../../mod/settings.php:1071 msgid "Advanced Expiration" -msgstr "Nastavení expirací" +msgstr "Expiration (avancé)" #: ../../mod/settings.php:1072 msgid "Expire posts:" -msgstr "Expirovat příspěvky:" +msgstr "Faire expirer les contenus:" #: ../../mod/settings.php:1073 msgid "Expire personal notes:" -msgstr "Expirovat osobní poznámky:" +msgstr "Faire expirer les notes personnelles:" #: ../../mod/settings.php:1074 msgid "Expire starred posts:" -msgstr "Expirovat příspěvky s hvězdou:" +msgstr "Faire expirer les contenus marqués:" #: ../../mod/settings.php:1075 msgid "Expire photos:" -msgstr "Expirovat fotografie:" +msgstr "Faire expirer les photos:" #: ../../mod/settings.php:1076 msgid "Only expire posts by others:" -msgstr "Přízpěvky expirovat pouze ostatními:" +msgstr "Faire expirer seulement les messages des autres :" #: ../../mod/settings.php:1102 msgid "Account Settings" -msgstr "Nastavení účtu" +msgstr "Compte" #: ../../mod/settings.php:1110 msgid "Password Settings" -msgstr "Nastavení hesla" +msgstr "Réglages de mot de passe" #: ../../mod/settings.php:1111 msgid "New Password:" -msgstr "Nové heslo:" +msgstr "Nouveau mot de passe:" #: ../../mod/settings.php:1112 msgid "Confirm:" -msgstr "Potvrďte:" +msgstr "Confirmer:" #: ../../mod/settings.php:1112 msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" #: ../../mod/settings.php:1113 msgid "Current Password:" -msgstr "Stávající heslo:" +msgstr "Mot de passe actuel:" #: ../../mod/settings.php:1113 ../../mod/settings.php:1114 msgid "Your current password to confirm the changes" -msgstr "Vaše stávající heslo k potvrzení změn" +msgstr "Votre mot de passe actuel pour confirmer les modifications" #: ../../mod/settings.php:1114 msgid "Password:" -msgstr "Heslo: " +msgstr "Mot de passe:" #: ../../mod/settings.php:1118 msgid "Basic Settings" -msgstr "Základní nastavení" +msgstr "Réglages basiques" #: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 msgid "Full Name:" -msgstr "Celé jméno:" +msgstr "Nom complet:" #: ../../mod/settings.php:1120 msgid "Email Address:" -msgstr "E-mailová adresa:" +msgstr "Adresse courriel:" #: ../../mod/settings.php:1121 msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" +msgstr "Votre fuseau horaire:" #: ../../mod/settings.php:1122 msgid "Default Post Location:" -msgstr "Výchozí umístění příspěvků:" +msgstr "Publication par défaut depuis :" #: ../../mod/settings.php:1123 msgid "Use Browser Location:" -msgstr "Používat umístění dle prohlížeče:" +msgstr "Utiliser la localisation géographique du navigateur:" #: ../../mod/settings.php:1126 msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" +msgstr "Réglages de sécurité et vie privée" #: ../../mod/settings.php:1128 msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet žádostí o přátelství za den:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" #: ../../mod/settings.php:1128 ../../mod/settings.php:1158 msgid "(to prevent spam abuse)" -msgstr "(Aby se zabránilo spamu)" +msgstr "(pour limiter l'impact du spam)" #: ../../mod/settings.php:1129 msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" +msgstr "Permissions par défaut sur les articles" #: ../../mod/settings.php:1130 msgid "(click to open/close)" -msgstr "(Klikněte pro otevření/zavření)" +msgstr "(cliquer pour ouvrir/fermer)" #: ../../mod/settings.php:1139 ../../mod/photos.php:1144 #: ../../mod/photos.php:1515 msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" +msgstr "Montrer aux groupes" #: ../../mod/settings.php:1140 ../../mod/photos.php:1145 #: ../../mod/photos.php:1516 msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" +msgstr "Montrer aux Contacts" #: ../../mod/settings.php:1141 msgid "Default Private Post" -msgstr "Výchozí Soukromý příspěvek" +msgstr "Message privé par défaut" #: ../../mod/settings.php:1142 msgid "Default Public Post" -msgstr "Výchozí Veřejný příspěvek" +msgstr "Message publique par défaut" #: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" -msgstr "Výchozí oprávnění pro nové příspěvky" +msgstr "Permissions par défaut sur les nouveaux articles" #: ../../mod/settings.php:1158 msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum soukromých zpráv od neznámých lidí:" +msgstr "Maximum de messages privés d'inconnus par jour:" #: ../../mod/settings.php:1161 msgid "Notification Settings" -msgstr "Nastavení notifikací" +msgstr "Réglages de notification" #: ../../mod/settings.php:1162 msgid "By default post a status message when:" -msgstr "Defaultně posílat statusové zprávy když:" +msgstr "Par défaut, poster un statut quand:" #: ../../mod/settings.php:1163 msgid "accepting a friend request" -msgstr "akceptuji požadavek na přátelství" +msgstr "j'accepte un ami" #: ../../mod/settings.php:1164 msgid "joining a forum/community" -msgstr "připojující se k fóru/komunitě" +msgstr "joignant un forum/une communauté" #: ../../mod/settings.php:1165 msgid "making an interesting profile change" -msgstr "provedení zajímavé profilové změny" +msgstr "je fais une modification intéressante de mon profil" #: ../../mod/settings.php:1166 msgid "Send a notification email when:" -msgstr "Poslat notifikaci e-mailem, když" +msgstr "Envoyer un courriel de notification quand:" #: ../../mod/settings.php:1167 msgid "You receive an introduction" -msgstr "obdržíte žádost o propojení" +msgstr "Vous recevez une introduction" #: ../../mod/settings.php:1168 msgid "Your introductions are confirmed" -msgstr "Vaše žádosti jsou potvrzeny" +msgstr "Vos introductions sont confirmées" #: ../../mod/settings.php:1169 msgid "Someone writes on your profile wall" -msgstr "někdo Vám napíše na Vaši profilovou stránku" +msgstr "Quelqu'un écrit sur votre mur" #: ../../mod/settings.php:1170 msgid "Someone writes a followup comment" -msgstr "někdo Vám napíše následný komentář" +msgstr "Quelqu'un vous commente" #: ../../mod/settings.php:1171 msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" +msgstr "Vous recevez un message privé" #: ../../mod/settings.php:1172 msgid "You receive a friend suggestion" -msgstr "Obdržel jste návrh přátelství" +msgstr "Vous avez reçu une suggestion d'ami" #: ../../mod/settings.php:1173 msgid "You are tagged in a post" -msgstr "Jste označen v příspěvku" +msgstr "Vous avez été repéré dans une publication" #: ../../mod/settings.php:1174 msgid "You are poked/prodded/etc. in a post" -msgstr "Byl Jste šťouchnout v příspěvku" +msgstr "Vous avez été sollicité dans une publication" #: ../../mod/settings.php:1177 msgid "Advanced Account/Page Type Settings" -msgstr "Pokročilé nastavení účtu/stránky" +msgstr "Paramètres avancés de compte/page" #: ../../mod/settings.php:1178 msgid "Change the behaviour of this account for special situations" -msgstr "Změnit chování tohoto účtu ve speciálních situacích" +msgstr "Modifier le comportement de ce compte dans certaines situations" #: ../../mod/settings.php:1181 msgid "Relocate" -msgstr "Změna umístění" +msgstr "" #: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." -msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." +msgstr "" #: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" -msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" +msgstr "" #: ../../mod/profiles.php:37 msgid "Profile deleted." -msgstr "Profil smazán." +msgstr "Profil supprimé." #: ../../mod/profiles.php:55 ../../mod/profiles.php:89 msgid "Profile-" @@ -4217,341 +4214,341 @@ msgstr "Profil-" #: ../../mod/profiles.php:74 ../../mod/profiles.php:117 msgid "New profile created." -msgstr "Nový profil vytvořen." +msgstr "Nouveau profil créé." #: ../../mod/profiles.php:95 msgid "Profile unavailable to clone." -msgstr "Profil není možné naklonovat." +msgstr "Ce profil ne peut être cloné." #: ../../mod/profiles.php:170 msgid "Profile Name is required." -msgstr "Jméno profilu je povinné." +msgstr "Le nom du profil est requis." #: ../../mod/profiles.php:321 msgid "Marital Status" -msgstr "Rodinný Stav" +msgstr "Statut marital" #: ../../mod/profiles.php:325 msgid "Romantic Partner" -msgstr "Romatický partner" +msgstr "Partenaire/conjoint" #: ../../mod/profiles.php:329 msgid "Likes" -msgstr "Libí se mi" +msgstr "Derniers \"J'aime\"" #: ../../mod/profiles.php:333 msgid "Dislikes" -msgstr "Nelibí se mi" +msgstr "Derniers \"Je n'aime pas\"" #: ../../mod/profiles.php:337 msgid "Work/Employment" -msgstr "Práce/Zaměstnání" +msgstr "Travail/Occupation" #: ../../mod/profiles.php:340 msgid "Religion" -msgstr "Náboženství" +msgstr "Religion" #: ../../mod/profiles.php:344 msgid "Political Views" -msgstr "Politické přesvědčení" +msgstr "Tendance politique" #: ../../mod/profiles.php:348 msgid "Gender" -msgstr "Pohlaví" +msgstr "Sexe" #: ../../mod/profiles.php:352 msgid "Sexual Preference" -msgstr "Sexuální orientace" +msgstr "Préférence sexuelle" #: ../../mod/profiles.php:356 msgid "Homepage" -msgstr "Domácí stránka" +msgstr "Site internet" #: ../../mod/profiles.php:360 msgid "Interests" -msgstr "Zájmy" +msgstr "Centres d'intérêt" #: ../../mod/profiles.php:364 msgid "Address" -msgstr "Adresa" +msgstr "Adresse" #: ../../mod/profiles.php:371 msgid "Location" -msgstr "Lokace" +msgstr "Localisation" #: ../../mod/profiles.php:454 msgid "Profile updated." -msgstr "Profil aktualizován." +msgstr "Profil mis à jour." #: ../../mod/profiles.php:525 msgid " and " -msgstr " a " +msgstr " et " #: ../../mod/profiles.php:533 msgid "public profile" -msgstr "veřejný profil" +msgstr "profil public" #: ../../mod/profiles.php:536 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s změnil %2$s na “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" #: ../../mod/profiles.php:537 #, php-format msgid " - Visit %1$s's %2$s" -msgstr " - Navštivte %2$s uživatele %1$s" +msgstr "Visiter le %2$s de %1$s" #: ../../mod/profiles.php:540 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s aktualizoval %2$s, změnou %3$s." +msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." #: ../../mod/profiles.php:613 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 "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" #: ../../mod/profiles.php:633 msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " +msgstr "Éditer les détails du profil" #: ../../mod/profiles.php:635 msgid "Change Profile Photo" -msgstr "Změna Profilové fotky" +msgstr "Changer la photo du profil" #: ../../mod/profiles.php:636 msgid "View this profile" -msgstr "Zobrazit tento profil" +msgstr "Voir ce profil" #: ../../mod/profiles.php:637 msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" +msgstr "Créer un nouveau profil en utilisant ces réglages" #: ../../mod/profiles.php:638 msgid "Clone this profile" -msgstr "Klonovat tento profil" +msgstr "Cloner ce profil" #: ../../mod/profiles.php:639 msgid "Delete this profile" -msgstr "Smazat tento profil" +msgstr "Supprimer ce profil" #: ../../mod/profiles.php:640 msgid "Profile Name:" -msgstr "Jméno profilu:" +msgstr "Nom du profil:" #: ../../mod/profiles.php:641 msgid "Your Full Name:" -msgstr "Vaše celé jméno:" +msgstr "Votre nom complet:" #: ../../mod/profiles.php:642 msgid "Title/Description:" -msgstr "Název / Popis:" +msgstr "Titre/Description:" #: ../../mod/profiles.php:643 msgid "Your Gender:" -msgstr "Vaše pohlaví:" +msgstr "Votre genre:" #: ../../mod/profiles.php:644 #, php-format msgid "Birthday (%s):" -msgstr "Narozeniny uživatele (%s):" +msgstr "Anniversaire (%s):" #: ../../mod/profiles.php:645 msgid "Street Address:" -msgstr "Ulice:" +msgstr "Adresse postale:" #: ../../mod/profiles.php:646 msgid "Locality/City:" -msgstr "Město:" +msgstr "Ville/Localité:" #: ../../mod/profiles.php:647 msgid "Postal/Zip Code:" -msgstr "PSČ:" +msgstr "Code postal:" #: ../../mod/profiles.php:648 msgid "Country:" -msgstr "Země:" +msgstr "Pays:" #: ../../mod/profiles.php:649 msgid "Region/State:" -msgstr "Region / stát:" +msgstr "Région/État:" #: ../../mod/profiles.php:650 msgid " Marital Status:" -msgstr " Rodinný stav:" +msgstr " Statut marital:" #: ../../mod/profiles.php:651 msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" +msgstr "Qui: (si pertinent)" #: ../../mod/profiles.php:652 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" #: ../../mod/profiles.php:653 msgid "Since [date]:" -msgstr "Od [data]:" +msgstr "Depuis [date] :" #: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" -msgstr "Sexuální preference:" +msgstr "Préférence sexuelle:" #: ../../mod/profiles.php:655 msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" +msgstr "Page personnelle:" #: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 msgid "Hometown:" -msgstr "Rodné město" +msgstr " Ville d'origine:" #: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 msgid "Political Views:" -msgstr "Politické přesvědčení:" +msgstr "Opinions politiques:" #: ../../mod/profiles.php:658 msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" +msgstr "Opinions religieuses:" #: ../../mod/profiles.php:659 msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" +msgstr "Mots-clés publics:" #: ../../mod/profiles.php:660 msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" +msgstr "Mots-clés privés:" #: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 msgid "Likes:" -msgstr "Líbí se:" +msgstr "J'aime :" #: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 msgid "Dislikes:" -msgstr "Nelibí se:" +msgstr "Je n'aime pas :" #: ../../mod/profiles.php:663 msgid "Example: fishing photography software" -msgstr "Příklad: fishing photography software" +msgstr "Exemple: football dessin programmation" #: ../../mod/profiles.php:664 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 "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" #: ../../mod/profiles.php:665 msgid "(Used for searching profiles, never shown to others)" -msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" #: ../../mod/profiles.php:666 msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě ..." +msgstr "Parlez-nous de vous..." #: ../../mod/profiles.php:667 msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" +msgstr "Passe-temps/Centres d'intérêt" #: ../../mod/profiles.php:668 msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" +msgstr "Coordonnées/Réseaux sociaux" #: ../../mod/profiles.php:669 msgid "Musical interests" -msgstr "Hudební vkus" +msgstr "Goûts musicaux" #: ../../mod/profiles.php:670 msgid "Books, literature" -msgstr "Knihy, literatura" +msgstr "Lectures" #: ../../mod/profiles.php:671 msgid "Television" -msgstr "Televize" +msgstr "Télévision" #: ../../mod/profiles.php:672 msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" +msgstr "Cinéma/Danse/Culture/Divertissement" #: ../../mod/profiles.php:673 msgid "Love/romance" -msgstr "Láska/romantika" +msgstr "Amour/Romance" #: ../../mod/profiles.php:674 msgid "Work/employment" -msgstr "Práce/zaměstnání" +msgstr "Activité professionnelle/Occupation" #: ../../mod/profiles.php:675 msgid "School/education" -msgstr "Škola/vzdělání" +msgstr "Études/Formation" #: ../../mod/profiles.php:680 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 "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" -msgstr "Upravit / Spravovat profily" +msgstr "Editer/gérer les profils" #: ../../mod/group.php:29 msgid "Group created." -msgstr "Skupina vytvořena." +msgstr "Groupe créé." #: ../../mod/group.php:35 msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." +msgstr "Impossible de créer le groupe." #: ../../mod/group.php:47 ../../mod/group.php:140 msgid "Group not found." -msgstr "Skupina nenalezena." +msgstr "Groupe introuvable." #: ../../mod/group.php:60 msgid "Group name changed." -msgstr "Název skupiny byl změněn." +msgstr "Groupe renommé." #: ../../mod/group.php:87 msgid "Save Group" -msgstr "Uložit Skupinu" +msgstr "Sauvegarder le groupe" #: ../../mod/group.php:93 msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů / přátel." +msgstr "Créez un groupe de contacts/amis." #: ../../mod/group.php:94 ../../mod/group.php:180 msgid "Group Name: " -msgstr "Název skupiny: " +msgstr "Nom du groupe: " #: ../../mod/group.php:113 msgid "Group removed." -msgstr "Skupina odstraněna. " +msgstr "Groupe enlevé." #: ../../mod/group.php:115 msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." +msgstr "Impossible d'enlever le groupe." #: ../../mod/group.php:179 msgid "Group Editor" -msgstr "Editor skupin" +msgstr "Éditeur de groupe" #: ../../mod/group.php:192 msgid "Members" -msgstr "Členové" +msgstr "Membres" #: ../../mod/group.php:224 ../../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í" +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." #: ../../mod/babel.php:17 msgid "Source (bbcode) text:" -msgstr "Zdrojový text (bbcode):" +msgstr "Texte source (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í:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" #: ../../mod/babel.php:31 msgid "Source input: " -msgstr "Zdrojový vstup: " +msgstr "Source input: " #: ../../mod/babel.php:35 msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +msgstr "bb2html (HTML brut)" #: ../../mod/babel.php:39 msgid "bb2html: " @@ -4579,114 +4576,113 @@ msgstr "bb2md2html2bb: " #: ../../mod/babel.php:69 msgid "Source input (Diaspora format): " -msgstr "Vstupní data (ve formátu Diaspora): " +msgstr "Texte source (format Diaspora) :" #: ../../mod/babel.php:74 msgid "diaspora2bb: " -msgstr "diaspora2bb: " +msgstr "diaspora2bb :" #: ../../mod/community.php:23 msgid "Not available." -msgstr "Není k dispozici." +msgstr "Indisponible." #: ../../mod/follow.php:27 msgid "Contact added" -msgstr "Kontakt přidán" +msgstr "Contact ajouté" #: ../../mod/notify.php:61 ../../mod/notifications.php:332 msgid "No more system notifications." -msgstr "Žádné další systémová upozornění." +msgstr "Pas plus de notifications système." #: ../../mod/notify.php:65 ../../mod/notifications.php:336 msgid "System Notifications" -msgstr "Systémová upozornění" +msgstr "Notifications du système" #: ../../mod/message.php:9 ../../include/nav.php:161 msgid "New Message" -msgstr "Nová zpráva" +msgstr "Nouveau message" #: ../../mod/message.php:67 msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." +msgstr "Impossible de localiser les informations du contact." #: ../../mod/message.php:182 ../../mod/notifications.php:103 #: ../../include/nav.php:158 msgid "Messages" -msgstr "Zprávy" +msgstr "Messages" #: ../../mod/message.php:207 msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" +msgstr "Voulez-vous vraiment supprimer ce message ?" #: ../../mod/message.php:227 msgid "Message deleted." -msgstr "Zpráva odstraněna." +msgstr "Message supprimé." #: ../../mod/message.php:258 msgid "Conversation removed." -msgstr "Konverzace odstraněna." +msgstr "Conversation supprimée." #: ../../mod/message.php:371 msgid "No messages." -msgstr "Žádné zprávy." +msgstr "Aucun message." #: ../../mod/message.php:378 #, php-format msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" +msgstr "Émetteur inconnu - %s" #: ../../mod/message.php:381 #, php-format msgid "You and %s" -msgstr "Vy a %s" +msgstr "Vous et %s" #: ../../mod/message.php:384 #, php-format msgid "%s and You" -msgstr "%s a Vy" +msgstr "%s et vous" #: ../../mod/message.php:405 ../../mod/message.php:546 msgid "Delete conversation" -msgstr "Odstranit konverzaci" +msgstr "Effacer conversation" #: ../../mod/message.php:408 msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" +msgstr "D, d M Y - g:i A" #: ../../mod/message.php:411 #, php-format msgid "%d message" msgid_plural "%d messages" -msgstr[0] "%d zpráva" -msgstr[1] "%d zprávy" -msgstr[2] "%d zpráv" +msgstr[0] "%d message" +msgstr[1] "%d messages" #: ../../mod/message.php:450 msgid "Message not available." -msgstr "Zpráva není k dispozici." +msgstr "Message indisponible." #: ../../mod/message.php:520 msgid "Delete message" -msgstr "Smazat zprávu" +msgstr "Effacer message" #: ../../mod/message.php:548 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." +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:552 msgid "Send Reply" -msgstr "Poslat odpověď" +msgstr "Répondre" #: ../../mod/like.php:169 ../../include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nemá rád %2$s na %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" #: ../../mod/oexchange.php:25 msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" +msgstr "Publication réussie." #: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../include/bb2diaspora.php:133 @@ -4695,464 +4691,464 @@ msgstr "l F d, Y \\@ g:i A" #: ../../mod/localtime.php:24 msgid "Time Conversion" -msgstr "Časová konverze" +msgstr "Conversion temporelle" #: ../../mod/localtime.php:26 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách" +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 msgid "UTC time: %s" -msgstr "UTC čas: %s" +msgstr "Temps UTC : %s" #: ../../mod/localtime.php:33 #, php-format msgid "Current timezone: %s" -msgstr "Aktuální časové pásmo: %s" +msgstr "Zone de temps courante : %s" #: ../../mod/localtime.php:36 #, php-format msgid "Converted localtime: %s" -msgstr "Převedený lokální čas : %s" +msgstr "Temps local converti : %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" -msgstr "Prosím, vyberte své časové pásmo:" +msgstr "Sélectionner votre zone :" #: ../../mod/filer.php:30 ../../include/conversation.php:1004 #: ../../include/conversation.php:1022 msgid "Save to Folder:" -msgstr "Uložit do složky:" +msgstr "Sauver dans le Dossier:" #: ../../mod/filer.php:30 msgid "- select -" -msgstr "- vyber -" +msgstr "- choisir -" #: ../../mod/profperm.php:25 ../../mod/profperm.php:55 msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." +msgstr "Identifiant de profil invalide." #: ../../mod/profperm.php:101 msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " +msgstr "Éditer la visibilité du profil" #: ../../mod/profperm.php:114 msgid "Visible To" -msgstr "Viditelný pro" +msgstr "Visible par" #: ../../mod/profperm.php:130 msgid "All Contacts (with secure profile access)" -msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" +msgstr "Tous les contacts (ayant un accès sécurisé)" #: ../../mod/viewcontacts.php:39 msgid "No contacts." -msgstr "Žádné kontakty." +msgstr "Aucun contact." #: ../../mod/viewcontacts.php:76 ../../include/text.php:874 msgid "View Contacts" -msgstr "Zobrazit kontakty" +msgstr "Voir les contacts" #: ../../mod/dirfind.php:26 msgid "People Search" -msgstr "Vyhledávání lidí" +msgstr "Recherche de personnes" #: ../../mod/dirfind.php:60 ../../mod/match.php:65 msgid "No matches" -msgstr "Žádné shody" +msgstr "Aucune correspondance" #: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" +msgstr "Téléverser de nouvelles photos" #: ../../mod/photos.php:144 msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" +msgstr "Informations de contact indisponibles" #: ../../mod/photos.php:165 msgid "Album not found." -msgstr "Album nenalezeno." +msgstr "Album introuvable." #: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 msgid "Delete Album" -msgstr "Smazat album" +msgstr "Effacer l'album" #: ../../mod/photos.php:198 msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" +msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" #: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 msgid "Delete Photo" -msgstr "Smazat fotografii" +msgstr "Effacer la photo" #: ../../mod/photos.php:287 msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" #: ../../mod/photos.php:660 #, php-format msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s byl označen v %2$s uživatelem %3$s" +msgstr "%1$s a été identifié %2$s par %3$s" #: ../../mod/photos.php:660 msgid "a photo" -msgstr "fotografie" +msgstr "une photo" #: ../../mod/photos.php:765 msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" +msgstr "L'image dépasse la taille maximale de " #: ../../mod/photos.php:773 msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." +msgstr "Fichier image vide." #: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" +msgstr "Impossible de traiter l'image." #: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." +msgstr "Le téléversement de l'image a échoué." #: ../../mod/photos.php:928 msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" +msgstr "Aucune photo sélectionnée" #: ../../mod/photos.php:1029 ../../mod/videos.php:226 msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." +msgstr "Accès restreint à cet élément." #: ../../mod/photos.php:1092 #, 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í." +msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." #: ../../mod/photos.php:1127 msgid "Upload Photos" -msgstr "Nahrání fotografií " +msgstr "Téléverser des photos" #: ../../mod/photos.php:1131 ../../mod/photos.php:1199 msgid "New album name: " -msgstr "Název nového alba: " +msgstr "Nom du nouvel album: " #: ../../mod/photos.php:1132 msgid "or existing album name: " -msgstr "nebo stávající název alba: " +msgstr "ou nom d'un album existant: " #: ../../mod/photos.php:1133 msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" +msgstr "Ne pas publier de notice de statut pour cet envoi" #: ../../mod/photos.php:1135 ../../mod/photos.php:1506 msgid "Permissions" -msgstr "Oprávnění:" +msgstr "Permissions" #: ../../mod/photos.php:1146 msgid "Private Photo" -msgstr "Soukromé Fotografie" +msgstr "Photo privée" #: ../../mod/photos.php:1147 msgid "Public Photo" -msgstr "Veřejné Fotografie" +msgstr "Photo publique" #: ../../mod/photos.php:1214 msgid "Edit Album" -msgstr "Edituj album" +msgstr "Éditer l'album" #: ../../mod/photos.php:1220 msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" +msgstr "Plus récent d'abord" #: ../../mod/photos.php:1222 msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" +msgstr "Plus ancien d'abord" #: ../../mod/photos.php:1255 ../../mod/photos.php:1798 msgid "View Photo" -msgstr "Zobraz fotografii" +msgstr "Voir la photo" #: ../../mod/photos.php:1290 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." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." #: ../../mod/photos.php:1292 msgid "Photo not available" -msgstr "Fotografie není k dispozici" +msgstr "Photo indisponible" #: ../../mod/photos.php:1348 msgid "View photo" -msgstr "Zobrazit obrázek" +msgstr "Voir photo" #: ../../mod/photos.php:1348 msgid "Edit photo" -msgstr "Editovat fotografii" +msgstr "Éditer la photo" #: ../../mod/photos.php:1349 msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" +msgstr "Utiliser comme photo de profil" #: ../../mod/photos.php:1374 msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" +msgstr "Voir en taille réelle" #: ../../mod/photos.php:1453 msgid "Tags: " -msgstr "Štítky: " +msgstr "Étiquettes: " #: ../../mod/photos.php:1456 msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" +msgstr "[Retirer toutes les étiquettes]" #: ../../mod/photos.php:1496 msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" #: ../../mod/photos.php:1497 msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" #: ../../mod/photos.php:1499 msgid "New album name" -msgstr "Nové jméno alba" +msgstr "Nom du nouvel album" #: ../../mod/photos.php:1502 msgid "Caption" -msgstr "Titulek" +msgstr "Titre" #: ../../mod/photos.php:1504 msgid "Add a Tag" -msgstr "Přidat štítek" +msgstr "Ajouter une étiquette" #: ../../mod/photos.php:1508 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" #: ../../mod/photos.php:1517 msgid "Private photo" -msgstr "Soukromé fotografie" +msgstr "Photo privée" #: ../../mod/photos.php:1518 msgid "Public photo" -msgstr "Veřejné fotografie" +msgstr "Photo publique" #: ../../mod/photos.php:1540 ../../include/conversation.php:1088 msgid "Share" -msgstr "Sdílet" +msgstr "Partager" #: ../../mod/photos.php:1804 ../../mod/videos.php:308 msgid "View Album" -msgstr "Zobrazit album" +msgstr "Voir l'album" #: ../../mod/photos.php:1813 msgid "Recent Photos" -msgstr "Aktuální fotografie" +msgstr "Photos récentes" #: ../../mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" +msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" #: ../../mod/wall_attach.php:75 msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával jste prázdný soubor?" +msgstr "" #: ../../mod/wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" -msgstr "Velikost souboru přesáhla limit %d" +msgstr "La taille du fichier dépasse la limite de %d" #: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." +msgstr "Le téléversement a échoué." #: ../../mod/videos.php:125 msgid "No videos selected" -msgstr "Není vybráno žádné video" +msgstr "Pas de vidéo sélectionné" #: ../../mod/videos.php:301 ../../include/text.php:1400 msgid "View Video" -msgstr "Zobrazit video" +msgstr "Regarder la vidéo" #: ../../mod/videos.php:317 msgid "Recent Videos" -msgstr "Aktuální Videa" +msgstr "Vidéos récente" #: ../../mod/videos.php:319 msgid "Upload New Videos" -msgstr "Nahrát nová videa" +msgstr "Téléversé une nouvelle vidéo" #: ../../mod/poke.php:192 msgid "Poke/Prod" -msgstr "Šťouchanec" +msgstr "Solliciter" #: ../../mod/poke.php:193 msgid "poke, prod or do other things to somebody" -msgstr "někoho šťouchnout nebo mu provést jinou věc" +msgstr "solliciter (poke/...) quelqu'un" #: ../../mod/poke.php:194 msgid "Recipient" -msgstr "Příjemce" +msgstr "Destinataire" #: ../../mod/poke.php:195 msgid "Choose what you wish to do to recipient" -msgstr "Vyberte, co si přejete příjemci udělat" +msgstr "Choisissez ce que vous voulez faire au destinataire" #: ../../mod/poke.php:198 msgid "Make this post private" -msgstr "Změnit tento příspěvek na soukromý" +msgstr "Rendez ce message privé" #: ../../mod/subthread.php:103 #, php-format msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s následuje %3$s uživatele %2$s" +msgstr "%1$s suit les %3$s de %2$s" #: ../../mod/uexport.php:77 msgid "Export account" -msgstr "Exportovat účet" +msgstr "Exporter le compte" #: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." -msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." +msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." #: ../../mod/uexport.php:78 msgid "Export all" -msgstr "Exportovat vše" +msgstr "Tout exporter" #: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" -msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" +msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." #: ../../mod/common.php:42 msgid "Common Friends" -msgstr "Společní přátelé" +msgstr "Amis communs" #: ../../mod/common.php:78 msgid "No contacts in common." -msgstr "Žádné společné kontakty." +msgstr "Pas de contacts en commun." #: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 #, php-format msgid "Image exceeds size limit of %d" -msgstr "Obrázek překročil limit velikosti %d" +msgstr "L'image dépasse la taille limite de %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 #: ../../mod/wall_upload.php:151 ../../mod/item.php:455 #: ../../include/message.php:144 msgid "Wall Photos" -msgstr "Fotografie na zdi" +msgstr "Photos du mur" #: ../../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." +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 "Nepodařilo se snížit velikost obrázku [%s]." +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 "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." +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 "Obrázek nelze zpracovat " +msgstr "Impossible de traiter l'image" #: ../../mod/profile_photo.php:242 msgid "Upload File:" -msgstr "Nahrát soubor:" +msgstr "Fichier à téléverser:" #: ../../mod/profile_photo.php:243 msgid "Select a profile:" -msgstr "Vybrat profil:" +msgstr "Choisir un profil:" #: ../../mod/profile_photo.php:245 msgid "Upload" -msgstr "Nahrát" +msgstr "Téléverser" #: ../../mod/profile_photo.php:248 msgid "skip this step" -msgstr "přeskočit tento krok " +msgstr "ignorer cette étape" #: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" -msgstr "Vybrat fotografii z Vašich fotoalb" +msgstr "choisissez une photo depuis vos albums" #: ../../mod/profile_photo.php:262 msgid "Crop Image" -msgstr "Oříznout obrázek" +msgstr "(Re)cadrer l'image" #: ../../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í." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." #: ../../mod/profile_photo.php:265 msgid "Done Editing" -msgstr "Editace dokončena" +msgstr "Édition terminée" #: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." -msgstr "Obrázek byl úspěšně nahrán." +msgstr "Image téléversée avec succès." #: ../../mod/apps.php:11 msgid "Applications" -msgstr "Aplikace" +msgstr "Applications" #: ../../mod/apps.php:14 msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." +msgstr "Pas d'application installée." #: ../../mod/navigation.php:20 ../../include/nav.php:34 msgid "Nothing new here" -msgstr "Zde není nic nového" +msgstr "Rien de neuf ici" #: ../../mod/navigation.php:24 ../../include/nav.php:38 msgid "Clear notifications" -msgstr "Smazat notifikace" +msgstr "Effacer les notifications" #: ../../mod/match.php:12 msgid "Profile Match" -msgstr "Shoda profilu" +msgstr "Correpondance de profils" #: ../../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 "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 "zajímá se o:" +msgstr "s'intéresse à:" #: ../../mod/tagrm.php:41 msgid "Tag removed" -msgstr "Štítek odstraněn" +msgstr "Étiquette enlevée" #: ../../mod/tagrm.php:79 msgid "Remove Item Tag" -msgstr "Odebrat štítek položky" +msgstr "Enlever l'étiquette de l'élément" #: ../../mod/tagrm.php:81 msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání: " +msgstr "Choisir une étiquette à enlever: " #: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 msgid "Remove" -msgstr "Odstranit" +msgstr "Utiliser comme photo de profil" #: ../../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." +msgstr "Vous devez donner un nom et un horaire de début à l'événement." #: ../../mod/events.php:291 msgid "l, F j" @@ -5160,414 +5156,413 @@ msgstr "l, F j" #: ../../mod/events.php:313 msgid "Edit event" -msgstr "Editovat událost" +msgstr "Editer l'événement" #: ../../mod/events.php:335 ../../include/text.php:1633 #: ../../include/text.php:1644 msgid "link to source" -msgstr "odkaz na zdroj" +msgstr "lien original" #: ../../mod/events.php:371 msgid "Create New Event" -msgstr "Vytvořit novou událost" +msgstr "Créer un nouvel événement" #: ../../mod/events.php:372 msgid "Previous" -msgstr "Předchozí" +msgstr "Précédent" #: ../../mod/events.php:446 msgid "hour:minute" -msgstr "hodina:minuta" +msgstr "heures:minutes" #: ../../mod/events.php:456 msgid "Event details" -msgstr "Detaily události" +msgstr "Détails de l'événement" #: ../../mod/events.php:457 #, php-format 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." +msgstr "Le format est %s %s. La date de début et le nom sont nécessaires." #: ../../mod/events.php:459 msgid "Event Starts:" -msgstr "Událost začíná:" +msgstr "Début de l'événement:" #: ../../mod/events.php:459 ../../mod/events.php:473 msgid "Required" -msgstr "Vyžadováno" +msgstr "Requis" #: ../../mod/events.php:462 msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" +msgstr "Date/heure de fin inconnue ou sans objet" #: ../../mod/events.php:464 msgid "Event Finishes:" -msgstr "Akce končí:" +msgstr "Fin de l'événement:" #: ../../mod/events.php:467 msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" +msgstr "Ajuster à la zone horaire du visiteur" #: ../../mod/events.php:469 msgid "Description:" -msgstr "Popis:" +msgstr "Description:" #: ../../mod/events.php:473 msgid "Title:" -msgstr "Název:" +msgstr "Titre :" #: ../../mod/events.php:475 msgid "Share this event" -msgstr "Sdílet tuto událost" +msgstr "Partager cet événement" #: ../../mod/delegate.php:95 msgid "No potential page delegates located." -msgstr "Žádní potenciální delegáti stránky nenalezeni." +msgstr "Pas de délégataire potentiel." #: ../../mod/delegate.php:124 ../../include/nav.php:167 msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" +msgstr "Déléguer la gestion de la page" #: ../../mod/delegate.php:126 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." -msgstr "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.." +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:127 msgid "Existing Page Managers" -msgstr "Stávající správci stránky" +msgstr "Gestionnaires existants" #: ../../mod/delegate.php:129 msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " +msgstr "Délégataires existants" #: ../../mod/delegate.php:131 msgid "Potential Delegates" -msgstr "Potenciální delegáti" +msgstr "Délégataires potentiels" #: ../../mod/delegate.php:134 msgid "Add" -msgstr "Přidat" +msgstr "Ajouter" #: ../../mod/delegate.php:135 msgid "No entries." -msgstr "Žádné záznamy." +msgstr "Aucune entrée." #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" -msgstr "Kontakty, které nejsou členy skupiny" +msgstr "Contacts qui n’appartiennent à aucun groupe" #: ../../mod/fbrowser.php:113 msgid "Files" -msgstr "Soubory" +msgstr "Fichiers" #: ../../mod/maintenance.php:5 msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" +msgstr "Système indisponible pour cause de maintenance" #: ../../mod/removeme.php:46 ../../mod/removeme.php:49 msgid "Remove My Account" -msgstr "Odstranit můj účet" +msgstr "Supprimer mon compte" #: ../../mod/removeme.php:47 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 "Ceci supprimera totalement votre compte. Cette opération est irréversible." #: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" +msgstr "Merci de saisir votre mot de passe pour vérification:" #: ../../mod/fsuggest.php:63 msgid "Friend suggestion sent." -msgstr "Návrhy přátelství odeslány " +msgstr "Suggestion d'amitié/contact envoyée." #: ../../mod/fsuggest.php:97 msgid "Suggest Friends" -msgstr "Navrhněte přátelé" +msgstr "Suggérer des amis/contacts" #: ../../mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" -msgstr "Navrhněte přátelé pro uživatele %s" +msgstr "Suggérer un ami/contact pour %s" #: ../../mod/item.php:110 msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." +msgstr "Impossible de localiser l'article original." #: ../../mod/item.php:319 msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." +msgstr "Article vide défaussé." #: ../../mod/item.php:891 msgid "System error. Post not saved." -msgstr "Chyba systému. Příspěvek nebyl uložen." +msgstr "Erreur système. Publication non sauvée." #: ../../mod/item.php:917 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." -msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." +msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." #: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" -msgstr "Můžete je navštívit online na adrese %s" +msgstr "Vous pouvez leur rendre visite sur %s" #: ../../mod/item.php:920 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 "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." #: ../../mod/item.php:924 #, php-format msgid "%s posted an update." -msgstr "%s poslal aktualizaci." +msgstr "%s a publié une mise à jour." #: ../../mod/ping.php:238 msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" +msgstr "{0} souhaite être votre ami(e)" #: ../../mod/ping.php:243 msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" +msgstr "{0} vous a envoyé un message" #: ../../mod/ping.php:248 msgid "{0} requested registration" -msgstr "{0} požaduje registraci" +msgstr "{0} a demandé à s'inscrire" #: ../../mod/ping.php:254 #, php-format msgid "{0} commented %s's post" -msgstr "{0} komentoval příspěvek uživatele %s" +msgstr "{0} a commenté une notice de %s" #: ../../mod/ping.php:259 #, php-format msgid "{0} liked %s's post" -msgstr "{0} má rád příspěvek uživatele %s" +msgstr "{0} a aimé une notice de %s" #: ../../mod/ping.php:264 #, php-format msgid "{0} disliked %s's post" -msgstr "{0} nemá rád příspěvek uživatele %s" +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} se skamarádil s %s" +msgstr "{0} est désormais ami(e) avec %s" #: ../../mod/ping.php:274 msgid "{0} posted" -msgstr "{0} zasláno" +msgstr "{0} a posté" #: ../../mod/ping.php:279 #, php-format msgid "{0} tagged %s's post with #%s" -msgstr "{0} označen %s' příspěvek s #%s" +msgstr "{0} a taggué la notice de %s avec #%s" #: ../../mod/ping.php:285 msgid "{0} mentioned you in a post" -msgstr "{0} vás zmínil v příspěvku" +msgstr "{0} vous a mentionné dans une publication" #: ../../mod/openid.php:24 msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." +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 "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." +msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." #: ../../mod/openid.php:93 ../../include/auth.php:112 #: ../../include/auth.php:175 msgid "Login failed." -msgstr "Přihlášení se nezdařilo." +msgstr "Échec de connexion." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." +msgstr "Identifiant de demande invalide." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 #: ../../mod/notifications.php:211 msgid "Discard" -msgstr "Odstranit" +msgstr "Rejeter" #: ../../mod/notifications.php:78 msgid "System" -msgstr "Systém" +msgstr "Système" #: ../../mod/notifications.php:83 ../../include/nav.php:142 msgid "Network" -msgstr "Síť" +msgstr "Réseau" #: ../../mod/notifications.php:98 ../../include/nav.php:151 msgid "Introductions" -msgstr "Představení" +msgstr "Introductions" #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované žádosti" +msgstr "Voir les demandes ignorées" #: ../../mod/notifications.php:122 msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované žádosti" +msgstr "Cacher les demandes ignorées" #: ../../mod/notifications.php:149 ../../mod/notifications.php:195 msgid "Notification type: " -msgstr "Typ oznámení: " +msgstr "Type de notification: " #: ../../mod/notifications.php:150 msgid "Friend Suggestion" -msgstr "Návrh přátelství" +msgstr "Suggestion d'amitié/contact" #: ../../mod/notifications.php:152 #, php-format msgid "suggested by %s" -msgstr "navrhl %s" +msgstr "suggéré(e) par %s" #: ../../mod/notifications.php:158 ../../mod/notifications.php:205 msgid "Post a new friend activity" -msgstr "Zveřejnit aktivitu nového přítele." +msgstr "Poster concernant les nouvelles amitiés" #: ../../mod/notifications.php:158 ../../mod/notifications.php:205 msgid "if applicable" -msgstr "je-li použitelné" +msgstr "si possible" #: ../../mod/notifications.php:181 msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " +msgstr "Prétend que vous le connaissez: " #: ../../mod/notifications.php:181 msgid "yes" -msgstr "ano" +msgstr "oui" #: ../../mod/notifications.php:181 msgid "no" -msgstr "ne" +msgstr "non" #: ../../mod/notifications.php:188 msgid "Approve as: " -msgstr "Schválit jako: " +msgstr "Approuver en tant que: " #: ../../mod/notifications.php:189 msgid "Friend" -msgstr "Přítel" +msgstr "Ami" #: ../../mod/notifications.php:190 msgid "Sharer" -msgstr "Sdílené" +msgstr "Initiateur du partage" #: ../../mod/notifications.php:190 msgid "Fan/Admirer" -msgstr "Fanoušek / obdivovatel" +msgstr "Fan/Admirateur" #: ../../mod/notifications.php:196 msgid "Friend/Connect Request" -msgstr "Přítel / žádost o připojení" +msgstr "Demande de connexion/relation" #: ../../mod/notifications.php:196 msgid "New Follower" -msgstr "Nový následovník" +msgstr "Nouvel abonné" #: ../../mod/notifications.php:217 msgid "No introductions." -msgstr "Žádné představení." +msgstr "Aucune demande d'introduction." #: ../../mod/notifications.php:220 ../../include/nav.php:152 msgid "Notifications" -msgstr "Upozornění" +msgstr "Notifications" #: ../../mod/notifications.php:257 ../../mod/notifications.php:382 #: ../../mod/notifications.php:469 #, php-format msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %s" +msgstr "%s a aimé le billet de %s" #: ../../mod/notifications.php:266 ../../mod/notifications.php:391 #: ../../mod/notifications.php:478 #, php-format msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" +msgstr "%s n'a pas aimé le billet de %s" #: ../../mod/notifications.php:280 ../../mod/notifications.php:405 #: ../../mod/notifications.php:492 #, php-format msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s %s" +msgstr "%s est désormais ami(e) avec %s" #: ../../mod/notifications.php:287 ../../mod/notifications.php:412 #, php-format msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" +msgstr "%s a publié un billet" #: ../../mod/notifications.php:288 ../../mod/notifications.php:413 #: ../../mod/notifications.php:501 #, php-format msgid "%s commented on %s's post" -msgstr "%s okomentoval příspěvek uživatele %s'" +msgstr "%s a commenté le billet de %s" #: ../../mod/notifications.php:302 msgid "No more network notifications." -msgstr "Žádné další síťové upozornění." +msgstr "Aucune notification du réseau." #: ../../mod/notifications.php:306 msgid "Network Notifications" -msgstr "Upozornění Sítě" +msgstr "Notifications du réseau" #: ../../mod/notifications.php:427 msgid "No more personal notifications." -msgstr "Žádné další osobní upozornění." +msgstr "Aucun notification personnelle." #: ../../mod/notifications.php:431 msgid "Personal Notifications" -msgstr "Osobní upozornění" +msgstr "Notifications personnelles" #: ../../mod/notifications.php:508 msgid "No more home notifications." -msgstr "Žádné další domácí upozornění." +msgstr "Aucune notification de la page d'accueil." #: ../../mod/notifications.php:512 msgid "Home Notifications" -msgstr "Domácí upozornění" +msgstr "Notifications de page d'accueil" #: ../../mod/invite.php:27 msgid "Total invitation limit exceeded." -msgstr "Celkový limit pozvánek byl překročen" +msgstr "La limite d'invitation totale est éxédée." #: ../../mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." -msgstr "%s : není platná e-mailová adresa." +msgstr "%s : Adresse de courriel invalide." #: ../../mod/invite.php:73 msgid "Please join us on Friendica" -msgstr "Prosím přidejte se k nám na Friendice" +msgstr "Rejoignez-nous sur Friendica" #: ../../mod/invite.php:84 msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." +msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." #: ../../mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." -msgstr "%s : Doručení zprávy se nezdařilo." +msgstr "%s : L'envoi du message a échoué." #: ../../mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." -msgstr[0] "%d zpráva odeslána." -msgstr[1] "%d zprávy odeslány." -msgstr[2] "%d zprávy odeslány." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." #: ../../mod/invite.php:112 msgid "You have no more invitations available" -msgstr "Nemáte k dispozici žádné další pozvánky" +msgstr "Vous n'avez plus d'invitations disponibles" #: ../../mod/invite.php:120 #, php-format @@ -5575,14 +5570,14 @@ 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í." +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:122 #, php-format 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." +msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." #: ../../mod/invite.php:123 #, php-format @@ -5591,727 +5586,724 @@ msgid "" "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." +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:126 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." +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:132 msgid "Send invitations" -msgstr "Poslat pozvánky" +msgstr "Envoyer des invitations" #: ../../mod/invite.php:133 msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" +msgstr "Entrez les adresses email, une par ligne:" #: ../../mod/invite.php:135 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." -msgstr "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íť." +msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." #: ../../mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" -msgstr "Budete muset zadat kód této pozvánky: $invite_code" +msgstr "Vous devrez fournir ce code d'invitation: $invite_code" #: ../../mod/invite.php:137 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 "Une fois inscrit, connectez-vous à la page de mon profil sur:" #: ../../mod/invite.php:139 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" -msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte 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/manage.php:106 msgid "Manage Identities and/or Pages" -msgstr "Správa identit a / nebo stránek" +msgstr "Gérer les identités et/ou les pages" #: ../../mod/manage.php:107 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" -msgstr "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." +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:108 msgid "Select an identity to manage: " -msgstr "Vyberte identitu pro správu: " +msgstr "Choisir une identité à gérer: " #: ../../mod/home.php:34 #, php-format msgid "Welcome to %s" -msgstr "Vítá Vás %s" +msgstr "Bienvenue sur %s" #: ../../mod/allfriends.php:34 #, php-format msgid "Friends of %s" -msgstr "Přátelé uživatele %s" +msgstr "Amis de %s" #: ../../mod/allfriends.php:40 msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" +msgstr "Pas d'amis à afficher." #: ../../include/contact_widgets.php:6 msgid "Add New Contact" -msgstr "Přidat nový kontakt" +msgstr "Ajouter un nouveau contact" #: ../../include/contact_widgets.php:7 msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" +msgstr "Entrez son adresse ou sa localisation web" #: ../../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" +msgstr "Exemple: bob@example.com, http://example.com/barbara" #: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" -msgstr[0] "Pozvánka %d k dispozici" -msgstr[1] "Pozvánky %d k dispozici" -msgstr[2] "Pozvánky %d k dispozici" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" #: ../../include/contact_widgets.php:29 msgid "Find People" -msgstr "Nalézt lidi" +msgstr "Trouver des personnes" #: ../../include/contact_widgets.php:30 msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" +msgstr "Entrez un nom ou un centre d'intérêt" #: ../../include/contact_widgets.php:31 msgid "Connect/Follow" -msgstr "Připojit / Následovat" +msgstr "Connecter/Suivre" #: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Robert Morgenstein, rybaření" +msgstr "Exemples: Robert Morgenstein, Pêche" #: ../../include/contact_widgets.php:36 msgid "Random Profile" -msgstr "Náhodný Profil" +msgstr "Profil au hasard" #: ../../include/contact_widgets.php:70 msgid "Networks" -msgstr "Sítě" +msgstr "Réseaux" #: ../../include/contact_widgets.php:73 msgid "All Networks" -msgstr "Všechny sítě" +msgstr "Tous réseaux" #: ../../include/contact_widgets.php:103 ../../include/features.php:60 msgid "Saved Folders" -msgstr "Uložené složky" +msgstr "Dossiers sauvegardés" #: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 msgid "Everything" -msgstr "Všechno" +msgstr "Tout" #: ../../include/contact_widgets.php:135 msgid "Categories" -msgstr "Kategorie" +msgstr "Catégories" #: ../../include/plugin.php:455 ../../include/plugin.php:457 msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." +msgstr "Cliquez ici pour mettre à jour." #: ../../include/plugin.php:463 msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tato akce překročí limit nastavené Vaším předplatným." +msgstr "Cette action dépasse les limites définies par votre abonnement." #: ../../include/plugin.php:468 msgid "This action is not available under your subscription plan." -msgstr "Tato akce není v rámci Vašeho předplatného dostupná." +msgstr "Cette action n'est pas disponible avec votre abonnement." #: ../../include/api.php:263 ../../include/api.php:274 #: ../../include/api.php:375 msgid "User not found." -msgstr "Uživatel nenalezen" +msgstr "Utilisateur non trouvé" #: ../../include/api.php:1123 msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." +msgstr "Il n'y a pas de statut avec cet id." #: ../../include/api.php:1193 msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." +msgstr "Il n'y a pas de conversation avec cet id." #: ../../include/network.php:886 msgid "view full size" -msgstr "zobrazit v plné velikosti" +msgstr "voir en pleine taille" #: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" -msgstr "Začíná:" +msgstr "Débute:" #: ../../include/event.php:30 ../../include/bb2diaspora.php:147 msgid "Finishes:" -msgstr "Končí:" +msgstr "Finit:" #: ../../include/dba_pdo.php:72 ../../include/dba.php:51 #, php-format msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" +msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" #: ../../include/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" -msgstr "(Bez předmětu)" +msgstr "(sans titre)" #: ../../include/notifier.php:784 ../../include/enotify.php:28 #: ../../include/delivery.php:467 msgid "noreply" -msgstr "neodpovídat" +msgstr "noreply" #: ../../include/user.php:39 msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." +msgstr "Une invitation est requise." #: ../../include/user.php:44 msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." +msgstr "L'invitation fournie n'a pu être validée." #: ../../include/user.php:52 msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" +msgstr "Adresse OpenID invalide" #: ../../include/user.php:66 ../../include/auth.php:128 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." -msgstr "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ě. " +msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." #: ../../include/user.php:66 ../../include/auth.php:128 msgid "The error message was:" -msgstr "Chybová zpráva byla:" +msgstr "Le message d'erreur était :" #: ../../include/user.php:73 msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." +msgstr "Entrez les informations requises." #: ../../include/user.php:87 msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." +msgstr "Utilisez un nom plus court." #: ../../include/user.php:89 msgid "Name too short." -msgstr "Jméno je příliš krátké." +msgstr "Nom trop court." #: ../../include/user.php:104 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í)." +msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." #: ../../include/user.php:109 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." +msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." #: ../../include/user.php:112 msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." +msgstr "Ceci n'est pas une adresse courriel valide." #: ../../include/user.php:125 msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." +msgstr "Impossible d'utiliser ce courriel." #: ../../include/user.php:131 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." +msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." #: ../../include/user.php:137 ../../include/user.php:235 msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." +msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." #: ../../include/user.php:147 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." +msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." #: ../../include/user.php:163 msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." +msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." #: ../../include/user.php:221 msgid "An error occurred during registration. Please try again." -msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." +msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." #: ../../include/user.php:256 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." +msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." #: ../../include/user.php:288 ../../include/user.php:292 #: ../../include/profile_selectors.php:42 msgid "Friends" -msgstr "Přátelé" +msgstr "Amis" #: ../../include/conversation.php:207 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" +msgstr "%1$s a sollicité %2$s" #: ../../include/conversation.php:211 ../../include/text.php:1003 msgid "poked" -msgstr "šťouchnut" +msgstr "a titillé" #: ../../include/conversation.php:291 msgid "post/item" -msgstr "příspěvek/položka" +msgstr "publication/élément" #: ../../include/conversation.php:292 #, 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" +msgstr "%1$s a marqué le %3$s de %2$s comme favori" #: ../../include/conversation.php:770 msgid "remove" -msgstr "odstranit" +msgstr "enlever" #: ../../include/conversation.php:774 msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" +msgstr "Supprimer les éléments sélectionnés" #: ../../include/conversation.php:873 msgid "Follow Thread" -msgstr "Následovat vlákno" +msgstr "Suivre le fil" #: ../../include/conversation.php:874 ../../include/Contact.php:229 msgid "View Status" -msgstr "Zobrazit Status" +msgstr "Voir les statuts" #: ../../include/conversation.php:875 ../../include/Contact.php:230 msgid "View Profile" -msgstr "Zobrazit Profil" +msgstr "Voir le profil" #: ../../include/conversation.php:876 ../../include/Contact.php:231 msgid "View Photos" -msgstr "Zobrazit Fotky" +msgstr "Voir les photos" #: ../../include/conversation.php:877 ../../include/Contact.php:232 #: ../../include/Contact.php:255 msgid "Network Posts" -msgstr "Zobrazit Příspěvky sítě" +msgstr "Posts du Réseau" #: ../../include/conversation.php:878 ../../include/Contact.php:233 #: ../../include/Contact.php:255 msgid "Edit Contact" -msgstr "Editovat Kontakty" +msgstr "Éditer le contact" #: ../../include/conversation.php:879 ../../include/Contact.php:235 #: ../../include/Contact.php:255 msgid "Send PM" -msgstr "Poslat soukromou zprávu" +msgstr "Message privé" #: ../../include/conversation.php:880 ../../include/Contact.php:228 msgid "Poke" -msgstr "Šťouchnout" +msgstr "Sollicitations (pokes)" #: ../../include/conversation.php:942 #, php-format msgid "%s likes this." -msgstr "%s se to líbí." +msgstr "%s aime ça." #: ../../include/conversation.php:942 #, php-format msgid "%s doesn't like this." -msgstr "%s se to nelíbí." +msgstr "%s n'aime pas ça." #: ../../include/conversation.php:947 #, php-format msgid "%2$d people like this" -msgstr "%2$d lidem se to líbí" +msgstr "%2$d personnes aiment ça" #: ../../include/conversation.php:950 #, php-format msgid "%2$d people don't like this" -msgstr "%2$d lidem se to nelíbí" +msgstr "%2$d personnes n'aiment pas ça" #: ../../include/conversation.php:964 msgid "and" -msgstr "a" +msgstr "et" #: ../../include/conversation.php:970 #, php-format msgid ", and %d other people" -msgstr ", a %d dalších lidí" +msgstr ", et %d autres personnes" #: ../../include/conversation.php:972 #, php-format msgid "%s like this." -msgstr "%s se to líbí." +msgstr "%s aiment ça." #: ../../include/conversation.php:972 #, php-format msgid "%s don't like this." -msgstr "%s se to nelíbí." +msgstr "%s n'aiment pas ça." #: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Visible to everybody" -msgstr "Viditelné pro všechny" +msgstr "Visible par tout le monde" #: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Please enter a video link/URL:" -msgstr "Prosím zadejte URL adresu videa:" +msgstr "Entrez un lien/URL video :" #: ../../include/conversation.php:1002 ../../include/conversation.php:1020 msgid "Please enter an audio link/URL:" -msgstr "Prosím zadejte URL adresu zvukového záznamu:" +msgstr "Entrez un lien/URL audio :" #: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Tag term:" -msgstr "Štítek:" +msgstr "Tag : " #: ../../include/conversation.php:1005 ../../include/conversation.php:1023 msgid "Where are you right now?" -msgstr "Kde právě jste?" +msgstr "Où êtes-vous présentemment?" #: ../../include/conversation.php:1006 msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" +msgstr "Supprimer les élément(s) ?" #: ../../include/conversation.php:1049 msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" +msgstr "Publier aussi par courriel" #: ../../include/conversation.php:1054 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." +msgstr "" #: ../../include/conversation.php:1109 msgid "permissions" -msgstr "oprávnění" +msgstr "permissions" #: ../../include/conversation.php:1133 msgid "Post to Groups" -msgstr "Zveřejnit na Groups" +msgstr "" #: ../../include/conversation.php:1134 msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" +msgstr "" #: ../../include/conversation.php:1135 msgid "Private post" -msgstr "Soukromý příspěvek" +msgstr "Message privé" #: ../../include/auth.php:38 msgid "Logged out." -msgstr "Odhlášen." +msgstr "Déconnecté." #: ../../include/uimport.php:94 msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" +msgstr "" #: ../../include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" +msgstr "" #: ../../include/uimport.php:116 ../../include/uimport.php:127 msgid "Error! Cannot check nickname" -msgstr "Chyba! Nelze ověřit přezdívku" +msgstr "Erreur! Pseudo invalide" #: ../../include/uimport.php:120 ../../include/uimport.php:131 #, php-format msgid "User '%s' already exists on this server!" -msgstr "Uživatel '%s' již na tomto serveru existuje!" +msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" #: ../../include/uimport.php:153 msgid "User creation error" -msgstr "Chyba vytváření uživatele" +msgstr "Erreur de création d'utilisateur" #: ../../include/uimport.php:171 msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského účtu" +msgstr "Erreur de création du profil utilisateur" #: ../../include/uimport.php:220 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt nenaimporován" -msgstr[1] "%d kontaktů nenaimporováno" -msgstr[2] "%d kontakty nenaimporovány" +msgstr[0] "%d contacts non importés" +msgstr[1] "%d contacts non importés" #: ../../include/uimport.php:290 msgid "Done. You can now login with your username and password" -msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" +msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" #: ../../include/text.php:296 msgid "newer" -msgstr "novější" +msgstr "Plus récent" #: ../../include/text.php:298 msgid "older" -msgstr "starší" +msgstr "Plus ancien" #: ../../include/text.php:303 msgid "prev" -msgstr "předchozí" +msgstr "précédent" #: ../../include/text.php:305 msgid "first" -msgstr "první" +msgstr "premier" #: ../../include/text.php:337 msgid "last" -msgstr "poslední" +msgstr "dernier" #: ../../include/text.php:340 msgid "next" -msgstr "další" +msgstr "suivant" #: ../../include/text.php:853 msgid "No contacts" -msgstr "Žádné kontakty" +msgstr "Aucun contact" #: ../../include/text.php:862 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktů" -msgstr[2] "%d kontaktů" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" #: ../../include/text.php:1003 msgid "poke" -msgstr "šťouchnout" +msgstr "titiller" #: ../../include/text.php:1004 msgid "ping" -msgstr "cinknout" +msgstr "attirer l'attention" #: ../../include/text.php:1004 msgid "pinged" -msgstr "cinkut" +msgstr "a attiré l'attention de" #: ../../include/text.php:1005 msgid "prod" -msgstr "pobídnout" +msgstr "aiguillonner" #: ../../include/text.php:1005 msgid "prodded" -msgstr "pobídnut" +msgstr "a aiguillonné" #: ../../include/text.php:1006 msgid "slap" -msgstr "dát facku" +msgstr "gifler" #: ../../include/text.php:1006 msgid "slapped" -msgstr "být uhozen" +msgstr "a giflé" #: ../../include/text.php:1007 msgid "finger" -msgstr "osahávat" +msgstr "tripoter" #: ../../include/text.php:1007 msgid "fingered" -msgstr "osaháván" +msgstr "a tripoté" #: ../../include/text.php:1008 msgid "rebuff" -msgstr "odmítnout" +msgstr "rabrouer" #: ../../include/text.php:1008 msgid "rebuffed" -msgstr "odmítnut" +msgstr "a rabroué" #: ../../include/text.php:1022 msgid "happy" -msgstr "šťasný" +msgstr "heureuse" #: ../../include/text.php:1023 msgid "sad" -msgstr "smutný" +msgstr "triste" #: ../../include/text.php:1024 msgid "mellow" -msgstr "jemný" +msgstr "suave" #: ../../include/text.php:1025 msgid "tired" -msgstr "unavený" +msgstr "fatiguée" #: ../../include/text.php:1026 msgid "perky" -msgstr "emergický" +msgstr "guillerette" #: ../../include/text.php:1027 msgid "angry" -msgstr "nazlobený" +msgstr "colérique" #: ../../include/text.php:1028 msgid "stupified" -msgstr "otupen" +msgstr "stupéfaite" #: ../../include/text.php:1029 msgid "puzzled" -msgstr "popletený" +msgstr "perplexe" #: ../../include/text.php:1030 msgid "interested" -msgstr "zajímavý" +msgstr "intéressée" #: ../../include/text.php:1031 msgid "bitter" -msgstr "hořký" +msgstr "amère" #: ../../include/text.php:1032 msgid "cheerful" -msgstr "radnostný" +msgstr "entraînante" #: ../../include/text.php:1033 msgid "alive" -msgstr "naživu" +msgstr "vivante" #: ../../include/text.php:1034 msgid "annoyed" -msgstr "otráven" +msgstr "ennuyée" #: ../../include/text.php:1035 msgid "anxious" -msgstr "znepokojený" +msgstr "anxieuse" #: ../../include/text.php:1036 msgid "cranky" -msgstr "mrzutý" +msgstr "excentrique" #: ../../include/text.php:1037 msgid "disturbed" -msgstr "vyrušen" +msgstr "dérangée" #: ../../include/text.php:1038 msgid "frustrated" -msgstr "frustrovaný" +msgstr "frustrée" #: ../../include/text.php:1039 msgid "motivated" -msgstr "motivovaný" +msgstr "motivée" #: ../../include/text.php:1040 msgid "relaxed" -msgstr "uvolněný" +msgstr "détendue" #: ../../include/text.php:1041 msgid "surprised" -msgstr "překvapený" +msgstr "surprise" #: ../../include/text.php:1209 msgid "Monday" -msgstr "Pondělí" +msgstr "Lundi" #: ../../include/text.php:1209 msgid "Tuesday" -msgstr "Úterý" +msgstr "Mardi" #: ../../include/text.php:1209 msgid "Wednesday" -msgstr "Středa" +msgstr "Mercredi" #: ../../include/text.php:1209 msgid "Thursday" -msgstr "Čtvrtek" +msgstr "Jeudi" #: ../../include/text.php:1209 msgid "Friday" -msgstr "Pátek" +msgstr "Vendredi" #: ../../include/text.php:1209 msgid "Saturday" -msgstr "Sobota" +msgstr "Samedi" #: ../../include/text.php:1209 msgid "Sunday" -msgstr "Neděle" +msgstr "Dimanche" #: ../../include/text.php:1213 msgid "January" -msgstr "Ledna" +msgstr "Janvier" #: ../../include/text.php:1213 msgid "February" -msgstr "Února" +msgstr "Février" #: ../../include/text.php:1213 msgid "March" -msgstr "Března" +msgstr "Mars" #: ../../include/text.php:1213 msgid "April" -msgstr "Dubna" +msgstr "Avril" #: ../../include/text.php:1213 msgid "May" -msgstr "Května" +msgstr "Mai" #: ../../include/text.php:1213 msgid "June" -msgstr "Června" +msgstr "Juin" #: ../../include/text.php:1213 msgid "July" -msgstr "Července" +msgstr "Juillet" #: ../../include/text.php:1213 msgid "August" -msgstr "Srpna" +msgstr "Août" #: ../../include/text.php:1213 msgid "September" -msgstr "Září" +msgstr "Septembre" #: ../../include/text.php:1213 msgid "October" -msgstr "Října" +msgstr "Octobre" #: ../../include/text.php:1213 msgid "November" -msgstr "Listopadu" +msgstr "Novembre" #: ../../include/text.php:1213 msgid "December" -msgstr "Prosinec" +msgstr "Décembre" #: ../../include/text.php:1432 msgid "bytes" -msgstr "bytů" +msgstr "octets" #: ../../include/text.php:1456 ../../include/text.php:1468 msgid "Click to open/close" -msgstr "Klikněte pro otevření/zavření" +msgstr "Cliquer pour ouvrir/fermer" #: ../../include/text.php:1701 msgid "Select an alternate language" -msgstr "Vyběr alternativního jazyka" +msgstr "Choisir une langue alternative" #: ../../include/text.php:1957 msgid "activity" -msgstr "aktivita" +msgstr "activité" #: ../../include/text.php:1960 msgid "post" -msgstr "příspěvek" +msgstr "publication" #: ../../include/text.php:2128 msgid "Item filed" -msgstr "Položka vyplněna" +msgstr "Élément classé" #: ../../include/enotify.php:16 msgid "Friendica Notification" -msgstr "Friendica Notifikace" +msgstr "Notification Friendica" #: ../../include/enotify.php:19 msgid "Thank You," -msgstr "Děkujeme, " +msgstr "Merci, " #: ../../include/enotify.php:21 #, php-format msgid "%s Administrator" -msgstr "%s Administrátor" +msgstr "L'administrateur de %s" #: ../../include/enotify.php:40 #, php-format @@ -6321,399 +6313,399 @@ 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" +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 Vám poslal novou soukromou zprávu na %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 Vám poslal %2$s." +msgstr "%1$s vous a envoyé %2$s." #: ../../include/enotify.php:47 msgid "a private message" -msgstr "soukromá zpráva" +msgstr "un message privé" #: ../../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." +msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." #: ../../include/enotify.php:91 #, 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]" +msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" #: ../../include/enotify.php:98 #, 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]" +msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" #: ../../include/enotify.php:106 #, 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]" +msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" #: ../../include/enotify.php:116 #, 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" +msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" #: ../../include/enotify.php:117 #, php-format msgid "%s commented on an item/conversation you have been following." -msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." +msgstr "%s a commenté un élément que vous suivez." #: ../../include/enotify.php:120 ../../include/enotify.php:135 #: ../../include/enotify.php:148 ../../include/enotify.php:161 #: ../../include/enotify.php:179 ../../include/enotify.php:192 #, php-format msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." +msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." #: ../../include/enotify.php:127 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" #: ../../include/enotify.php:129 #, 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" +msgstr "%1$s a publié sur votre mur à %2$s" #: ../../include/enotify.php:131 #, 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]" +msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" #: ../../include/enotify.php:142 #, php-format msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Upozornění] %s Vás označil" +msgstr "[Friendica:Notification] %s vous a repéré" #: ../../include/enotify.php:143 #, php-format msgid "%1$s tagged you at %2$s" -msgstr "%1$s Vás označil na %2$s" +msgstr "%1$s vous parle sur %2$s" #: ../../include/enotify.php:144 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]Vás označil[/url]." +msgstr "%1$s [url=%2$s]vous a taggé[/url]." #: ../../include/enotify.php:155 #, php-format msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" +msgstr "[Friendica:Notification] %s partage une nouvelle publication" #: ../../include/enotify.php:156 #, php-format msgid "%1$s shared a new post at %2$s" -msgstr "%1$s nasdílel nový příspěvek na %2$s" +msgstr "" #: ../../include/enotify.php:157 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." +msgstr "%1$s [url=%2$s]partage une publication[/url]." #: ../../include/enotify.php:169 #, php-format msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" +msgstr "[Friendica:Notify] %1$s vous a sollicité" #: ../../include/enotify.php:170 #, php-format msgid "%1$s poked you at %2$s" -msgstr "%1$s Vás šťouchnul na %2$s" +msgstr "%1$s vous a sollicité via %2$s" #: ../../include/enotify.php:171 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." +msgstr "%1$s vous a [url=%2$s]sollicité[/url]." #: ../../include/enotify.php:186 #, php-format msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" +msgstr "[Friendica:Notification] %s a repéré votre publication" #: ../../include/enotify.php:187 #, php-format msgid "%1$s tagged your post at %2$s" -msgstr "%1$s označil Váš příspěvek na %2$s" +msgstr "%1$s a tagué votre contenu sur %2$s" #: ../../include/enotify.php:188 #, 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]" +msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]" #: ../../include/enotify.php:199 msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Upozornění] Obdrženo přestavení" +msgstr "[Friendica:Notification] Introduction reçue" #: ../../include/enotify.php:200 #, 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" +msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" #: ../../include/enotify.php:201 #, 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." +msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." #: ../../include/enotify.php:204 ../../include/enotify.php:222 #, php-format msgid "You may visit their profile at %s" -msgstr "Můžete navštívit jejich profil na %s" +msgstr "Vous pouvez visiter son profil sur %s" #: ../../include/enotify.php:206 #, 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í." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." #: ../../include/enotify.php:213 msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" #: ../../include/enotify.php:214 #, 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" +msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" #: ../../include/enotify.php:215 #, 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." +msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." #: ../../include/enotify.php:220 msgid "Name:" -msgstr "Jméno:" +msgstr "Nom :" #: ../../include/enotify.php:221 msgid "Photo:" -msgstr "Foto:" +msgstr "Photo :" #: ../../include/enotify.php:224 #, 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í." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." #: ../../include/Scrape.php:584 msgid " on Last.fm" -msgstr " na Last.fm" +msgstr "sur Last.fm" #: ../../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." +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:207 msgid "Default privacy group for new contacts" -msgstr "Defaultní soukromá skrupina pro nové kontakty." +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" #: ../../include/group.php:226 msgid "Everybody" -msgstr "Všichni" +msgstr "Tout le monde" #: ../../include/group.php:249 msgid "edit" -msgstr "editovat" +msgstr "éditer" #: ../../include/group.php:271 msgid "Edit group" -msgstr "Editovat skupinu" +msgstr "Editer groupe" #: ../../include/group.php:272 msgid "Create a new group" -msgstr "Vytvořit novou skupinu" +msgstr "Créer un nouveau groupe" #: ../../include/group.php:273 msgid "Contacts not in any group" -msgstr "Kontakty, které nejsou v žádné skupině" +msgstr "Contacts n'appartenant à aucun groupe" #: ../../include/follow.php:32 msgid "Connect URL missing." -msgstr "Chybí URL adresa." +msgstr "URL de connexion manquante." #: ../../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." +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 "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." +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 "Uvedená adresa profilu neposkytuje dostatečné informace." +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 "Autor nebo jméno nenalezeno" +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 "Této adrese neodpovídá žádné URL prohlížeče." +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 "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." +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 "Použite mailo: před adresou k vynucení emailové kontroly." +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 "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." +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 "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." +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 "Nepodařilo se získat kontaktní informace." +msgstr "Impossible de récupérer les informations du contact." #: ../../include/follow.php:259 msgid "following" -msgstr "následující" +msgstr "following" #: ../../include/message.php:15 ../../include/message.php:172 msgid "[no subject]" -msgstr "[bez předmětu]" +msgstr "[pas de sujet]" #: ../../include/nav.php:73 msgid "End this session" -msgstr "Konec této relace" +msgstr "Mettre fin à cette session" #: ../../include/nav.php:91 msgid "Sign in" -msgstr "Přihlásit se" +msgstr "Se connecter" #: ../../include/nav.php:104 msgid "Home Page" -msgstr "Domácí stránka" +msgstr "Page d'accueil" #: ../../include/nav.php:108 msgid "Create an account" -msgstr "Vytvořit účet" +msgstr "Créer un compte" #: ../../include/nav.php:113 msgid "Help and documentation" -msgstr "Nápověda a dokumentace" +msgstr "Aide et documentation" #: ../../include/nav.php:116 msgid "Apps" -msgstr "Aplikace" +msgstr "Applications" #: ../../include/nav.php:116 msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" +msgstr "Applications supplémentaires, utilitaires, jeux" #: ../../include/nav.php:118 msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" +msgstr "Rechercher dans le contenu du site" #: ../../include/nav.php:128 msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" +msgstr "Conversations ayant cours sur ce site" #: ../../include/nav.php:130 msgid "Directory" -msgstr "Adresář" +msgstr "Annuaire" #: ../../include/nav.php:130 msgid "People directory" -msgstr "Adresář" +msgstr "Annuaire des utilisateurs" #: ../../include/nav.php:132 msgid "Information" -msgstr "Informace" +msgstr "Information" #: ../../include/nav.php:132 msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" +msgstr "Information au sujet de cette instance de friendica" #: ../../include/nav.php:142 msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" +msgstr "Conversations de vos amis" #: ../../include/nav.php:143 msgid "Network Reset" -msgstr "Síťový Reset" +msgstr "" #: ../../include/nav.php:143 msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" +msgstr "Chargement des pages du réseau sans filtre" #: ../../include/nav.php:151 msgid "Friend Requests" -msgstr "Žádosti přátel" +msgstr "Demande d'amitié" #: ../../include/nav.php:153 msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" +msgstr "Voir toute notification" #: ../../include/nav.php:154 msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" +msgstr "Marquer toutes les notifications système comme 'vues'" #: ../../include/nav.php:158 msgid "Private mail" -msgstr "Soukromá pošta" +msgstr "Messages privés" #: ../../include/nav.php:159 msgid "Inbox" -msgstr "Doručená pošta" +msgstr "Messages entrants" #: ../../include/nav.php:160 msgid "Outbox" -msgstr "Odeslaná pošta" +msgstr "Messages sortants" #: ../../include/nav.php:164 msgid "Manage" -msgstr "Spravovat" +msgstr "Gérer" #: ../../include/nav.php:164 msgid "Manage other pages" -msgstr "Spravovat jiné stránky" +msgstr "Gérer les autres pages" #: ../../include/nav.php:169 msgid "Account settings" -msgstr "Nastavení účtu" +msgstr "Compte" #: ../../include/nav.php:171 msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" +msgstr "Gérer/Éditer les profiles" #: ../../include/nav.php:173 msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" +msgstr "Gérer/éditer les amitiés et contacts" #: ../../include/nav.php:180 msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" +msgstr "Démarrage et configuration du site" #: ../../include/nav.php:184 msgid "Navigation" -msgstr "Navigace" +msgstr "Navigation" #: ../../include/nav.php:184 msgid "Site map" -msgstr "Mapa webu" +msgstr "Carte du site" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -6725,116 +6717,116 @@ msgstr "j F" #: ../../include/profile_advanced.php:30 msgid "Birthday:" -msgstr "Narozeniny:" +msgstr "Anniversaire:" #: ../../include/profile_advanced.php:34 msgid "Age:" -msgstr "Věk:" +msgstr "Age:" #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" +msgstr "depuis %1$d %2$s" #: ../../include/profile_advanced.php:52 msgid "Tags:" -msgstr "Štítky:" +msgstr "Tags :" #: ../../include/profile_advanced.php:56 msgid "Religion:" -msgstr "Náboženství:" +msgstr "Religion:" #: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" +msgstr "Passe-temps/Centres d'intérêt:" #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" +msgstr "Coordonnées/Réseaux sociaux:" #: ../../include/profile_advanced.php:69 msgid "Musical interests:" -msgstr "Hudební vkus:" +msgstr "Goûts musicaux:" #: ../../include/profile_advanced.php:71 msgid "Books, literature:" -msgstr "Knihy, literatura:" +msgstr "Lectures:" #: ../../include/profile_advanced.php:73 msgid "Television:" -msgstr "Televize:" +msgstr "Télévision:" #: ../../include/profile_advanced.php:75 msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" +msgstr "Cinéma/Danse/Culture/Divertissement:" #: ../../include/profile_advanced.php:77 msgid "Love/Romance:" -msgstr "Láska/romance" +msgstr "Amour/Romance:" #: ../../include/profile_advanced.php:79 msgid "Work/employment:" -msgstr "Práce/zaměstnání:" +msgstr "Activité professionnelle/Occupation:" #: ../../include/profile_advanced.php:81 msgid "School/education:" -msgstr "Škola/vzdělávání:" +msgstr "Études/Formation:" #: ../../include/bbcode.php:287 ../../include/bbcode.php:921 #: ../../include/bbcode.php:922 msgid "Image/photo" -msgstr "Obrázek/fotografie" +msgstr "Image/photo" #: ../../include/bbcode.php:357 #, php-format msgid "" "%s wrote the following post" -msgstr "%s napsal následující příspěvek" +msgstr "" #: ../../include/bbcode.php:457 msgid "" -msgstr "" +msgstr "" #: ../../include/bbcode.php:885 ../../include/bbcode.php:905 msgid "$1 wrote:" -msgstr "$1 napsal:" +msgstr "$1 a écrit:" #: ../../include/bbcode.php:936 ../../include/bbcode.php:937 msgid "Encrypted content" -msgstr "Šifrovaný obsah" +msgstr "Contenu chiffré" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" -msgstr "Neznámé | Nezařazeno" +msgstr "Inconnu | Non-classé" #: ../../include/contact_selectors.php:33 msgid "Block immediately" -msgstr "Okamžitě blokovat " +msgstr "Bloquer immédiatement" #: ../../include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" -msgstr "pochybný, spammer, self-makerter" +msgstr "Douteux, spammeur, accro à l'auto-promotion" #: ../../include/contact_selectors.php:35 msgid "Known to me, but no opinion" -msgstr "Znám ho ale, ale bez rozhodnutí" +msgstr "Connu de moi, mais sans opinion" #: ../../include/contact_selectors.php:36 msgid "OK, probably harmless" -msgstr "OK, pravděpodobně neškodný" +msgstr "OK, probablement inoffensif" #: ../../include/contact_selectors.php:37 msgid "Reputable, has my trust" -msgstr "Renomovaný, má mou důvěru" +msgstr "Réputé, a toute ma confiance" #: ../../include/contact_selectors.php:60 msgid "Weekly" -msgstr "Týdenně" +msgstr "Chaque semaine" #: ../../include/contact_selectors.php:61 msgid "Monthly" -msgstr "Měsíčně" +msgstr "Chaque mois" #: ../../include/contact_selectors.php:77 msgid "OStatus" @@ -6874,7 +6866,7 @@ msgstr "Twitter" #: ../../include/contact_selectors.php:90 msgid "Diaspora Connector" -msgstr "Diaspora konektor" +msgstr "Connecteur Diaspora" #: ../../include/contact_selectors.php:91 msgid "Statusnet" @@ -6882,361 +6874,361 @@ msgstr "Statusnet" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" -msgstr "Různé" +msgstr "Divers" #: ../../include/datetime.php:153 ../../include/datetime.php:285 msgid "year" -msgstr "rok" +msgstr "an" #: ../../include/datetime.php:158 ../../include/datetime.php:286 msgid "month" -msgstr "měsíc" +msgstr "mois" #: ../../include/datetime.php:163 ../../include/datetime.php:288 msgid "day" -msgstr "den" +msgstr "jour" #: ../../include/datetime.php:276 msgid "never" -msgstr "nikdy" +msgstr "jamais" #: ../../include/datetime.php:282 msgid "less than a second ago" -msgstr "méně než před sekundou" +msgstr "il y a moins d'une seconde" #: ../../include/datetime.php:285 msgid "years" -msgstr "let" +msgstr "ans" #: ../../include/datetime.php:286 msgid "months" -msgstr "měsíců" +msgstr "mois" #: ../../include/datetime.php:287 msgid "week" -msgstr "týdnem" +msgstr "semaine" #: ../../include/datetime.php:287 msgid "weeks" -msgstr "týdny" +msgstr "semaines" #: ../../include/datetime.php:288 msgid "days" -msgstr "dnů" +msgstr "jours" #: ../../include/datetime.php:289 msgid "hour" -msgstr "hodina" +msgstr "heure" #: ../../include/datetime.php:289 msgid "hours" -msgstr "hodin" +msgstr "heures" #: ../../include/datetime.php:290 msgid "minute" -msgstr "minuta" +msgstr "minute" #: ../../include/datetime.php:290 msgid "minutes" -msgstr "minut" +msgstr "minutes" #: ../../include/datetime.php:291 msgid "second" -msgstr "sekunda" +msgstr "seconde" #: ../../include/datetime.php:291 msgid "seconds" -msgstr "sekund" +msgstr "secondes" #: ../../include/datetime.php:300 #, php-format msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" +msgstr "%1$d %2$s auparavant" #: ../../include/datetime.php:472 ../../include/items.php:1981 #, php-format msgid "%s's birthday" -msgstr "%s má narozeniny" +msgstr "Anniversaire de %s's" #: ../../include/datetime.php:473 ../../include/items.php:1982 #, php-format msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" +msgstr "Joyeux anniversaire, %s !" #: ../../include/features.php:23 msgid "General Features" -msgstr "Obecné funkčnosti" +msgstr "Fonctions générales" #: ../../include/features.php:25 msgid "Multiple Profiles" -msgstr "Vícenásobné profily" +msgstr "Profils multiples" #: ../../include/features.php:25 msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit vícenásobné profily" +msgstr "Possibilité de créer plusieurs profils" #: ../../include/features.php:30 msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" +msgstr "Caractéristiques de composition de publication" #: ../../include/features.php:31 msgid "Richtext Editor" -msgstr "Richtext Editor" +msgstr "Éditeur de texte enrichi" #: ../../include/features.php:31 msgid "Enable richtext editor" -msgstr "Povolit richtext editor" +msgstr "Activer l'éditeur de texte enrichi" #: ../../include/features.php:32 msgid "Post Preview" -msgstr "Náhled příspěvku" +msgstr "Aperçu du billet" #: ../../include/features.php:32 msgid "Allow previewing posts and comments before publishing them" -msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" +msgstr "Permet la prévisualisation des billets et commentaires avant de les publier" #: ../../include/features.php:33 msgid "Auto-mention Forums" -msgstr "Automaticky zmíněná Fóra" +msgstr "" #: ../../include/features.php:33 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" +msgstr "" #: ../../include/features.php:38 msgid "Network Sidebar Widgets" -msgstr "Síťové postranní widgety" +msgstr "Widgets réseau pour barre latérale" #: ../../include/features.php:39 msgid "Search by Date" -msgstr "Vyhledávat dle Data" +msgstr "Rechercher par Date" #: ../../include/features.php:39 msgid "Ability to select posts by date ranges" -msgstr "Možnost označit příspěvky dle časového intervalu" +msgstr "Capacité de sélectionner les billets par intervalles de dates" #: ../../include/features.php:40 msgid "Group Filter" -msgstr "Skupinový Filtr" +msgstr "Filtre de groupe" #: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected group" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" +msgstr "Activer le widget d’affichage des Posts du Réseau seulement pour le groupe sélectionné" #: ../../include/features.php:41 msgid "Network Filter" -msgstr "Síťový Filtr" +msgstr "Filtre de réseau" #: ../../include/features.php:41 msgid "Enable widget to display Network posts only from selected network" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" +msgstr "Activer le widget d’affichage des Posts du Réseau seulement pour le réseau sélectionné" #: ../../include/features.php:42 msgid "Save search terms for re-use" -msgstr "Uložit kritéria vyhledávání pro znovupoužití" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" #: ../../include/features.php:47 msgid "Network Tabs" -msgstr "Síťové záložky" +msgstr "Onglets Réseau" #: ../../include/features.php:48 msgid "Network Personal Tab" -msgstr "Osobní síťový záložka " +msgstr "Onglet Réseau Personnel" #: ../../include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " +msgstr "Activer l'onglet pour afficher seulement les Posts du Réseau où vous avez interagit" #: ../../include/features.php:49 msgid "Network New Tab" -msgstr "Nová záložka síť" +msgstr "" #: ../../include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" +msgstr "" #: ../../include/features.php:50 msgid "Network Shared Links Tab" -msgstr "záložka Síťové sdílené odkazy " +msgstr "" #: ../../include/features.php:50 msgid "Enable tab to display only Network posts with links in them" -msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" +msgstr "" #: ../../include/features.php:55 msgid "Post/Comment Tools" -msgstr "Nástroje Příspěvků/Komentářů" +msgstr "outils de publication/commentaire" #: ../../include/features.php:56 msgid "Multiple Deletion" -msgstr "Násobné mazání" +msgstr "Suppression multiple" #: ../../include/features.php:56 msgid "Select and delete multiple posts/comments at once" -msgstr "Označit a smazat více " +msgstr "" #: ../../include/features.php:57 msgid "Edit Sent Posts" -msgstr "Editovat Odeslané příspěvky" +msgstr "Edité les publications envoyées" #: ../../include/features.php:57 msgid "Edit and correct posts and comments after sending" -msgstr "Editovat a opravit příspěvky a komentáře po odeslání" +msgstr "" #: ../../include/features.php:58 msgid "Tagging" -msgstr "Štítkování" +msgstr "Tagger" #: ../../include/features.php:58 msgid "Ability to tag existing posts" -msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" +msgstr "Autorisé à tagger des publications existantes" #: ../../include/features.php:59 msgid "Post Categories" -msgstr "Kategorie příspěvků" +msgstr "Catégories des publications" #: ../../include/features.php:59 msgid "Add categories to your posts" -msgstr "Přidat kategorie k Vašim příspěvkům" +msgstr "Ajouter des catégories à vos publications" #: ../../include/features.php:60 msgid "Ability to file posts under folders" -msgstr "Možnost řadit příspěvky do složek" +msgstr "" #: ../../include/features.php:61 msgid "Dislike Posts" -msgstr "Označit příspěvky jako neoblíbené" +msgstr "N'aime pas" #: ../../include/features.php:61 msgid "Ability to dislike posts/comments" -msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" +msgstr "Autorisé a ne pas aimer les publications/commentaires" #: ../../include/features.php:62 msgid "Star Posts" -msgstr "Příspěvky s hvězdou" +msgstr "" #: ../../include/features.php:62 msgid "Ability to mark special posts with a star indicator" -msgstr "Možnost označit příspěvky s indikátorem hvězdy" +msgstr "" #: ../../include/diaspora.php:703 msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" +msgstr "Notification de partage du réseau Diaspora" #: ../../include/diaspora.php:2299 msgid "Attachments:" -msgstr "Přílohy:" +msgstr "Pièces jointes : " #: ../../include/acl_selectors.php:326 msgid "Visible to everybody" -msgstr "Viditelné pro všechny" +msgstr "Visible par tout le monde" #: ../../include/items.php:3710 msgid "A new person is sharing with you at " -msgstr "Nový člověk si s vámi sdílí na" +msgstr "Une nouvelle personne partage avec vous à " #: ../../include/items.php:3710 msgid "You have a new follower at " -msgstr "Máte nového následovníka na" +msgstr "Vous avez un nouvel abonné à " #: ../../include/items.php:4233 msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" +msgstr "Voulez-vous vraiment supprimer cet élément ?" #: ../../include/items.php:4460 msgid "Archives" -msgstr "Archív" +msgstr "Archives" #: ../../include/oembed.php:174 msgid "Embedded content" -msgstr "vložený obsah" +msgstr "Contenu incorporé" #: ../../include/oembed.php:183 msgid "Embedding disabled" -msgstr "Vkládání zakázáno" +msgstr "Incorporation désactivée" #: ../../include/security.php:22 msgid "Welcome " -msgstr "Vítejte " +msgstr "Bienvenue " #: ../../include/security.php:23 msgid "Please upload a profile photo." -msgstr "Prosím nahrejte profilovou fotografii" +msgstr "Merci d'illustrer votre profil d'une image." #: ../../include/security.php:26 msgid "Welcome back " -msgstr "Vítejte zpět " +msgstr "Bienvenue à nouveau, " #: ../../include/security.php:366 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." -msgstr "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." +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/profile_selectors.php:6 msgid "Male" -msgstr "Muž" +msgstr "Masculin" #: ../../include/profile_selectors.php:6 msgid "Female" -msgstr "Žena" +msgstr "Féminin" #: ../../include/profile_selectors.php:6 msgid "Currently Male" -msgstr "V současné době muž" +msgstr "Actuellement masculin" #: ../../include/profile_selectors.php:6 msgid "Currently Female" -msgstr "V současné době žena" +msgstr "Actuellement féminin" #: ../../include/profile_selectors.php:6 msgid "Mostly Male" -msgstr "Většinou muž" +msgstr "Principalement masculin" #: ../../include/profile_selectors.php:6 msgid "Mostly Female" -msgstr "Většinou žena" +msgstr "Principalement féminin" #: ../../include/profile_selectors.php:6 msgid "Transgender" -msgstr "Transgender" +msgstr "Transgenre" #: ../../include/profile_selectors.php:6 msgid "Intersex" -msgstr "Intersex" +msgstr "Inter-sexe" #: ../../include/profile_selectors.php:6 msgid "Transsexual" -msgstr "Transexuál" +msgstr "Transsexuel" #: ../../include/profile_selectors.php:6 msgid "Hermaphrodite" -msgstr "Hermafrodit" +msgstr "Hermaphrodite" #: ../../include/profile_selectors.php:6 msgid "Neuter" -msgstr "Neutrál" +msgstr "Neutre" #: ../../include/profile_selectors.php:6 msgid "Non-specific" -msgstr "Nespecifikováno" +msgstr "Non-spécifique" #: ../../include/profile_selectors.php:6 msgid "Other" -msgstr "Jiné" +msgstr "Autre" #: ../../include/profile_selectors.php:6 msgid "Undecided" -msgstr "Nerozhodnuto" +msgstr "Indécis" #: ../../include/profile_selectors.php:23 msgid "Males" -msgstr "Muži" +msgstr "Hommes" #: ../../include/profile_selectors.php:23 msgid "Females" -msgstr "Ženy" +msgstr "Femmes" #: ../../include/profile_selectors.php:23 msgid "Gay" @@ -7244,19 +7236,19 @@ msgstr "Gay" #: ../../include/profile_selectors.php:23 msgid "Lesbian" -msgstr "Lesbička" +msgstr "Lesbienne" #: ../../include/profile_selectors.php:23 msgid "No Preference" -msgstr "Bez preferencí" +msgstr "Sans préférence" #: ../../include/profile_selectors.php:23 msgid "Bisexual" -msgstr "Bisexuál" +msgstr "Bisexuel" #: ../../include/profile_selectors.php:23 msgid "Autosexual" -msgstr "Autosexuál" +msgstr "Auto-sexuel" #: ../../include/profile_selectors.php:23 msgid "Abstinent" @@ -7264,148 +7256,148 @@ msgstr "Abstinent" #: ../../include/profile_selectors.php:23 msgid "Virgin" -msgstr "panic/panna" +msgstr "Vierge" #: ../../include/profile_selectors.php:23 msgid "Deviant" -msgstr "Deviant" +msgstr "Déviant" #: ../../include/profile_selectors.php:23 msgid "Fetish" -msgstr "Fetišista" +msgstr "Fétichiste" #: ../../include/profile_selectors.php:23 msgid "Oodles" -msgstr "Hodně" +msgstr "Oodles" #: ../../include/profile_selectors.php:23 msgid "Nonsexual" -msgstr "Nesexuální" +msgstr "Non-sexuel" #: ../../include/profile_selectors.php:42 msgid "Single" -msgstr "Svobodný" +msgstr "Célibataire" #: ../../include/profile_selectors.php:42 msgid "Lonely" -msgstr "Osamnělý" +msgstr "Esseulé" #: ../../include/profile_selectors.php:42 msgid "Available" -msgstr "Dostupný" +msgstr "Disponible" #: ../../include/profile_selectors.php:42 msgid "Unavailable" -msgstr "Nedostupný" +msgstr "Indisponible" #: ../../include/profile_selectors.php:42 msgid "Has crush" -msgstr "Zamilovaný" +msgstr "Attiré par quelqu'un" #: ../../include/profile_selectors.php:42 msgid "Infatuated" -msgstr "Zabouchnutý" +msgstr "Entiché" #: ../../include/profile_selectors.php:42 msgid "Dating" -msgstr "Seznamující se" +msgstr "Dans une relation" #: ../../include/profile_selectors.php:42 msgid "Unfaithful" -msgstr "Nevěrný" +msgstr "Infidèle" #: ../../include/profile_selectors.php:42 msgid "Sex Addict" -msgstr "Závislý na sexu" +msgstr "Accro au sexe" #: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" -msgstr "Přátelé / výhody" +msgstr "Amis par intérêt" #: ../../include/profile_selectors.php:42 msgid "Casual" -msgstr "Ležérní" +msgstr "Casual" #: ../../include/profile_selectors.php:42 msgid "Engaged" -msgstr "Zadaný" +msgstr "Fiancé" #: ../../include/profile_selectors.php:42 msgid "Married" -msgstr "Ženatý/vdaná" +msgstr "Marié" #: ../../include/profile_selectors.php:42 msgid "Imaginarily married" -msgstr "Pomyslně ženatý/vdaná" +msgstr "Se croit marié" #: ../../include/profile_selectors.php:42 msgid "Partners" -msgstr "Partneři" +msgstr "Partenaire" #: ../../include/profile_selectors.php:42 msgid "Cohabiting" -msgstr "Žijící ve společné domácnosti" +msgstr "En cohabitation" #: ../../include/profile_selectors.php:42 msgid "Common law" -msgstr "Zvykové právo" +msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" #: ../../include/profile_selectors.php:42 msgid "Happy" -msgstr "Šťastný" +msgstr "Heureux" #: ../../include/profile_selectors.php:42 msgid "Not looking" -msgstr "Nehledající" +msgstr "Pas intéressé" #: ../../include/profile_selectors.php:42 msgid "Swinger" -msgstr "Swinger" +msgstr "Échangiste" #: ../../include/profile_selectors.php:42 msgid "Betrayed" -msgstr "Zrazen" +msgstr "Trahi(e)" #: ../../include/profile_selectors.php:42 msgid "Separated" -msgstr "Odloučený" +msgstr "Séparé" #: ../../include/profile_selectors.php:42 msgid "Unstable" -msgstr "Nestálý" +msgstr "Instable" #: ../../include/profile_selectors.php:42 msgid "Divorced" -msgstr "Rozvedený(á)" +msgstr "Divorcé" #: ../../include/profile_selectors.php:42 msgid "Imaginarily divorced" -msgstr "Pomyslně rozvedený" +msgstr "Se croit divorcé" #: ../../include/profile_selectors.php:42 msgid "Widowed" -msgstr "Ovdovělý(á)" +msgstr "Veuf/Veuve" #: ../../include/profile_selectors.php:42 msgid "Uncertain" -msgstr "Nejistý" +msgstr "Incertain" #: ../../include/profile_selectors.php:42 msgid "It's complicated" -msgstr "Je to složité" +msgstr "C'est compliqué" #: ../../include/profile_selectors.php:42 msgid "Don't care" -msgstr "Nezajímá" +msgstr "S'en désintéresse" #: ../../include/profile_selectors.php:42 msgid "Ask me" -msgstr "Zeptej se mě" +msgstr "Me demander" #: ../../include/Contact.php:115 msgid "stopped following" -msgstr "následování zastaveno" +msgstr "retiré de la liste de suivi" #: ../../include/Contact.php:234 msgid "Drop Contact" -msgstr "Odstranit kontakt" +msgstr "Supprimer le contact" diff --git a/view/fr/strings.php b/view/fr/strings.php index a8820d3f01..2afbfe1f18 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -2,1585 +2,1572 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ - return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; + return ($n > 1);; }} ; -$a->strings["This entry was edited"] = "Tento záznam byl editován"; -$a->strings["Private Message"] = "Soukromá zpráva"; -$a->strings["Edit"] = "Upravit"; -$a->strings["Select"] = "Vybrat"; -$a->strings["Delete"] = "Odstranit"; -$a->strings["save to folder"] = "uložit do složky"; -$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["I like this (toggle)"] = "Líbí se mi to (přepínač)"; -$a->strings["like"] = "má rád"; -$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; -$a->strings["dislike"] = "nemá rád"; -$a->strings["Share this"] = "Sdílet toto"; -$a->strings["share"] = "sdílí"; -$a->strings["Categories:"] = "Kategorie:"; -$a->strings["Filed under:"] = "Vyplněn pod:"; -$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; -$a->strings["to"] = "pro"; -$a->strings["via"] = "přes"; -$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; -$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["Comment"] = "Okomentovat"; -$a->strings["Please wait"] = "Čekejte prosím"; +$a->strings["This entry was edited"] = ""; +$a->strings["Private Message"] = "Message privé"; +$a->strings["Edit"] = "Éditer"; +$a->strings["Select"] = "Sélectionner"; +$a->strings["Delete"] = "Supprimer"; +$a->strings["save to folder"] = "sauver vers dossier"; +$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["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["like"] = "aime"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["dislike"] = "n'aime pas"; +$a->strings["Share this"] = "Partager"; +$a->strings["share"] = "partager"; +$a->strings["Categories:"] = "Catégories:"; +$a->strings["Filed under:"] = "Rangé sous:"; +$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +$a->strings["to"] = "à"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Inter-mur"; +$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["Comment"] = "Commenter"; +$a->strings["Please wait"] = "Patientez"; $a->strings["%d comment"] = array( - 0 => "%d komentář", - 1 => "%d komentářů", - 2 => "%d komentářů", + 0 => "%d commentaire", + 1 => "%d commentaires", ); $a->strings["comment"] = array( 0 => "", - 1 => "", - 2 => "komentář", + 1 => "commentaire", ); -$a->strings["show more"] = "zobrazit více"; -$a->strings["This is you"] = "Nastavte Vaši polohu"; -$a->strings["Submit"] = "Odeslat"; -$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["Preview"] = "Náhled"; -$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášení pro použití rozšíření."; -$a->strings["Not Found"] = "Nenalezen"; -$a->strings["Page not found."] = "Stránka nenalezena"; -$a->strings["Permission denied"] = "Nedostatečné oprávnění"; -$a->strings["Permission denied."] = "Přístup odmítnut."; -$a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Home"] = "Domů"; -$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; +$a->strings["show more"] = "montrer plus"; +$a->strings["This is you"] = "C'est vous"; +$a->strings["Submit"] = "Envoyer"; +$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["Preview"] = "Aperçu"; +$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les addons."; +$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["toggle mobile"] = "activ. mobile"; +$a->strings["Home"] = "Profil"; +$a->strings["Your posts and conversations"] = "Vos notices et conversations"; $a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Vaše profilová stránka"; -$a->strings["Photos"] = "Fotografie"; -$a->strings["Your photos"] = "Vaše fotky"; -$a->strings["Events"] = "Události"; -$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"] = "Komunita"; -$a->strings["don't show"] = "nikdy nezobrazit"; -$a->strings["show"] = "zobrazit"; -$a->strings["Theme settings"] = "Nastavení téma"; -$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; -$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["Contacts"] = "Kontakty"; -$a->strings["Your contacts"] = "Vaše kontakty"; -$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["event"] = "událost"; -$a->strings["status"] = "Stav"; -$a->strings["photo"] = "fotografie"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; -$a->strings["Last photos"] = "Poslední fotografie"; -$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; -$a->strings["Profile Photos"] = "Profilové fotografie"; -$a->strings["Find Friends"] = "Nalézt Přátele"; -$a->strings["Local Directory"] = "Lokální Adresář"; -$a->strings["Global Directory"] = "Globální adresář"; -$a->strings["Similar Interests"] = "Podobné zájmy"; -$a->strings["Friend Suggestions"] = "Návrhy přátel"; -$a->strings["Invite Friends"] = "Pozvat přátele"; -$a->strings["Settings"] = "Nastavení"; -$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["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; -$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["Alignment"] = "Zarovnání"; -$a->strings["Left"] = "Vlevo"; -$a->strings["Center"] = "Uprostřed"; -$a->strings["Color scheme"] = "Barevné schéma"; -$a->strings["Posts font size"] = "Velikost písma u příspěvků"; -$a->strings["Textareas font size"] = "Velikost písma textů"; -$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; -$a->strings["default"] = "standardní"; -$a->strings["Background Image"] = "Obrázek pozadí"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí."; -$a->strings["Background Color"] = "Barva pozadí"; -$a->strings["HEX value for the background color. Don't include the #"] = "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #"; -$a->strings["font size"] = "velikost fondu"; -$a->strings["base font size for your interface"] = "základní velikost fontu"; -$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 theme width"] = "Nastavení šířku grafické šablony"; -$a->strings["Set style"] = "Nastavit styl"; -$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["Register"] = "Registrovat"; -$a->strings["Logout"] = "Odhlásit se"; -$a->strings["Login"] = "Přihlásit se"; -$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; -$a->strings["Password: "] = "Heslo: "; -$a->strings["Remember me"] = "Pamatuj si mne"; -$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; -$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; -$a->strings["Password Reset"] = "Obnovení hesla"; -$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; -$a->strings["terms of service"] = "podmínky použití"; -$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; -$a->strings["privacy policy"] = "Ochrana soukromí"; -$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; -$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; -$a->strings["Edit profile"] = "Upravit profil"; -$a->strings["Connect"] = "Spojit"; -$a->strings["Message"] = "Zpráva"; -$a->strings["Profiles"] = "Profily"; -$a->strings["Manage/edit profiles"] = "Spravovat/upravit 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["Location:"] = "Místo:"; -$a->strings["Gender:"] = "Pohlaví:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; -$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["[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"] = "Stav"; -$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; -$a->strings["Profile Details"] = "Detaily profilu"; -$a->strings["Photo Albums"] = "Fotoalba"; -$a->strings["Videos"] = "Videa"; -$a->strings["Events and Calendar"] = "Události a kalendář"; -$a->strings["Personal Notes"] = "Osobní poznámky"; -$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %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["Public access denied."] = "Veřejný přístup odepřen."; -$a->strings["Item not found."] = "Položka nenalezena."; -$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; -$a->strings["Item has been removed."] = "Položka byla odstraněna."; -$a->strings["Access denied."] = "Přístup odmítnut"; -$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["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; -$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?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; -$a->strings["Yes"] = "Ano"; -$a->strings["No"] = "Ne"; -$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"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; -$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["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; -$a->strings["Profile not found."] = "Profil nenalezen"; -$a->strings["Contact not found."] = "Kontakt nenalezen."; -$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."; -$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; -$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; -$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; -$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; -$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; -$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["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["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["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["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; -$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."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; -$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; -$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["Reset"] = "Reset"; -$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["Upload photo"] = "Nahrát fotografii"; -$a->strings["Insert web link"] = "Vložit webový odkaz"; -$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. 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["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["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["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["Your profile page"] = "Votre page de profil"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "Vos photos"; +$a->strings["Events"] = "Événements"; +$a->strings["Your events"] = "Vos événements"; +$a->strings["Personal notes"] = "Notes personnelles"; +$a->strings["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Community"] = "Communauté"; +$a->strings["don't show"] = "cacher"; +$a->strings["show"] = "montrer"; +$a->strings["Theme settings"] = "Réglages du thème graphique"; +$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; +$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["Contacts"] = "Contacts"; +$a->strings["Your contacts"] = "Vos contacts"; +$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["event"] = "évènement"; +$a->strings["status"] = "le statut"; +$a->strings["photo"] = "photo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +$a->strings["Last photos"] = "Dernières photos"; +$a->strings["Contact Photos"] = "Photos du contact"; +$a->strings["Profile Photos"] = "Photos du profil"; +$a->strings["Find Friends"] = "Trouver des amis"; +$a->strings["Local Directory"] = "Annuaire local"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Similar Interests"] = "Intérêts similaires"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; +$a->strings["Invite Friends"] = "Inviter des amis"; +$a->strings["Settings"] = "Réglages"; +$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["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; +$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; +$a->strings["Alignment"] = "Alignement"; +$a->strings["Left"] = "Gauche"; +$a->strings["Center"] = "Centre"; +$a->strings["Color scheme"] = "Palette de couleurs"; +$a->strings["Posts font size"] = "Taille de texte des messages"; +$a->strings["Textareas font size"] = "Taille de police des zones de texte"; +$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; +$a->strings["default"] = "défaut"; +$a->strings["Background Image"] = "Image de fond"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = "Couleur de fond"; +$a->strings["HEX value for the background color. Don't include the #"] = ""; +$a->strings["font size"] = "Taille de police"; +$a->strings["base font size for your interface"] = ""; +$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 theme width"] = "Largeur du thème"; +$a->strings["Set style"] = "Définir le style"; +$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["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["Remember me"] = "Se souvenir de moi"; +$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; +$a->strings["Forgot your password?"] = "Mot de passe oublié?"; +$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; +$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; +$a->strings["terms of service"] = "conditions d'utilisation"; +$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; +$a->strings["privacy policy"] = "politique de confidentialité"; +$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; +$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; +$a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Connect"] = "Relier"; +$a->strings["Message"] = "Message"; +$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["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["[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"] = "Statut"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["Photo Albums"] = "Albums photo"; +$a->strings["Videos"] = "Vidéos"; +$a->strings["Events and Calendar"] = "Événements et agenda"; +$a->strings["Personal Notes"] = "Notes personnelles"; +$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; +$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["Public access denied."] = "Accès public refusé."; +$a->strings["Item not found."] = "Élément introuvable."; +$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; +$a->strings["Item has been removed."] = "Cet élément a été enlevé."; +$a->strings["Access denied."] = "Accès refusé."; +$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["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; +$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["Yes"] = "Oui"; +$a->strings["No"] = "Non"; +$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["Import"] = "Importer"; +$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; +$a->strings["Profile not found."] = "Profil introuvable."; +$a->strings["Contact not found."] = "Contact introuvable."; +$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."; +$a->strings["Remote site reported: "] = "Alerte du site distant: "; +$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; +$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; +$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; +$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; +$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; +$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 chez %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$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 billets et contacts, et/ou à créer des billets à votre place?"; +$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["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s"; +$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["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["Upload photo"] = "Joindre photo"; +$a->strings["Insert web link"] = "Insérer lien web"; +$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."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; +$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["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"] = "Connexions"; $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["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["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; -$a->strings["Cancel"] = "Zrušit"; -$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["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["Personal"] = "Osobní"; -$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["Shared Links"] = "Sdílené odkazy"; -$a->strings["Interesting Links"] = "Zajímavé odkazy"; -$a->strings["Starred"] = "S hvězdičkou"; -$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; +$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"] = "Importer courriels"; +$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["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; +$a->strings["Cancel"] = "Annuler"; +$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["Search Results For:"] = "Résultats pour:"; +$a->strings["Remove term"] = "Retirer le terme"; +$a->strings["Saved Searches"] = "Recherches"; +$a->strings["add"] = "ajouter"; +$a->strings["Commented Order"] = "Tri par commentaires"; +$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; +$a->strings["Posted Order"] = "Tri par publications"; +$a->strings["Sort by Post Date"] = "Trier par date de publication"; +$a->strings["Personal"] = "Personnel"; +$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["Shared Links"] = "Liens partagés"; +$a->strings["Interesting Links"] = "Liens intéressants"; +$a->strings["Starred"] = "Mis en avant"; +$a->strings["Favourite Posts"] = "Publications favorites"; $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ě.", + 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."] = "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["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["Friendica Communications Server - Setup"] = "Friendica Komunikač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["System check"] = "Testování systému"; -$a->strings["Next"] = "Dále"; -$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["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["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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; -$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; +$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["Friendica Communications Server - Setup"] = ""; +$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["Next"] = "Suivant"; +$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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Version de PHP:"; $a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "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["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"] = "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."; -$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; -$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["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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; -$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["

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["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["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["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é"; -$a->strings["Pending registrations"] = "Čekající registrace"; -$a->strings["Version"] = "Verze"; -$a->strings["Active plugins"] = "Aktivní pluginy"; -$a->strings["Can not parse base url. Must have at least ://"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://"; -$a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; -$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; -$a->strings["Never"] = "Nikdy"; -$a->strings["At post arrival"] = "Při obdržení příspěvku"; -$a->strings["Frequently"] = "Často"; -$a->strings["Hourly"] = "každou hodinu"; -$a->strings["Twice daily"] = "Dvakrát denně"; -$a->strings["Daily"] = "denně"; -$a->strings["Multi user instance"] = "Více uživatelská instance"; -$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["Save Settings"] = "Uložit Nastavení"; -$a->strings["File upload"] = "Nahrání souborů"; -$a->strings["Policies"] = "Politiky"; -$a->strings["Advanced"] = "Pokročilé"; -$a->strings["Performance"] = "Výkonnost"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."; -$a->strings["Site name"] = "Název webu"; -$a->strings["Banner/Logo"] = "Banner/logo"; -$a->strings["Additional Info"] = "Dodatečné informace"; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."; -$a->strings["System language"] = "Systémový jazyk"; -$a->strings["System theme"] = "Grafická šablona systému "; -$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["Old style 'Share'"] = "Sdílení \"postaru\""; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky."; -$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."; -$a->strings["Single user instance"] = "Jednouživatelská instance"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"; -$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["Maximum Daily Registrations"] = "Maximální počet denních registrací"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."; -$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"] = "Nastavit pro nové uživatele příspěvky jako soukromé"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."; -$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."; -$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích"; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."; -$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit "; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."; -$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["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["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; -$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."; -$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["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["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"; -$a->strings["Suppress Language"] = "Potlačit Jazyk"; -$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích"; -$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti"; -$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)."; -$a->strings["Path for lock file"] = "Cesta k souboru zámku"; -$a->strings["Temp path"] = "Cesta k dočasným souborům"; -$a->strings["Base path to installation"] = "Základní cesta k instalaci"; -$a->strings["New base url"] = "Nová výchozí url adresa"; -$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["Registration successful. Email send to user"] = "Registrace úspěšná. Email zaslán uživateli"; +$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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l é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["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["Can not parse base url. Must have at least ://"] = ""; +$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; +$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; +$a->strings["Never"] = "Jamais"; +$a->strings["At post arrival"] = "A l'arrivé d'une publication"; +$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["Multi user instance"] = "Instance multi-utilisateurs"; +$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["Save Settings"] = "Sauvegarder les paramétres"; +$a->strings["File upload"] = "Téléversement de fichier"; +$a->strings["Policies"] = "Politiques"; +$a->strings["Advanced"] = "Avancé"; +$a->strings["Performance"] = "Performance"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Nom du site"; +$a->strings["Banner/Logo"] = "Bannière/Logo"; +$a->strings["Additional Info"] = "Informations supplémentaires"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; +$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é au niveau du profile utilisateur - 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'utilisation de SSL"; +$a->strings["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."; +$a->strings["Single user instance"] = "Instance mono-utilisateur"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."; +$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["Maximum Daily Registrations"] = "Inscriptions maximum par jour"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."; +$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"] = "autoriser le suivi des éléments par fil conducteur"; +$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"] = "Publications privées par défaut pour les nouveaux utilisateurs"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; +$a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu d'un billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l'acces public pour les extentions listées dans le menu apps."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; +$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 (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$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["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; +$a->strings["Suppress Language"] = "Supprimer un langage"; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Path to item cache"] = "Chemin vers le cache des objets."; +$a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Combien de temps faut-il garder les fichiers du cache? La valeur par défaut est de 86400 secondes (un jour)."; +$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage"; +$a->strings["Temp path"] = "Chemin des fichiers temporaires"; +$a->strings["Base path to installation"] = "Chemin de base de l'installation"; +$a->strings["New base url"] = ""; +$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["Registration successful. Email send to user"] = "Souscription réussi. Mail envoyé à l'utilisateur"; $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", + 0 => "%s utilisateur a (dé)bloqué", + 1 => "%s utilisateurs ont (dé)bloqué", ); $a->strings["%s user deleted"] = array( - 0 => "%s uživatel smazán", - 1 => "%s uživatelů smazáno", - 2 => "%s uživatelů smazáno", + 0 => "%s utilisateur supprimé", + 1 => "%s utilisateurs supprimés", ); -$a->strings["User '%s' deleted"] = "Uživatel '%s' smazán"; -$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován"; -$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován"; -$a->strings["Add User"] = "Přidat Uživatele"; -$a->strings["select all"] = "Vybrat vše"; -$a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení"; -$a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání"; -$a->strings["Request date"] = "Datum žádosti"; -$a->strings["Name"] = "Jméno"; -$a->strings["Email"] = "E-mail"; -$a->strings["No registrations."] = "Žádné registrace."; -$a->strings["Approve"] = "Schválit"; -$a->strings["Deny"] = "Odmítnout"; -$a->strings["Block"] = "Blokovat"; -$a->strings["Unblock"] = "Odblokovat"; -$a->strings["Site admin"] = "Site administrátor"; -$a->strings["Account expired"] = "Účtu vypršela platnost"; -$a->strings["New User"] = "Nový uživatel"; -$a->strings["Register date"] = "Datum registrace"; -$a->strings["Last login"] = "Datum posledního přihlášení"; -$a->strings["Last item"] = "Poslední položka"; -$a->strings["Deleted since"] = "Smazán od"; -$a->strings["Account"] = "Účet"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Už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?"; -$a->strings["Name of the new user."] = "Jméno nového uživatele"; -$a->strings["Nickname"] = "Přezdívka"; -$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele."; -$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele."; -$a->strings["Plugin %s disabled."] = "Plugin %s zakázán."; -$a->strings["Plugin %s enabled."] = "Plugin %s povolen."; -$a->strings["Disable"] = "Zakázat"; -$a->strings["Enable"] = "Povolit"; -$a->strings["Toggle"] = "Přepnout"; -$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["Enable Debugging"] = "Povolit ladění"; -$a->strings["Log file"] = "Soubor s logem"; -$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["Update now"] = "Aktualizovat"; -$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["Search"] = "Vyhledávání"; -$a->strings["No results."] = "Žádné výsledky."; -$a->strings["Tips for New Members"] = "Tipy pro nové členy"; -$a->strings["link"] = "odkaz"; -$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["Item not found"] = "Položka nenalezena"; -$a->strings["Edit post"] = "Upravit příspěvek"; -$a->strings["upload photo"] = "nahrát fotky"; -$a->strings["Attach file"] = "Přiložit soubor"; -$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 your location"] = "Nastavte vaši polohu"; -$a->strings["set location"] = "nastavit místo"; -$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; -$a->strings["clear location"] = "vymazat místo"; -$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["Item not available."] = "Položka není k dispozici."; -$a->strings["Item was not found."] = "Položka nebyla nalezena."; -$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["Find on this site"] = "Nalézt na tomto webu"; -$a->strings["Finding: "] = "Zjištění: "; -$a->strings["Site Directory"] = "Adresář serveru"; -$a->strings["Find"] = "Najít"; -$a->strings["Age: "] = "Věk: "; -$a->strings["Gender: "] = "Pohlaví: "; -$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["Contact settings applied."] = "Nastavení kontaktu změněno"; -$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; -$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 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["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["Remote Self"] = "Remote Self"; -$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; -$a->strings["Move account"] = "Přesunout účet"; -$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; -$a->strings["Account file"] = "Soubor s účtem"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; -$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; -$a->strings["Visible to:"] = "Viditelné pro:"; -$a->strings["Save"] = "Uložit"; -$a->strings["Help:"] = "Nápověda:"; -$a->strings["Help"] = "Nápověda"; -$a->strings["No profile"] = "Žádný profil"; -$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."; +$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["Add User"] = "Ajouter l'utilisateur"; +$a->strings["select all"] = "tout sélectionner"; +$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; +$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["Request date"] = "Date de la demande"; +$a->strings["Name"] = "Nom"; +$a->strings["Email"] = "Courriel"; +$a->strings["No registrations."] = "Pas d'inscriptions."; +$a->strings["Approve"] = "Approuver"; +$a->strings["Deny"] = "Rejetter"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Unblock"] = "Débloquer"; +$a->strings["Site admin"] = "Administration du Site"; +$a->strings["Account expired"] = "Compte expiré"; +$a->strings["New User"] = "Nouvel utilisateur"; +$a->strings["Register date"] = "Date d'inscription"; +$a->strings["Last login"] = "Dernière connexion"; +$a->strings["Last item"] = "Dernier élément"; +$a->strings["Deleted since"] = ""; +$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["Name of the new user."] = "Nom du nouvel utilisateur."; +$a->strings["Nickname"] = "Pseudo"; +$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur."; +$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur."; +$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["Enable Debugging"] = "Activer le déboggage"; +$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["Update now"] = "Mettre à jour"; +$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["Search"] = "Recherche"; +$a->strings["No results."] = "Aucun résultat."; +$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; +$a->strings["link"] = "lien"; +$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["Item not found"] = "Élément introuvable"; +$a->strings["Edit post"] = "Éditer le billet"; +$a->strings["upload photo"] = "envoi image"; +$a->strings["Attach file"] = "Joindre fichier"; +$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["audio link"] = "lien audio"; +$a->strings["Set your location"] = "Définir votre localisation"; +$a->strings["set location"] = "spéc. localisation"; +$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; +$a->strings["clear location"] = "supp. localisation"; +$a->strings["Permission settings"] = "Réglages des permissions"; +$a->strings["CC: email addresses"] = "CC: adresses de courriel"; +$a->strings["Public post"] = "Billet 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["Item not available."] = "Elément non disponible."; +$a->strings["Item was not found."] = "Element introuvable."; +$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["Find on this site"] = "Trouver sur ce site"; +$a->strings["Finding: "] = "Trouvé: "; +$a->strings["Site Directory"] = "Annuaire local"; +$a->strings["Find"] = "Trouver"; +$a->strings["Age: "] = "Age: "; +$a->strings["Gender: "] = "Genre: "; +$a->strings["About:"] = "À propos:"; +$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$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["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["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Move account"] = "Migrer le compte"; +$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; +$a->strings["Account file"] = "Fichier du compte"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; +$a->strings["Visible to:"] = "Visible par:"; +$a->strings["Save"] = "Sauver"; +$a->strings["Help:"] = "Aide:"; +$a->strings["Help"] = "Aide"; +$a->strings["No profile"] = "Aucun profil"; +$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 požadovaný parametr nebyl nalezen na daném místě", - 1 => "%d požadované parametry nebyly nalezeny na daném místě", - 2 => "%d požadované parametry nebyly nalezeny na daném místě", + 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."] = "Představení dokončeno."; -$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; -$a->strings["Profile unavailable."] = "Profil není k dispozici."; -$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; -$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."; -$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; -$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; -$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; -$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 propojení %s."; -$a->strings["Confirm"] = "Potvrdit"; -$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; -$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["Add a personal note:"] = "Přidat osobní poznámku:"; +$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 / Federativní Sociální Web"; +$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."] = " - 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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; -$a->strings["View in context"] = "Pohled v kontextu"; +$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 recherche Diaspora."; +$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; +$a->strings["Submit Request"] = "Envoyer la requête"; +$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["View in context"] = "Voir dans le contexte"; $a->strings["%d contact edited."] = array( - 0 => "%d kontakt upraven.", - 1 => "%d kontakty upraveny", - 2 => "%d kontaktů upraveno", + 0 => "%d contact édité", + 1 => "%d contacts édités.", ); -$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."; -$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["Contact has been archived"] = "Kontakt byl archivován"; -$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; -$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; -$a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; -$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["(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["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["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?"; +$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["(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 sdílený kontakt", - 1 => "%d sdílených kontaktů", - 2 => "%d sdílených kontaktů", + 0 => "%d contact en commun", + 1 => "%d contacts en commun", ); -$a->strings["View all contacts"] = "Zobrazit všechny kontakty"; -$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; -$a->strings["Unignore"] = "Přestat ignorovat"; -$a->strings["Ignore"] = "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["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 URL settings"] = "Opravit nastavení adresy URL "; -$a->strings["View conversations"] = "Zobrazit konverzace"; -$a->strings["Delete contact"] = "Odstranit kontakt"; -$a->strings["Last update:"] = "Poslední aktualizace:"; -$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; -$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["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; -$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["Notification for new posts"] = "Upozornění na nové příspěvky"; -$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; -$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál"; -$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["Search your contacts"] = "Prohledat Vaše kontakty"; -$a->strings["Update"] = "Aktualizace"; -$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; -$a->strings["Additional features"] = "Další funkčnosti"; -$a->strings["Display"] = "Zobrazení"; -$a->strings["Social Networks"] = "Sociální sítě"; -$a->strings["Delegations"] = "Delegace"; -$a->strings["Connected apps"] = "Propojené aplikace"; -$a->strings["Export personal data"] = "Export osobních údajů"; -$a->strings["Remove account"] = "Odstranit účet"; -$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; -$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["Features updated"] = "Aktualizované funkčnosti"; -$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; -$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["Wrong password."] = "Špatné heslo."; -$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[" 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["Wrong Password"] = "Špatné heslo"; -$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["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["Off"] = "Vypnuto"; -$a->strings["On"] = "Zapnuto"; -$a->strings["Additional Features"] = "Další Funkčnosti"; -$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["View all contacts"] = "Voir tous les contacts"; +$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Ignore"] = "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["Currently blocked"] = "Actuellement bloqué"; +$a->strings["Currently ignored"] = "Actuellement ignoré"; +$a->strings["Currently archived"] = "Actuellement archivé"; +$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; +$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["Notification for new posts"] = "Notification des nouvelles publications"; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Fetch further information for feeds"] = ""; +$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["Search your contacts"] = "Rechercher dans vos contacts"; +$a->strings["Update"] = "Mises-à-jour"; +$a->strings["everybody"] = "tout le monde"; +$a->strings["Additional features"] = "Fonctions supplémentaires"; +$a->strings["Display"] = "Afficher"; +$a->strings["Social Networks"] = "Réseaux sociaux"; +$a->strings["Delegations"] = "Délégations"; +$a->strings["Connected apps"] = "Applications connectées"; +$a->strings["Export personal data"] = "Exporter"; +$a->strings["Remove account"] = "Supprimer le compte"; +$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; +$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["Features updated"] = "Fonctionnalités mises à jour"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$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["Wrong password."] = "Mauvais mot de passe."; +$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["Wrong Password"] = "Mauvais mot de passe"; +$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["Off"] = "Éteint"; +$a->strings["On"] = "Allumé"; +$a->strings["Additional Features"] = "Fonctions supplémentaires"; +$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."] = "Přístup k elektronické poště je na tomto serveru zakázán."; -$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["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:"] = "Počet položek zobrazených na stránce:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; -$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; -$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; -$a->strings["Infinite scroll"] = "Nekonečné posouvání"; -$a->strings["User Types"] = "Uživatelské typy"; -$a->strings["Community Types"] = "Komunitní typy"; -$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 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 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 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["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; +$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["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["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; +$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = ""; +$a->strings["User Types"] = ""; +$a->strings["Community Types"] = ""; +$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."] = "(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 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["Password Settings"] = "Nastavení hesla"; -$a->strings["New Password:"] = "Nové heslo:"; -$a->strings["Confirm:"] = "Potvrďte:"; -$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; -$a->strings["Current Password:"] = "Stávající heslo:"; -$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; -$a->strings["Password:"] = "Heslo: "; -$a->strings["Basic Settings"] = "Základní nastavení"; -$a->strings["Full Name:"] = "Celé jméno:"; -$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["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["Show to Groups"] = "Zobrazit ve Skupinách"; -$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; -$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; -$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; -$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; -$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["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["Relocate"] = "Změna umístění"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; -$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; -$a->strings["Profile deleted."] = "Profil smazán."; +$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["Current Password:"] = "Mot de passe actuel:"; +$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; +$a->strings["Password:"] = "Mot de passe:"; +$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["Show to Groups"] = "Montrer aux groupes"; +$a->strings["Show to Contacts"] = "Montrer aux Contacts"; +$a->strings["Default Private Post"] = "Message privé par défaut"; +$a->strings["Default Public Post"] = "Message publique par défaut"; +$a->strings["Default Permissions for New Posts"] = "Permissions par défaut sur les nouveaux articles"; +$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["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Profile deleted."] = "Profil supprimé."; $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["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["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["Change Profile Photo"] = "Změna Profilové fotky"; -$a->strings["View this profile"] = "Zobrazit tento profil"; -$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; -$a->strings["Clone this profile"] = "Klonovat tento profil"; -$a->strings["Delete this profile"] = "Smazat tento profil"; -$a->strings["Profile Name:"] = "Jméno profilu:"; -$a->strings["Your Full Name:"] = "Vaše celé jméno:"; -$a->strings["Title/Description:"] = "Název / Popis:"; -$a->strings["Your Gender:"] = "Vaše pohlaví:"; -$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; -$a->strings["Street Address:"] = "Ulice:"; -$a->strings["Locality/City:"] = "Město:"; -$a->strings["Postal/Zip Code:"] = "PSČ:"; -$a->strings["Country:"] = "Země:"; -$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)"; -$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; -$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"; -$a->strings["Books, literature"] = "Knihy, literatura"; -$a->strings["Television"] = "Televize"; -$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; -$a->strings["Love/romance"] = "Láska/romantika"; -$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["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; -$a->strings["Group created."] = "Skupina vytvořena."; -$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; -$a->strings["Group not found."] = "Skupina nenalezena."; -$a->strings["Group name changed."] = "Název skupiny byl změněn."; -$a->strings["Save Group"] = "Uložit Skupinu"; -$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$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["Group Editor"] = "Editor skupin"; -$a->strings["Members"] = "Členové"; -$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; -$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 (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["New profile created."] = "Nouveau profil créé."; +$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; +$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["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; +$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; +$a->strings["Change Profile Photo"] = "Changer la photo 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"; +$a->strings["Clone this profile"] = "Cloner ce profil"; +$a->strings["Delete this profile"] = "Supprimer ce profil"; +$a->strings["Profile Name:"] = "Nom du profil:"; +$a->strings["Your Full Name:"] = "Votre nom complet:"; +$a->strings["Title/Description:"] = "Titre/Description:"; +$a->strings["Your Gender:"] = "Votre genre:"; +$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; +$a->strings["Street Address:"] = "Adresse postale:"; +$a->strings["Locality/City:"] = "Ville/Localité:"; +$a->strings["Postal/Zip Code:"] = "Code postal:"; +$a->strings["Country:"] = "Pays:"; +$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"] = "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["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["Edit/Manage Profiles"] = "Editer/gérer les profils"; +$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["Save Group"] = "Sauvegarder le groupe"; +$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["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 (raw HTML): "] = "bb2html (HTML brut)"; $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["Not available."] = "Není k dispozici."; -$a->strings["Contact added"] = "Kontakt přidán"; -$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; -$a->strings["System Notifications"] = "Systémová upozornění"; -$a->strings["New Message"] = "Nová zpráva"; -$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; -$a->strings["Messages"] = "Zprávy"; -$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; -$a->strings["Message deleted."] = "Zpráva odstraněna."; -$a->strings["Conversation removed."] = "Konverzace odstraněna."; -$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["Source input (Diaspora format): "] = "Texte source (format Diaspora) :"; +$a->strings["diaspora2bb: "] = "diaspora2bb :"; +$a->strings["Not available."] = "Indisponible."; +$a->strings["Contact added"] = "Contact ajouté"; +$a->strings["No more system notifications."] = "Pas plus de notifications système."; +$a->strings["System Notifications"] = "Notifications du système"; +$a->strings["New Message"] = "Nouveau message"; +$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; +$a->strings["Messages"] = "Messages"; +$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?"; +$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 zpráva", - 1 => "%d zprávy", - 2 => "%d zpráv", + 0 => "%d message", + 1 => "%d messages", ); -$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; -$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; +$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +$a->strings["Post successful."] = "Publication réussie."; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Časová konverze"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; -$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["Save to Folder:"] = "Uložit do složky:"; -$a->strings["- select -"] = "- vyber -"; -$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["No contacts."] = "Žádné kontakty."; -$a->strings["View Contacts"] = "Zobrazit kontakty"; -$a->strings["People Search"] = "Vyhledávání lidí"; -$a->strings["No matches"] = "Žádné shody"; -$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; -$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; -$a->strings["Album not found."] = "Album nenalezeno."; -$a->strings["Delete Album"] = "Smazat album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; -$a->strings["Delete Photo"] = "Smazat fotografii"; -$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; -$a->strings["a photo"] = "fotografie"; -$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; -$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; -$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; -$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; -$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["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["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; -$a->strings["Permissions"] = "Oprávnění:"; -$a->strings["Private Photo"] = "Soukromé Fotografie"; -$a->strings["Public Photo"] = "Veřejné Fotografie"; -$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["View Full Size"] = "Zobrazit v plné velikosti"; -$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"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Soukromé fotografie"; -$a->strings["Public photo"] = "Veřejné fotografie"; -$a->strings["Share"] = "Sdílet"; -$a->strings["View Album"] = "Zobrazit album"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; -$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["No videos selected"] = "Není vybráno žádné video"; -$a->strings["View Video"] = "Zobrazit video"; -$a->strings["Recent Videos"] = "Aktuální Videa"; -$a->strings["Upload New Videos"] = "Nahrát nová videa"; -$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; -$a->strings["Export account"] = "Exportovat účet"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; -$a->strings["Export all"] = "Exportovat vše"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; -$a->strings["Common Friends"] = "Společní přátelé"; -$a->strings["No contacts in common."] = "Žádné společné kontakty."; -$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; -$a->strings["Wall Photos"] = "Fotografie na zdi"; -$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["Upload File:"] = "Nahrát soubor:"; -$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"; -$a->strings["Crop Image"] = "Oříznout obrázek"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; -$a->strings["Done Editing"] = "Editace dokončena"; -$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; -$a->strings["Applications"] = "Aplikace"; -$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; -$a->strings["Nothing new here"] = "Zde není nic nového"; -$a->strings["Clear notifications"] = "Smazat notifikace"; -$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["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["Remove"] = "Odstranit"; -$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány."; +$a->strings["Time Conversion"] = "Conversion temporelle"; +$a->strings["Friendica 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["Save to Folder:"] = "Sauver dans le Dossier:"; +$a->strings["- select -"] = "- choisir -"; +$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["People Search"] = "Recherche de personnes"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$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["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"; +$a->strings["Delete Photo"] = "Effacer la photo"; +$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été identifié %2\$s par %3\$s"; +$a->strings["a photo"] = "une photo"; +$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["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["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 de statut pour cet envoi"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Private Photo"] = "Photo privée"; +$a->strings["Public Photo"] = "Photo publique"; +$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["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["Private photo"] = "Photo privée"; +$a->strings["Public photo"] = "Photo publique"; +$a->strings["Share"] = "Partager"; +$a->strings["View Album"] = "Voir l'album"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$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["No videos selected"] = "Pas de vidéo sélectionné"; +$a->strings["View Video"] = "Regarder la vidéo"; +$a->strings["Recent Videos"] = "Vidéos récente"; +$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; +$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; +$a->strings["Export account"] = "Exporter le compte"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; +$a->strings["Export all"] = "Tout exporter"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; +$a->strings["Wall Photos"] = "Photos du mur"; +$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["Upload File:"] = "Fichier à téléverser:"; +$a->strings["Select a profile:"] = "Choisir un profil:"; +$a->strings["Upload"] = "Téléverser"; +$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["Applications"] = "Applications"; +$a->strings["No installed applications."] = "Pas d'application installée."; +$a->strings["Nothing new here"] = "Rien de neuf ici"; +$a->strings["Clear notifications"] = "Effacer les notifications"; +$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["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["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"] = "Editovat událost"; -$a->strings["link to source"] = "odkaz na zdroj"; -$a->strings["Create New Event"] = "Vytvořit novou událost"; -$a->strings["Previous"] = "Předchozí"; -$a->strings["hour:minute"] = "hodina:minuta"; -$a->strings["Event details"] = "Detaily události"; -$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["Title:"] = "Název:"; -$a->strings["Share this event"] = "Sdílet tuto událost"; -$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["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; -$a->strings["Files"] = "Soubory"; -$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; -$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["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["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["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 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["{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["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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; -$a->strings["Discard"] = "Odstranit"; -$a->strings["System"] = "Systém"; -$a->strings["Network"] = "Síť"; -$a->strings["Introductions"] = "Představení"; -$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["Friend Suggestion"] = "Návrh přátelství"; -$a->strings["suggested by %s"] = "navrhl %s"; -$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; -$a->strings["if applicable"] = "je-li použitelné"; -$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["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 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 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["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; -$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; -$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; -$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; +$a->strings["Edit event"] = "Editer l'événement"; +$a->strings["link to source"] = "lien original"; +$a->strings["Create New Event"] = "Créer un nouvel événement"; +$a->strings["Previous"] = "Précédent"; +$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["Title:"] = "Titre :"; +$a->strings["Share this event"] = "Partager cet événement"; +$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["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; +$a->strings["Files"] = "Fichiers"; +$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; +$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["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["Unable to locate original post."] = "Impossible de localiser l'article original."; +$a->strings["Empty post discarded."] = "Article vide défaussé."; +$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["{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["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["Invalid request identifier."] = "Identifiant de demande invalide."; +$a->strings["Discard"] = "Rejeter"; +$a->strings["System"] = "Système"; +$a->strings["Network"] = "Réseau"; +$a->strings["Introductions"] = "Introductions"; +$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["Post a new friend activity"] = "Poster concernant les nouvelles amitiés"; +$a->strings["if applicable"] = "si possible"; +$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é le billet de %s"; +$a->strings["%s disliked %s's post"] = "%s n'a pas aimé le billet 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é un billet"; +$a->strings["%s commented on %s's post"] = "%s a commenté le billet 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 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["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; +$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; +$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; +$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; $a->strings["%d message sent."] = array( - 0 => "%d zpráva odeslána.", - 1 => "%d zprávy odeslány.", - 2 => "%d zprávy odeslány.", + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", ); -$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["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["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 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["Welcome to %s"] = "Vítá Vás %s"; -$a->strings["Friends of %s"] = "Přátelé uživatele %s"; -$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; -$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["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["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["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["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["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["Friends of %s"] = "Amis de %s"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; +$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 => "Pozvánka %d k dispozici", - 1 => "Pozvánky %d k dispozici", - 2 => "Pozvánky %d k dispozici", + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", ); -$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["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["User not found."] = "Uživatel nenalezen"; -$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; -$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; -$a->strings["view full size"] = "zobrazit v plné velikosti"; -$a->strings["Starts:"] = "Začíná:"; -$a->strings["Finishes:"] = "Končí:"; -$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["noreply"] = "neodpovídat"; -$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["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["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["Friends"] = "Přátelé"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; -$a->strings["poked"] = "šťouchnut"; -$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["remove"] = "odstranit"; -$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; -$a->strings["Follow Thread"] = "Následovat vlákno"; -$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["Poke"] = "Šťouchnout"; -$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í"; -$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; -$a->strings["and"] = "a"; -$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 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["Delete item(s)?"] = "Smazat položku(y)?"; -$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; -$a->strings["permissions"] = "oprávnění"; -$a->strings["Post to Groups"] = "Zveřejnit na Groups"; -$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; -$a->strings["Private post"] = "Soukromý příspěvek"; -$a->strings["Logged out."] = "Odhlášen."; -$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; -$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; -$a->strings["User creation error"] = "Chyba vytváření uživatele"; -$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; +$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["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["User not found."] = "Utilisateur non trouvé"; +$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; +$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; +$a->strings["view full size"] = "voir en pleine taille"; +$a->strings["Starts:"] = "Débute:"; +$a->strings["Finishes:"] = "Finit:"; +$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)"] = "(sans titre)"; +$a->strings["noreply"] = "noreply"; +$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["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["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["Friends"] = "Amis"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; +$a->strings["poked"] = "a titillé"; +$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["remove"] = "enlever"; +$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; +$a->strings["Follow Thread"] = "Suivre le fil"; +$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["Poke"] = "Sollicitations (pokes)"; +$a->strings["%s likes this."] = "%s aime ça."; +$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["and"] = "et"; +$a->strings[", and %d other people"] = ", et %d autres personnes"; +$a->strings["%s like this."] = "%s aiment ça."; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$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["Delete item(s)?"] = "Supprimer les élément(s) ?"; +$a->strings["Post to Email"] = "Publier aussi par courriel"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["permissions"] = "permissions"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = "Message privé"; +$a->strings["Logged out."] = "Déconnecté."; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; +$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; +$a->strings["User creation error"] = "Erreur de création d'utilisateur"; +$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; $a->strings["%d contact not imported"] = array( - 0 => "%d kontakt nenaimporován", - 1 => "%d kontaktů nenaimporováno", - 2 => "%d kontakty nenaimporovány", + 0 => "%d contacts non importés", + 1 => "%d contacts non importés", ); -$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; -$a->strings["newer"] = "novější"; -$a->strings["older"] = "starší"; -$a->strings["prev"] = "předchozí"; -$a->strings["first"] = "první"; -$a->strings["last"] = "poslední"; -$a->strings["next"] = "další"; -$a->strings["No contacts"] = "Žádné kontakty"; +$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; +$a->strings["newer"] = "Plus récent"; +$a->strings["older"] = "Plus ancien"; +$a->strings["prev"] = "précédent"; +$a->strings["first"] = "premier"; +$a->strings["last"] = "dernier"; +$a->strings["next"] = "suivant"; +$a->strings["No contacts"] = "Aucun contact"; $a->strings["%d Contact"] = array( - 0 => "%d kontakt", - 1 => "%d kontaktů", - 2 => "%d kontaktů", + 0 => "%d contact", + 1 => "%d contacts", ); -$a->strings["poke"] = "šťouchnout"; -$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"] = "osahávat"; -$a->strings["fingered"] = "osaháván"; -$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["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["January"] = "Ledna"; -$a->strings["February"] = "Února"; -$a->strings["March"] = "Března"; -$a->strings["April"] = "Dubna"; -$a->strings["May"] = "Května"; -$a->strings["June"] = "Června"; -$a->strings["July"] = "Července"; -$a->strings["August"] = "Srpna"; -$a->strings["September"] = "Září"; -$a->strings["October"] = "Října"; -$a->strings["November"] = "Listopadu"; -$a->strings["December"] = "Prosinec"; -$a->strings["bytes"] = "bytů"; -$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; -$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["Friendica Notification"] = "Friendica Notifikace"; -$a->strings["Thank You,"] = "Děkujeme, "; -$a->strings["%s Administrator"] = "%s Administrátor"; +$a->strings["poke"] = "titiller"; +$a->strings["ping"] = "attirer l'attention"; +$a->strings["pinged"] = "a attiré l'attention de"; +$a->strings["prod"] = "aiguillonner"; +$a->strings["prodded"] = "a aiguillonné"; +$a->strings["slap"] = "gifler"; +$a->strings["slapped"] = "a giflé"; +$a->strings["finger"] = "tripoter"; +$a->strings["fingered"] = "a tripoté"; +$a->strings["rebuff"] = "rabrouer"; +$a->strings["rebuffed"] = "a rabroué"; +$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["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["January"] = "Janvier"; +$a->strings["February"] = "Février"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Avril"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juin"; +$a->strings["July"] = "Juillet"; +$a->strings["August"] = "Août"; +$a->strings["September"] = "Septembre"; +$a->strings["October"] = "Octobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Décembre"; +$a->strings["bytes"] = "octets"; +$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +$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["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: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] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/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[" on Last.fm"] = " na Last.fm"; -$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["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["[no subject]"] = "[bez předmětu]"; -$a->strings["End this session"] = "Konec této relace"; -$a->strings["Sign in"] = "Přihlásit se"; -$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"; -$a->strings["Apps"] = "Aplikace"; -$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; -$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["Information"] = "Informace"; -$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; -$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; -$a->strings["Network Reset"] = "Síťový Reset"; -$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; -$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["Account settings"] = "Nastavení účtu"; -$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; -$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; -$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; -$a->strings["Navigation"] = "Navigace"; -$a->strings["Site map"] = "Mapa webu"; +$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] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/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[" on Last.fm"] = "sur Last.fm"; +$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["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["[no subject]"] = "[pas de sujet]"; +$a->strings["End this session"] = "Mettre fin à cette session"; +$a->strings["Sign in"] = "Se connecter"; +$a->strings["Home Page"] = "Page d'accueil"; +$a->strings["Create an account"] = "Créer un compte"; +$a->strings["Help and documentation"] = "Aide et documentation"; +$a->strings["Apps"] = "Applications"; +$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; +$a->strings["Search site content"] = "Rechercher dans le contenu du site"; +$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; +$a->strings["Directory"] = "Annuaire"; +$a->strings["People directory"] = "Annuaire des utilisateurs"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; +$a->strings["Conversations from your friends"] = "Conversations de vos amis"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; +$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["Account settings"] = "Compte"; +$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; +$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; +$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Carte du site"; $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["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; -$a->strings["Tags:"] = "Štítky:"; -$a->strings["Religion:"] = "Náboženství:"; -$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:"; -$a->strings["Books, literature:"] = "Knihy, literatura:"; -$a->strings["Television:"] = "Televize:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; -$a->strings["Love/Romance:"] = "Láska/romance"; -$a->strings["Work/employment:"] = "Práce/zaměstnání:"; -$a->strings["School/education:"] = "Škola/vzdělávání:"; -$a->strings["Image/photo"] = "Obrázek/fotografie"; -$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; -$a->strings[""] = ""; -$a->strings["$1 wrote:"] = "$1 napsal:"; -$a->strings["Encrypted content"] = "Šifrovaný obsah"; -$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; -$a->strings["Block immediately"] = "Okamžitě blokovat "; -$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; -$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; -$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; -$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; -$a->strings["Weekly"] = "Týdenně"; -$a->strings["Monthly"] = "Měsíčně"; +$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["Image/photo"] = "Image/photo"; +$a->strings["%s wrote the following post"] = ""; +$a->strings[""] = ""; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$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"; +$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; +$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; +$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; +$a->strings["Weekly"] = "Chaque semaine"; +$a->strings["Monthly"] = "Chaque mois"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["Zot!"] = "Zot!"; @@ -1590,136 +1577,136 @@ $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora konektor"; +$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; $a->strings["Statusnet"] = "Statusnet"; -$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ýdnem"; -$a->strings["weeks"] = "týdny"; -$a->strings["days"] = "dnů"; -$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["%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["General Features"] = "Obecné funkčnosti"; -$a->strings["Multiple Profiles"] = "Vícenásobné profily"; -$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; -$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; -$a->strings["Richtext Editor"] = "Richtext Editor"; -$a->strings["Enable richtext editor"] = "Povolit richtext editor"; -$a->strings["Post Preview"] = "Náhled příspěvku"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; -$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; -$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; -$a->strings["Search by Date"] = "Vyhledávat dle Data"; -$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; -$a->strings["Group Filter"] = "Skupinový Filtr"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; -$a->strings["Network Filter"] = "Síťový Filtr"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; -$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; -$a->strings["Network Tabs"] = "Síťové záložky"; -$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; -$a->strings["Network New Tab"] = "Nová záložka síť"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; -$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; -$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; -$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; -$a->strings["Multiple Deletion"] = "Násobné mazání"; -$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; -$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; -$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; -$a->strings["Tagging"] = "Štítkování"; -$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; -$a->strings["Post Categories"] = "Kategorie příspěvků"; -$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; -$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; -$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; -$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; -$a->strings["Star Posts"] = "Příspěvky s hvězdou"; -$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; -$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; -$a->strings["Attachments:"] = "Přílohy:"; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$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["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; -$a->strings["Archives"] = "Archív"; -$a->strings["Embedded content"] = "vložený obsah"; -$a->strings["Embedding disabled"] = "Vkládání zakázáno"; -$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["Male"] = "Muž"; -$a->strings["Female"] = "Žena"; -$a->strings["Currently Male"] = "V současné době muž"; -$a->strings["Currently Female"] = "V současné době žena"; -$a->strings["Mostly Male"] = "Většinou muž"; -$a->strings["Mostly Female"] = "Většinou žena"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transexuál"; -$a->strings["Hermaphrodite"] = "Hermafrodit"; -$a->strings["Neuter"] = "Neutrál"; -$a->strings["Non-specific"] = "Nespecifikováno"; -$a->strings["Other"] = "Jiné"; -$a->strings["Undecided"] = "Nerozhodnuto"; -$a->strings["Males"] = "Muži"; -$a->strings["Females"] = "Ženy"; +$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["%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["General Features"] = "Fonctions générales"; +$a->strings["Multiple Profiles"] = "Profils multiples"; +$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; +$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; +$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; +$a->strings["Post Preview"] = "Aperçu du billet"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des billets et commentaires avant de les publier"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; +$a->strings["Search by Date"] = "Rechercher par Date"; +$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les billets par intervalles de dates"; +$a->strings["Group Filter"] = "Filtre de groupe"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des Posts du Réseau seulement pour le groupe sélectionné"; +$a->strings["Network Filter"] = "Filtre de réseau"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des Posts du Réseau seulement pour le réseau sélectionné"; +$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; +$a->strings["Network Tabs"] = "Onglets Réseau"; +$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les Posts du Réseau où vous avez interagit"; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; +$a->strings["Multiple Deletion"] = "Suppression multiple"; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = "Edité les publications envoyées"; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = "Tagger"; +$a->strings["Ability to tag existing posts"] = "Autorisé à tagger des publications existantes"; +$a->strings["Post Categories"] = "Catégories des publications"; +$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = "N'aime pas"; +$a->strings["Ability to dislike posts/comments"] = "Autorisé a ne pas aimer les publications/commentaires"; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["Attachments:"] = "Pièces jointes : "; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$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["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; +$a->strings["Archives"] = "Archives"; +$a->strings["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$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["Male"] = "Masculin"; +$a->strings["Female"] = "Féminin"; +$a->strings["Currently Male"] = "Actuellement masculin"; +$a->strings["Currently Female"] = "Actuellement féminin"; +$a->strings["Mostly Male"] = "Principalement masculin"; +$a->strings["Mostly Female"] = "Principalement féminin"; +$a->strings["Transgender"] = "Transgenre"; +$a->strings["Intersex"] = "Inter-sexe"; +$a->strings["Transsexual"] = "Transsexuel"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neutre"; +$a->strings["Non-specific"] = "Non-spécifique"; +$a->strings["Other"] = "Autre"; +$a->strings["Undecided"] = "Indécis"; +$a->strings["Males"] = "Hommes"; +$a->strings["Females"] = "Femmes"; $a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbička"; -$a->strings["No Preference"] = "Bez preferencí"; -$a->strings["Bisexual"] = "Bisexuál"; -$a->strings["Autosexual"] = "Autosexuál"; +$a->strings["Lesbian"] = "Lesbienne"; +$a->strings["No Preference"] = "Sans préférence"; +$a->strings["Bisexual"] = "Bisexuel"; +$a->strings["Autosexual"] = "Auto-sexuel"; $a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "panic/panna"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetišista"; -$a->strings["Oodles"] = "Hodně"; -$a->strings["Nonsexual"] = "Nesexuální"; -$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"; -$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["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["It's complicated"] = "Je to složité"; -$a->strings["Don't care"] = "Nezajímá"; -$a->strings["Ask me"] = "Zeptej se mě"; -$a->strings["stopped following"] = "následování zastaveno"; -$a->strings["Drop Contact"] = "Odstranit kontakt"; +$a->strings["Virgin"] = "Vierge"; +$a->strings["Deviant"] = "Déviant"; +$a->strings["Fetish"] = "Fétichiste"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Non-sexuel"; +$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"; +$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"] = "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["It's complicated"] = "C'est compliqué"; +$a->strings["Don't care"] = "S'en désintéresse"; +$a->strings["Ask me"] = "Me demander"; +$a->strings["stopped following"] = "retiré de la liste de suivi"; +$a->strings["Drop Contact"] = "Supprimer le contact"; From 801d0a85f91fdee227c7b56f2634719214e9d10c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 17 May 2014 08:48:29 +0200 Subject: [PATCH 20/30] CS: update to the strings --- view/cs/messages.po | 1087 ++++++++++++++++++++++--------------------- view/cs/strings.php | 5 +- 2 files changed, 554 insertions(+), 538 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index c51af82316..87b3ccc72e 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-26 09:22+0200\n" -"PO-Revision-Date: 2014-04-28 17:57+0000\n" +"POT-Creation-Date: 2014-05-16 07:51+0200\n" +"PO-Revision-Date: 2014-05-16 17:27+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" @@ -28,19 +28,20 @@ msgid "Private Message" msgstr "Soukromá zpráva" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:670 +#: ../../mod/content.php:727 ../../mod/settings.php:671 msgid "Edit" msgstr "Upravit" #: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:612 +#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../include/conversation.php:612 msgid "Select" msgstr "Vybrat" -#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 #: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:671 ../../mod/group.php:171 -#: ../../mod/photos.php:1646 ../../include/conversation.php:613 +#: ../../mod/settings.php:672 ../../mod/group.php:171 +#: ../../mod/photos.php:1650 ../../include/conversation.php:613 msgid "Delete" msgstr "Odstranit" @@ -133,7 +134,7 @@ msgstr "%s od %s" #: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 #: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 msgid "Comment" msgstr "Okomentovat" @@ -141,7 +142,7 @@ msgstr "Okomentovat" #: ../../mod/editpost.php:124 ../../mod/content.php:498 #: ../../mod/content.php:882 ../../mod/message.php:334 #: ../../mod/message.php:565 ../../mod/photos.php:1541 -#: ../../include/conversation.php:690 ../../include/conversation.php:1102 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Čekejte prosím" @@ -154,7 +155,7 @@ msgstr[1] "%d komentářů" msgstr[2] "%d komentářů" #: ../../object/Item.php:369 ../../object/Item.php:382 -#: ../../mod/content.php:604 ../../include/text.php:1946 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "" @@ -168,7 +169,7 @@ msgstr "zobrazit více" #: ../../object/Item.php:655 ../../mod/content.php:706 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1685 +#: ../../mod/photos.php:1690 msgid "This is you" msgstr "Nastavte Vaši polohu" @@ -186,7 +187,7 @@ msgstr "Nastavte Vaši polohu" #: ../../mod/localtime.php:45 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 #: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 #: ../../mod/manage.php:110 msgid "Submit" @@ -226,8 +227,8 @@ msgstr "Video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 -#: ../../include/conversation.php:1119 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "Náhled" @@ -255,8 +256,8 @@ msgstr "Nedostatečné oprávnění" #: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 #: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 #: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 -#: ../../mod/settings.php:101 ../../mod/settings.php:590 -#: ../../mod/settings.php:595 ../../mod/profiles.php:146 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/profiles.php:146 #: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 @@ -268,7 +269,7 @@ msgstr "Nedostatečné oprávnění" #: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../wall_attach.php:55 ../../include/items.php:4373 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "Přístup odmítnut." @@ -413,7 +414,7 @@ msgid "Last likes" msgstr "Poslední líbí/nelíbí" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1940 +#: ../../include/conversation.php:246 ../../include/text.php:1953 msgid "event" msgstr "událost" @@ -429,7 +430,7 @@ msgstr "Stav" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:150 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1942 ../../include/diaspora.php:1908 +#: ../../include/text.php:1955 ../../include/diaspora.php:1908 msgid "photo" msgstr "fotografie" @@ -448,7 +449,7 @@ msgstr "Poslední fotografie" #: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 #: ../../mod/photos.php:155 ../../mod/photos.php:1062 #: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 msgid "Contact Photos" msgstr "Fotogalerie kontaktu" @@ -491,7 +492,7 @@ msgstr "Pozvat přátele" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 #: ../../include/nav.php:169 msgid "Settings" msgstr "Nastavení" @@ -570,7 +571,7 @@ msgid "Set colour scheme" msgstr "Nastavit barevné schéma" #: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1676 +#: ../../include/text.php:1689 msgid "default" msgstr "standardní" @@ -841,9 +842,9 @@ msgid "Public access denied." msgstr "Veřejný přístup odepřen." #: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4177 +#: ../../include/items.php:4194 msgid "Item not found." msgstr "Položka nenalezena." @@ -896,7 +897,7 @@ msgstr "Nejsou žádné nainstalované doplňky/aplikace" msgid "%1$s welcomes %2$s" msgstr "%1$s vítá %2$s" -#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro %s" @@ -951,25 +952,25 @@ msgstr "Toto je Váš veřejný profil.
Ten může #: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 #: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 -#: ../../mod/settings.php:998 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4218 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4235 msgid "Yes" msgstr "Ano" #: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" msgstr "Ne" @@ -982,7 +983,7 @@ msgstr "Členství na tomto webu je pouze na pozvání." msgid "Your invitation ID: " msgstr "Vaše pozvání ID:" -#: ../../mod/register.php:265 ../../mod/admin.php:573 +#: ../../mod/register.php:265 ../../mod/admin.php:575 msgid "Registration" msgstr "Registrace" @@ -1257,13 +1258,13 @@ msgstr "Vaše zpráva:" #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1084 +#: ../../include/conversation.php:1089 msgid "Upload photo" msgstr "Nahrát fotografii" #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1093 msgid "Insert web link" msgstr "Vložit webový odkaz" @@ -1463,11 +1464,11 @@ msgstr "Opravdu chcete smazat tento návrh?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 #: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 -#: ../../include/items.php:4221 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 +#: ../../include/items.php:4238 msgid "Cancel" msgstr "Zrušit" @@ -1886,419 +1887,419 @@ msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htc msgid "Theme settings updated." msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../mod/admin.php:101 ../../mod/admin.php:571 +#: ../../mod/admin.php:102 ../../mod/admin.php:573 msgid "Site" msgstr "Web" -#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 -#: ../../mod/settings.php:56 +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 msgid "Plugins" msgstr "Pluginy" -#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 msgid "Themes" msgstr "Témata" -#: ../../mod/admin.php:105 +#: ../../mod/admin.php:106 msgid "DB updates" msgstr "Aktualizace databáze" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 msgid "Logs" msgstr "Logy" -#: ../../mod/admin.php:125 ../../include/nav.php:180 +#: ../../mod/admin.php:126 ../../include/nav.php:180 msgid "Admin" msgstr "Administrace" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:127 msgid "Plugin Features" msgstr "Funkčnosti rozšíření" -#: ../../mod/admin.php:128 +#: ../../mod/admin.php:129 msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:187 ../../mod/admin.php:853 +#: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "Normální účet" -#: ../../mod/admin.php:188 ../../mod/admin.php:854 +#: ../../mod/admin.php:189 ../../mod/admin.php:856 msgid "Soapbox Account" msgstr "Soapbox účet" -#: ../../mod/admin.php:189 ../../mod/admin.php:855 +#: ../../mod/admin.php:190 ../../mod/admin.php:857 msgid "Community/Celebrity Account" msgstr "Komunitní účet / Účet celebrity" -#: ../../mod/admin.php:190 ../../mod/admin.php:856 +#: ../../mod/admin.php:191 ../../mod/admin.php:858 msgid "Automatic Friend Account" msgstr "Účet s automatickým schvalováním přátel" -#: ../../mod/admin.php:191 +#: ../../mod/admin.php:192 msgid "Blog Account" msgstr "Účet Blogu" -#: ../../mod/admin.php:192 +#: ../../mod/admin.php:193 msgid "Private Forum" msgstr "Soukromé fórum" -#: ../../mod/admin.php:211 +#: ../../mod/admin.php:212 msgid "Message queues" msgstr "Fronty zpráv" -#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 -#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 -#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 msgid "Administration" msgstr "Administrace" -#: ../../mod/admin.php:217 +#: ../../mod/admin.php:218 msgid "Summary" msgstr "Shrnutí" -#: ../../mod/admin.php:219 +#: ../../mod/admin.php:220 msgid "Registered users" msgstr "Registrovaní uživatelé" -#: ../../mod/admin.php:221 +#: ../../mod/admin.php:222 msgid "Pending registrations" msgstr "Čekající registrace" -#: ../../mod/admin.php:222 +#: ../../mod/admin.php:223 msgid "Version" msgstr "Verze" -#: ../../mod/admin.php:224 +#: ../../mod/admin.php:225 msgid "Active plugins" msgstr "Aktivní pluginy" -#: ../../mod/admin.php:247 +#: ../../mod/admin.php:248 msgid "Can not parse base url. Must have at least ://" msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" -#: ../../mod/admin.php:483 +#: ../../mod/admin.php:485 msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:512 ../../mod/settings.php:822 +#: ../../mod/admin.php:514 ../../mod/settings.php:823 msgid "No special theme for mobile devices" msgstr "žádné speciální téma pro mobilní zařízení" -#: ../../mod/admin.php:529 ../../mod/contacts.php:408 +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 msgid "Never" msgstr "Nikdy" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:532 msgid "At post arrival" msgstr "Při obdržení příspěvku" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Často" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "každou hodinu" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dvakrát denně" -#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "denně" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:541 msgid "Multi user instance" msgstr "Více uživatelská instance" -#: ../../mod/admin.php:557 +#: ../../mod/admin.php:559 msgid "Closed" msgstr "Uzavřeno" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:560 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: ../../mod/admin.php:559 +#: ../../mod/admin.php:561 msgid "Open" msgstr "Otevřená" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 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:564 +#: ../../mod/admin.php:566 msgid "Force all links to use SSL" msgstr "Vyžadovat u všech odkazů použití SSL" -#: ../../mod/admin.php:565 +#: ../../mod/admin.php:567 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:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 -#: ../../mod/admin.php:1333 ../../mod/settings.php:608 -#: ../../mod/settings.php:718 ../../mod/settings.php:792 -#: ../../mod/settings.php:871 ../../mod/settings.php:1101 +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 msgid "Save Settings" msgstr "Uložit Nastavení" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:576 msgid "File upload" msgstr "Nahrání souborů" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:577 msgid "Policies" msgstr "Politiky" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:578 msgid "Advanced" msgstr "Pokročilé" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:579 msgid "Performance" msgstr "Výkonnost" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:580 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:583 msgid "Site name" msgstr "Název webu" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:584 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "Additional Info" msgstr "Dodatečné informace" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:585 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:586 msgid "System language" msgstr "Systémový jazyk" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 msgid "System theme" msgstr "Grafická šablona systému " -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:587 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:586 +#: ../../mod/admin.php:588 msgid "Mobile system theme" msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:588 msgid "Theme for mobile devices" msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 msgid "SSL link policy" msgstr "Politika SSL odkazů" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:589 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:588 +#: ../../mod/admin.php:590 msgid "Old style 'Share'" msgstr "Sdílení \"postaru\"" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:590 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "Hide help entry from navigation menu" msgstr "skrýt nápovědu z navigačního menu" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:591 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:592 msgid "Make this instance multi-user or single-user for the named user" msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:593 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:592 +#: ../../mod/admin.php:594 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:594 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:593 +#: ../../mod/admin.php:595 msgid "JPEG image quality" msgstr "JPEG kvalita obrázku" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:595 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:595 +#: ../../mod/admin.php:597 msgid "Register policy" msgstr "Politika registrace" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:598 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Register text" msgstr "Registrace textu" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:599 msgid "Will be displayed prominently on the registration page." msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 msgid "Accounts abandoned after x days" msgstr "Účet je opuštěn po x dnech" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:600 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:599 +#: ../../mod/admin.php:601 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:601 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:600 +#: ../../mod/admin.php:602 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:602 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:601 +#: ../../mod/admin.php:603 msgid "Block public" msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:603 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:602 +#: ../../mod/admin.php:604 msgid "Force publish" msgstr "Publikovat" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 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:603 +#: ../../mod/admin.php:605 msgid "Global directory update URL" msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 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:604 +#: ../../mod/admin.php:606 msgid "Allow threaded items" msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 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:605 +#: ../../mod/admin.php:607 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:607 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:608 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "Disallow public access to addons listed in the apps menu." msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: ../../mod/admin.php:607 +#: ../../mod/admin.php:609 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2306,254 +2307,254 @@ msgid "" "while." msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit " -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Block multiple registrations" msgstr "Blokovat více registrací" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 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:611 +#: ../../mod/admin.php:613 msgid "OpenID support" msgstr "podpora OpenID" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:613 msgid "OpenID support for registration and logins." msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 msgid "Fullname check" msgstr "kontrola úplného jména" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:614 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:613 +#: ../../mod/admin.php:615 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:615 msgid "Use PHP UTF8 regular expressions" msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 msgid "Show Community Page" msgstr "Zobrazit stránku komunity" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:616 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:615 +#: ../../mod/admin.php:617 msgid "Enable OStatus support" msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:617 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "OStatus conversation completion interval" msgstr "Interval dokončení konverzace OStatus" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:618 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Enable Diaspora support" msgstr "Povolit podporu Diaspora" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:619 msgid "Provide built-in Diaspora network compatibility." msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 msgid "Only allow Friendica contacts" msgstr "Povolit pouze Friendica kontakty" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:620 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:619 +#: ../../mod/admin.php:621 msgid "Verify SSL" msgstr "Ověřit SSL" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:621 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:620 +#: ../../mod/admin.php:622 msgid "Proxy user" msgstr "Proxy uživatel" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:623 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "Network timeout" msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 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:623 +#: ../../mod/admin.php:625 msgid "Delivery interval" msgstr "Interval doručování" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 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:624 +#: ../../mod/admin.php:626 msgid "Poll interval" msgstr "Dotazovací interval" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 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:625 +#: ../../mod/admin.php:627 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 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:627 +#: ../../mod/admin.php:629 msgid "Use MySQL full text engine" msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:629 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress Language" msgstr "Potlačit Jazyk" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:630 msgid "Suppress language information in meta information about a posting." msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Path to item cache" msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Cache duration in seconds" msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den)." -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Path for lock file" msgstr "Cesta k souboru zámku" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Base path to installation" msgstr "Základní cesta k instalaci" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "New base url" msgstr "Nová výchozí url adresa" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol." -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 #, 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:673 +#: ../../mod/admin.php:675 #, php-format msgid "Update function %s could not be found." msgstr "Aktualizační funkce %s nebyla nalezena." -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:694 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:695 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:694 +#: ../../mod/admin.php:696 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: ../../mod/admin.php:695 +#: ../../mod/admin.php:697 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "Registrace úspěšná. Email zaslán uživateli" -#: ../../mod/admin.php:751 +#: ../../mod/admin.php:753 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" @@ -2561,7 +2562,7 @@ 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:758 +#: ../../mod/admin.php:760 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -2569,234 +2570,234 @@ msgstr[0] "%s uživatel smazán" msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:799 #, php-format msgid "User '%s' deleted" msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' unblocked" msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:807 #, php-format msgid "User '%s' blocked" msgstr "Uživatel '%s' blokován" -#: ../../mod/admin.php:900 +#: ../../mod/admin.php:902 msgid "Add User" msgstr "Přidat Uživatele" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:903 msgid "select all" msgstr "Vybrat vše" -#: ../../mod/admin.php:902 +#: ../../mod/admin.php:904 msgid "User registrations waiting for confirm" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:903 +#: ../../mod/admin.php:905 msgid "User waiting for permanent deletion" msgstr "Uživatel čeká na trvalé smazání" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:906 msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:930 ../../mod/crepair.php:150 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/crepair.php:150 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Name" msgstr "Jméno" -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "E-mail" -#: ../../mod/admin.php:905 +#: ../../mod/admin.php:907 msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:906 ../../mod/notifications.php:161 +#: ../../mod/admin.php:908 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Schválit" -#: ../../mod/admin.php:907 +#: ../../mod/admin.php:909 msgid "Deny" msgstr "Odmítnout" -#: ../../mod/admin.php:909 ../../mod/contacts.php:431 +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Block" msgstr "Blokovat" -#: ../../mod/admin.php:910 ../../mod/contacts.php:431 +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700 msgid "Unblock" msgstr "Odblokovat" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:913 msgid "Site admin" msgstr "Site administrátor" -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:914 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:917 msgid "New User" msgstr "Nový uživatel" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Register date" msgstr "Datum registrace" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last login" msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:916 ../../mod/admin.php:917 +#: ../../mod/admin.php:918 ../../mod/admin.php:919 msgid "Last item" msgstr "Poslední položka" -#: ../../mod/admin.php:916 +#: ../../mod/admin.php:918 msgid "Deleted since" msgstr "Smazán od" -#: ../../mod/admin.php:917 ../../mod/settings.php:35 +#: ../../mod/admin.php:919 ../../mod/settings.php:36 msgid "Account" msgstr "Účet" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:921 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?" -#: ../../mod/admin.php:920 +#: ../../mod/admin.php:922 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?" -#: ../../mod/admin.php:930 +#: ../../mod/admin.php:932 msgid "Name of the new user." msgstr "Jméno nového uživatele" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname" msgstr "Přezdívka" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:933 msgid "Nickname of the new user." msgstr "Přezdívka nového uživatele." -#: ../../mod/admin.php:932 +#: ../../mod/admin.php:934 msgid "Email address of the new user." msgstr "Emailová adresa nového uživatele." -#: ../../mod/admin.php:965 +#: ../../mod/admin.php:967 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:969 +#: ../../mod/admin.php:971 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s povolen." -#: ../../mod/admin.php:979 ../../mod/admin.php:1182 +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 msgid "Disable" msgstr "Zakázat" -#: ../../mod/admin.php:981 ../../mod/admin.php:1184 +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 msgid "Enable" msgstr "Povolit" -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 msgid "Toggle" msgstr "Přepnout" -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 msgid "Maintainer: " msgstr "Správce: " -#: ../../mod/admin.php:1142 +#: ../../mod/admin.php:1155 msgid "No themes found." msgstr "Nenalezeny žádná témata." -#: ../../mod/admin.php:1204 +#: ../../mod/admin.php:1217 msgid "Screenshot" msgstr "Snímek obrazovky" -#: ../../mod/admin.php:1250 +#: ../../mod/admin.php:1263 msgid "[Experimental]" msgstr "[Experimentální]" -#: ../../mod/admin.php:1251 +#: ../../mod/admin.php:1264 msgid "[Unsupported]" msgstr "[Nepodporováno]" -#: ../../mod/admin.php:1278 +#: ../../mod/admin.php:1291 msgid "Log settings updated." msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1347 msgid "Clear" msgstr "Vyčistit" -#: ../../mod/admin.php:1340 +#: ../../mod/admin.php:1353 msgid "Enable Debugging" msgstr "Povolit ladění" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 msgid "Log file" msgstr "Soubor s logem" -#: ../../mod/admin.php:1341 +#: ../../mod/admin.php:1354 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:1342 +#: ../../mod/admin.php:1355 msgid "Log level" msgstr "Úroveň auditu" -#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 msgid "Update now" msgstr "Aktualizovat" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1405 msgid "Close" msgstr "Zavřít" -#: ../../mod/admin.php:1398 +#: ../../mod/admin.php:1411 msgid "FTP Host" msgstr "Hostitel FTP" -#: ../../mod/admin.php:1399 +#: ../../mod/admin.php:1412 msgid "FTP Path" msgstr "Cesta FTP" -#: ../../mod/admin.php:1400 +#: ../../mod/admin.php:1413 msgid "FTP User" msgstr "FTP uživatel" -#: ../../mod/admin.php:1401 +#: ../../mod/admin.php:1414 msgid "FTP Password" msgstr "FTP heslo" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 -#: ../../include/text.php:939 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" msgstr "Vyhledávání" @@ -2827,75 +2828,75 @@ msgstr "Položka nenalezena" msgid "Edit post" msgstr "Upravit příspěvek" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 msgid "upload photo" msgstr "nahrát fotky" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 msgid "Attach file" msgstr "Přiložit soubor" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 msgid "attach file" msgstr "přidat soubor" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 msgid "web link" msgstr "webový odkaz" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 msgid "Insert video link" msgstr "Zadejte odkaz na video" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 msgid "video link" msgstr "odkaz na video" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 msgid "Insert audio link" msgstr "Zadejte odkaz na zvukový záznam" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 msgid "audio link" msgstr "odkaz na audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 msgid "Set your location" msgstr "Nastavte vaši polohu" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 msgid "set location" msgstr "nastavit místo" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 msgid "Clear browser location" msgstr "Odstranit adresu v prohlížeči" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 msgid "clear location" msgstr "vymazat místo" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 msgid "Permission settings" msgstr "Nastavení oprávnění" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 msgid "CC: email addresses" msgstr "skrytá kopie: e-mailové adresy" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 msgid "Public post" msgstr "Veřejný příspěvek" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 msgid "Set title" msgstr "Nastavit titulek" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 msgid "Categories (comma-separated list)" msgstr "Kategorie (čárkou oddělený seznam)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com" @@ -3066,7 +3067,7 @@ msgstr "Vzdálené soukromé informace nejsou k dispozici." msgid "Visible to:" msgstr "Viditelné pro:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 msgid "Save" msgstr "Uložit" @@ -3200,7 +3201,7 @@ msgstr "Prosím potvrďte Vaši žádost o propojení %s." msgid "Confirm" msgstr "Potvrdit" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 msgid "[Name Withheld]" msgstr "[Jméno odepřeno]" @@ -3252,7 +3253,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3592,609 +3593,617 @@ msgstr "Editovat kontakt" msgid "Search your contacts" msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:699 ../../mod/settings.php:131 -#: ../../mod/settings.php:634 +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 msgid "Update" msgstr "Aktualizace" -#: ../../mod/settings.php:28 ../../mod/photos.php:80 +#: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/settings.php:40 +#: ../../mod/settings.php:41 msgid "Additional features" msgstr "Další funkčnosti" -#: ../../mod/settings.php:45 +#: ../../mod/settings.php:46 msgid "Display" msgstr "Zobrazení" -#: ../../mod/settings.php:51 ../../mod/settings.php:774 +#: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" msgstr "Sociální sítě" -#: ../../mod/settings.php:61 ../../include/nav.php:167 +#: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" msgstr "Delegace" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:67 msgid "Connected apps" msgstr "Propojené aplikace" -#: ../../mod/settings.php:71 ../../mod/uexport.php:85 +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Export osobních údajů" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:77 msgid "Remove account" msgstr "Odstranit účet" -#: ../../mod/settings.php:128 +#: ../../mod/settings.php:129 msgid "Missing some important data!" msgstr "Chybí některé důležité údaje!" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:238 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:242 +#: ../../mod/settings.php:243 msgid "Email settings updated." msgstr "Nastavení e-mailu aktualizována." -#: ../../mod/settings.php:257 +#: ../../mod/settings.php:258 msgid "Features updated" msgstr "Aktualizované funkčnosti" -#: ../../mod/settings.php:318 +#: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: ../../mod/settings.php:332 +#: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: ../../mod/settings.php:337 +#: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:346 msgid "Wrong password." msgstr "Špatné heslo." -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:357 msgid "Password changed." msgstr "Heslo bylo změněno." -#: ../../mod/settings.php:358 +#: ../../mod/settings.php:359 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/settings.php:423 +#: ../../mod/settings.php:424 msgid " Please use a shorter name." msgstr "Prosím použijte kratší jméno." -#: ../../mod/settings.php:425 +#: ../../mod/settings.php:426 msgid " Name too short." msgstr "Jméno je příliš krátké." -#: ../../mod/settings.php:434 +#: ../../mod/settings.php:435 msgid "Wrong Password" msgstr "Špatné heslo" -#: ../../mod/settings.php:439 +#: ../../mod/settings.php:440 msgid " Not valid email." msgstr "Neplatný e-mail." -#: ../../mod/settings.php:445 +#: ../../mod/settings.php:446 msgid " Cannot change to that email." msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/settings.php:500 +#: ../../mod/settings.php:501 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:504 +#: ../../mod/settings.php:505 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:534 +#: ../../mod/settings.php:535 msgid "Settings updated." msgstr "Nastavení aktualizováno." -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 msgid "Add application" msgstr "Přidat aplikaci" -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Redirect" msgstr "Přesměrování" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" msgstr "URL ikony" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "You can't edit this application." msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:669 msgid "Connected Apps" msgstr "Připojené aplikace" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:673 msgid "Client key starts with" msgstr "Klienský klíč začíná" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:674 msgid "No name" msgstr "Bez názvu" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:675 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:687 msgid "No Plugin settings configured" msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Plugin Settings" msgstr "Nastavení doplňku" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "Off" msgstr "Vypnuto" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "On" msgstr "Zapnuto" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:717 msgid "Additional Features" msgstr "Další Funkčnosti" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 #, 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:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" msgstr "povoleno" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" msgstr "zakázáno" -#: ../../mod/settings.php:731 +#: ../../mod/settings.php:732 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:768 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:779 +#: ../../mod/settings.php:780 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: ../../mod/settings.php:780 +#: ../../mod/settings.php:781 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:781 +#: ../../mod/settings.php:782 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:784 msgid "IMAP server name:" msgstr "jméno IMAP serveru:" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:785 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:785 +#: ../../mod/settings.php:786 msgid "Security:" msgstr "Zabezpečení:" -#: ../../mod/settings.php:785 ../../mod/settings.php:790 +#: ../../mod/settings.php:786 ../../mod/settings.php:791 msgid "None" msgstr "Žádný" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:787 msgid "Email login name:" msgstr "přihlašovací jméno k e-mailu:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:788 msgid "Email password:" msgstr "heslo k Vašemu e-mailu:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:789 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Action after import:" msgstr "Akce po importu:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Mark as seen" msgstr "Označit jako přečtené" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Move to folder" msgstr "Přesunout do složky" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:792 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: ../../mod/settings.php:869 +#: ../../mod/settings.php:870 msgid "Display Settings" msgstr "Nastavení Zobrazení" -#: ../../mod/settings.php:875 ../../mod/settings.php:889 +#: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" msgstr "Vybrat grafickou šablonu:" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:877 msgid "Mobile Theme:" msgstr "Téma pro mobilní zařízení:" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekund, žádné maximum." -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:879 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: ../../mod/settings.php:878 ../../mod/settings.php:879 +#: ../../mod/settings.php:879 ../../mod/settings.php:880 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:880 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: ../../mod/settings.php:880 +#: ../../mod/settings.php:881 msgid "Don't show emoticons" msgstr "Nezobrazovat emotikony" -#: ../../mod/settings.php:881 +#: ../../mod/settings.php:882 msgid "Don't show notices" msgstr "Nezobrazovat oznámění" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:883 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Uživatelské typy" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Komunitní typy" + +#: ../../mod/settings.php:962 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:963 msgid "This account is a normal personal profile" msgstr "Tento účet je běžný osobní profil" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:966 msgid "Soapbox Page" msgstr "Stránka \"Soapbox\"" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:967 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:967 +#: ../../mod/settings.php:970 msgid "Community Forum/Celebrity Account" msgstr "Komunitní fórum/ účet celebrity" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 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:971 +#: ../../mod/settings.php:974 msgid "Automatic Friend Page" msgstr "Automatická stránka přítele" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 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:975 +#: ../../mod/settings.php:978 msgid "Private Forum [Experimental]" msgstr "Soukromé fórum [Experimentální]" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Private forum - approved members only" msgstr "Soukromé fórum - pouze pro schválené členy" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1001 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:1004 +#: ../../mod/settings.php:1007 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:1012 +#: ../../mod/settings.php:1015 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:1016 +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 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:1021 +#: ../../mod/settings.php:1024 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:1027 +#: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat Vaše příspěvky?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1036 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:1039 +#: ../../mod/settings.php:1042 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:1047 +#: ../../mod/settings.php:1050 msgid "Profile is not published." msgstr "Profil není zveřejněn." -#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" msgstr "nebo" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1058 msgid "Your Identity Address is" msgstr "Vaše adresa identity je" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 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:1067 +#: ../../mod/settings.php:1070 msgid "Advanced expiration settings" msgstr "Pokročilé nastavení expirací" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1071 msgid "Advanced Expiration" msgstr "Nastavení expirací" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1072 msgid "Expire posts:" msgstr "Expirovat příspěvky:" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1073 msgid "Expire personal notes:" msgstr "Expirovat osobní poznámky:" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1074 msgid "Expire starred posts:" msgstr "Expirovat příspěvky s hvězdou:" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1075 msgid "Expire photos:" msgstr "Expirovat fotografie:" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1076 msgid "Only expire posts by others:" msgstr "Přízpěvky expirovat pouze ostatními:" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1102 msgid "Account Settings" msgstr "Nastavení účtu" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1110 msgid "Password Settings" msgstr "Nastavení hesla" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "New Password:" msgstr "Nové heslo:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Confirm:" msgstr "Potvrďte:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1113 msgid "Current Password:" msgstr "Stávající heslo:" -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1114 msgid "Password:" msgstr "Heslo: " -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1118 msgid "Basic Settings" msgstr "Základní nastavení" -#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Celé jméno:" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "Email Address:" msgstr "E-mailová adresa:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Default Post Location:" msgstr "Výchozí umístění příspěvků:" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Use Browser Location:" msgstr "Používat umístění dle prohlížeče:" -#: ../../mod/settings.php:1123 +#: ../../mod/settings.php:1126 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1128 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet žádostí o přátelství za den:" -#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 msgid "(to prevent spam abuse)" msgstr "(Aby se zabránilo spamu)" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1129 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "(click to open/close)" msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 +#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 #: ../../mod/photos.php:1515 msgid "Show to Groups" msgstr "Zobrazit ve Skupinách" -#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 +#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 #: ../../mod/photos.php:1516 msgid "Show to Contacts" msgstr "Zobrazit v Kontaktech" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "Výchozí Soukromý příspěvek" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1142 msgid "Default Public Post" msgstr "Výchozí Veřejný příspěvek" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" msgstr "Výchozí oprávnění pro nové příspěvky" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1158 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum soukromých zpráv od neznámých lidí:" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1161 msgid "Notification Settings" msgstr "Nastavení notifikací" -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1162 msgid "By default post a status message when:" msgstr "Defaultně posílat statusové zprávy když:" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1163 msgid "accepting a friend request" msgstr "akceptuji požadavek na přátelství" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1164 msgid "joining a forum/community" msgstr "připojující se k fóru/komunitě" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1165 msgid "making an interesting profile change" msgstr "provedení zajímavé profilové změny" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1166 msgid "Send a notification email when:" msgstr "Poslat notifikaci e-mailem, když" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "You receive an introduction" msgstr "obdržíte žádost o propojení" -#: ../../mod/settings.php:1165 +#: ../../mod/settings.php:1168 msgid "Your introductions are confirmed" msgstr "Vaše žádosti jsou potvrzeny" -#: ../../mod/settings.php:1166 +#: ../../mod/settings.php:1169 msgid "Someone writes on your profile wall" msgstr "někdo Vám napíše na Vaši profilovou stránku" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Someone writes a followup comment" msgstr "někdo Vám napíše následný komentář" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "You receive a friend suggestion" msgstr "Obdržel jste návrh přátelství" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "You are tagged in a post" msgstr "Jste označen v příspěvku" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "You are poked/prodded/etc. in a post" msgstr "Byl Jste šťouchnout v příspěvku" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "Relocate" msgstr "Změna umístění" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" @@ -4742,7 +4751,7 @@ msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" msgid "No contacts." msgstr "Žádné kontakty." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 msgid "View Contacts" msgstr "Zobrazit kontakty" @@ -4754,7 +4763,7 @@ msgstr "Vyhledávání lidí" msgid "No matches" msgstr "Žádné shody" -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 msgid "Upload New Photos" msgstr "Nahrát nové fotografie" @@ -4862,7 +4871,7 @@ msgstr "Zobrazit nejprve nejnovější:" msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší:" -#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 msgid "View Photo" msgstr "Zobraz fotografii" @@ -4931,33 +4940,32 @@ msgstr "Soukromé fotografie" msgid "Public photo" msgstr "Veřejné fotografie" -#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 msgid "Share" msgstr "Sdílet" -#: ../../mod/photos.php:1799 ../../mod/videos.php:308 +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 msgid "View Album" msgstr "Zobrazit album" -#: ../../mod/photos.php:1808 +#: ../../mod/photos.php:1813 msgid "Recent Photos" msgstr "Aktuální fotografie" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 +#: ../../mod/wall_attach.php:75 msgid "Or - did you try to upload an empty file?" msgstr "Nebo - nenahrával jste prázdný soubor?" -#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 +#: ../../mod/wall_attach.php:81 #, php-format msgid "File exceeds size limit of %d" msgstr "Velikost souboru přesáhla limit %d" #: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -#: ../../wall_attach.php:122 ../../wall_attach.php:133 msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." @@ -4965,7 +4973,7 @@ msgstr "Nahrání souboru se nezdařilo." msgid "No videos selected" msgstr "Není vybráno žádné video" -#: ../../mod/videos.php:301 ../../include/text.php:1387 +#: ../../mod/videos.php:301 ../../include/text.php:1400 msgid "View Video" msgstr "Zobrazit video" @@ -5154,8 +5162,8 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editovat událost" -#: ../../mod/events.php:335 ../../include/text.php:1620 -#: ../../include/text.php:1631 +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 msgid "link to source" msgstr "odkaz na zdroj" @@ -5259,17 +5267,17 @@ msgstr "Soubory" msgid "System down for maintenance" msgstr "Systém vypnut z důvodů údržby" -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 msgid "Remove My Account" msgstr "Odstranit můj účet" -#: ../../mod/removeme.php:46 +#: ../../mod/removeme.php:47 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." -#: ../../mod/removeme.php:47 +#: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" @@ -5708,15 +5716,15 @@ msgstr "Všechno" msgid "Categories" msgstr "Kategorie" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 +#: ../../include/plugin.php:455 ../../include/plugin.php:457 msgid "Click here to upgrade." msgstr "Klikněte zde pro aktualizaci." -#: ../../include/plugin.php:462 +#: ../../include/plugin.php:463 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:467 +#: ../../include/plugin.php:468 msgid "This action is not available under your subscription plan." msgstr "Tato akce není v rámci Vašeho předplatného dostupná." @@ -5745,6 +5753,11 @@ msgstr "Začíná:" msgid "Finishes:" msgstr "Končí:" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, 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/notifier.php:774 ../../include/delivery.php:456 msgid "(no subject)" msgstr "(Bez předmětu)" @@ -5842,7 +5855,7 @@ msgstr "Přátelé" msgid "%1$s poked %2$s" msgstr "%1$s šťouchnul %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:990 +#: ../../include/conversation.php:211 ../../include/text.php:1003 msgid "poked" msgstr "šťouchnut" @@ -5961,23 +5974,28 @@ msgstr "Kde právě jste?" msgid "Delete item(s)?" msgstr "Smazat položku(y)?" -#: ../../include/conversation.php:1048 +#: ../../include/conversation.php:1049 msgid "Post to Email" msgstr "Poslat příspěvek na e-mail" -#: ../../include/conversation.php:1104 +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." + +#: ../../include/conversation.php:1109 msgid "permissions" msgstr "oprávnění" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1133 msgid "Post to Groups" msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1134 msgid "Post to Contacts" msgstr "Zveřejnit na Groups" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Private post" msgstr "Soukromý příspěvek" @@ -6022,35 +6040,35 @@ msgstr[2] "%d kontakty nenaimporovány" msgid "Done. You can now login with your username and password" msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" -#: ../../include/text.php:304 +#: ../../include/text.php:296 msgid "newer" msgstr "novější" -#: ../../include/text.php:306 +#: ../../include/text.php:298 msgid "older" msgstr "starší" -#: ../../include/text.php:311 +#: ../../include/text.php:303 msgid "prev" msgstr "předchozí" -#: ../../include/text.php:313 +#: ../../include/text.php:305 msgid "first" msgstr "první" -#: ../../include/text.php:345 +#: ../../include/text.php:337 msgid "last" msgstr "poslední" -#: ../../include/text.php:348 +#: ../../include/text.php:340 msgid "next" msgstr "další" -#: ../../include/text.php:840 +#: ../../include/text.php:853 msgid "No contacts" msgstr "Žádné kontakty" -#: ../../include/text.php:849 +#: ../../include/text.php:862 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -6058,227 +6076,227 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktů" msgstr[2] "%d kontaktů" -#: ../../include/text.php:990 +#: ../../include/text.php:1003 msgid "poke" msgstr "šťouchnout" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "ping" msgstr "cinknout" -#: ../../include/text.php:991 +#: ../../include/text.php:1004 msgid "pinged" msgstr "cinkut" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prod" msgstr "pobídnout" -#: ../../include/text.php:992 +#: ../../include/text.php:1005 msgid "prodded" msgstr "pobídnut" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slap" msgstr "dát facku" -#: ../../include/text.php:993 +#: ../../include/text.php:1006 msgid "slapped" msgstr "být uhozen" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "finger" msgstr "osahávat" -#: ../../include/text.php:994 +#: ../../include/text.php:1007 msgid "fingered" msgstr "osaháván" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuff" msgstr "odmítnout" -#: ../../include/text.php:995 +#: ../../include/text.php:1008 msgid "rebuffed" msgstr "odmítnut" -#: ../../include/text.php:1009 +#: ../../include/text.php:1022 msgid "happy" msgstr "šťasný" -#: ../../include/text.php:1010 +#: ../../include/text.php:1023 msgid "sad" msgstr "smutný" -#: ../../include/text.php:1011 +#: ../../include/text.php:1024 msgid "mellow" msgstr "jemný" -#: ../../include/text.php:1012 +#: ../../include/text.php:1025 msgid "tired" msgstr "unavený" -#: ../../include/text.php:1013 +#: ../../include/text.php:1026 msgid "perky" msgstr "emergický" -#: ../../include/text.php:1014 +#: ../../include/text.php:1027 msgid "angry" msgstr "nazlobený" -#: ../../include/text.php:1015 +#: ../../include/text.php:1028 msgid "stupified" msgstr "otupen" -#: ../../include/text.php:1016 +#: ../../include/text.php:1029 msgid "puzzled" msgstr "popletený" -#: ../../include/text.php:1017 +#: ../../include/text.php:1030 msgid "interested" msgstr "zajímavý" -#: ../../include/text.php:1018 +#: ../../include/text.php:1031 msgid "bitter" msgstr "hořký" -#: ../../include/text.php:1019 +#: ../../include/text.php:1032 msgid "cheerful" msgstr "radnostný" -#: ../../include/text.php:1020 +#: ../../include/text.php:1033 msgid "alive" msgstr "naživu" -#: ../../include/text.php:1021 +#: ../../include/text.php:1034 msgid "annoyed" msgstr "otráven" -#: ../../include/text.php:1022 +#: ../../include/text.php:1035 msgid "anxious" msgstr "znepokojený" -#: ../../include/text.php:1023 +#: ../../include/text.php:1036 msgid "cranky" msgstr "mrzutý" -#: ../../include/text.php:1024 +#: ../../include/text.php:1037 msgid "disturbed" msgstr "vyrušen" -#: ../../include/text.php:1025 +#: ../../include/text.php:1038 msgid "frustrated" msgstr "frustrovaný" -#: ../../include/text.php:1026 +#: ../../include/text.php:1039 msgid "motivated" msgstr "motivovaný" -#: ../../include/text.php:1027 +#: ../../include/text.php:1040 msgid "relaxed" msgstr "uvolněný" -#: ../../include/text.php:1028 +#: ../../include/text.php:1041 msgid "surprised" msgstr "překvapený" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Monday" msgstr "Pondělí" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Tuesday" msgstr "Úterý" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Wednesday" msgstr "Středa" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Thursday" msgstr "Čtvrtek" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Friday" msgstr "Pátek" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Saturday" msgstr "Sobota" -#: ../../include/text.php:1196 +#: ../../include/text.php:1209 msgid "Sunday" msgstr "Neděle" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "January" msgstr "Ledna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "February" msgstr "Února" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "March" msgstr "Března" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "April" msgstr "Dubna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "May" msgstr "Května" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "June" msgstr "Června" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "July" msgstr "Července" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "August" msgstr "Srpna" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "September" msgstr "Září" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "October" msgstr "Října" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "November" msgstr "Listopadu" -#: ../../include/text.php:1200 +#: ../../include/text.php:1213 msgid "December" msgstr "Prosinec" -#: ../../include/text.php:1419 +#: ../../include/text.php:1432 msgid "bytes" msgstr "bytů" -#: ../../include/text.php:1443 ../../include/text.php:1455 +#: ../../include/text.php:1456 ../../include/text.php:1468 msgid "Click to open/close" msgstr "Klikněte pro otevření/zavření" -#: ../../include/text.php:1688 +#: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" -#: ../../include/text.php:1944 +#: ../../include/text.php:1957 msgid "activity" msgstr "aktivita" -#: ../../include/text.php:1947 +#: ../../include/text.php:1960 msgid "post" msgstr "příspěvek" -#: ../../include/text.php:2115 +#: ../../include/text.php:2128 msgid "Item filed" msgstr "Položka vyplněna" @@ -6762,27 +6780,27 @@ msgstr "Práce/zaměstnání:" msgid "School/education:" msgstr "Škola/vzdělávání:" -#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:918 +#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 +#: ../../include/bbcode.php:922 msgid "Image/photo" msgstr "Obrázek/fotografie" -#: ../../include/bbcode.php:354 +#: ../../include/bbcode.php:357 #, php-format msgid "" "%s wrote the following post" msgstr "%s napsal následující příspěvek" -#: ../../include/bbcode.php:453 +#: ../../include/bbcode.php:457 msgid "" msgstr "" -#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 +#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 msgid "$1 wrote:" msgstr "$1 napsal:" -#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 +#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 msgid "Encrypted content" msgstr "Šifrovaný obsah" @@ -6935,12 +6953,12 @@ msgstr "sekund" msgid "%1$d %2$s ago" msgstr "před %1$d %2$s" -#: ../../include/datetime.php:472 ../../include/items.php:1964 +#: ../../include/datetime.php:472 ../../include/items.php:1981 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: ../../include/datetime.php:473 ../../include/items.php:1965 +#: ../../include/datetime.php:473 ../../include/items.php:1982 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny %s" @@ -7114,19 +7132,19 @@ msgstr "Přílohy:" msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " msgstr "Nový člověk si s vámi sdílí na" -#: ../../include/items.php:3693 +#: ../../include/items.php:3710 msgid "You have a new follower at " msgstr "Máte nového následovníka na" -#: ../../include/items.php:4216 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" msgstr "Opravdu chcete smazat tuto položku?" -#: ../../include/items.php:4443 +#: ../../include/items.php:4460 msgid "Archives" msgstr "Archív" @@ -7391,8 +7409,3 @@ msgstr "následování zastaveno" #: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "Odstranit kontakt" - -#: ../../include/dba.php:45 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" diff --git a/view/cs/strings.php b/view/cs/strings.php index 8236a6646f..7a6cb5df1e 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -874,6 +874,8 @@ $a->strings["Number of items to display per page when viewed from mobile device: $a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; $a->strings["Don't show notices"] = "Nezobrazovat oznámění"; $a->strings["Infinite scroll"] = "Nekonečné posouvání"; +$a->strings["User Types"] = "Uživatelské typy"; +$a->strings["Community Types"] = "Komunitní typy"; $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 Page"] = "Stránka \"Soapbox\""; @@ -1321,6 +1323,7 @@ $a->strings["There is no conversation with this id."] = "Nemáme žádnou konver $a->strings["view full size"] = "zobrazit v plné velikosti"; $a->strings["Starts:"] = "Začíná:"; $a->strings["Finishes:"] = "Končí:"; +$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["noreply"] = "neodpovídat"; $a->strings["An invitation is required."] = "Pozvánka je vyžadována."; @@ -1371,6 +1374,7 @@ $a->strings["Tag term:"] = "Štítek:"; $a->strings["Where are you right now?"] = "Kde právě jste?"; $a->strings["Delete item(s)?"] = "Smazat položku(y)?"; $a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; $a->strings["permissions"] = "oprávnění"; $a->strings["Post to Groups"] = "Zveřejnit na Groups"; $a->strings["Post to Contacts"] = "Zveřejnit na Groups"; @@ -1719,4 +1723,3 @@ $a->strings["Don't care"] = "Nezajímá"; $a->strings["Ask me"] = "Zeptej se mě"; $a->strings["stopped following"] = "následování zastaveno"; $a->strings["Drop Contact"] = "Odstranit kontakt"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; From b1b6fa21faba3c494c7dddfbcca330056d1766ea Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 17 May 2014 08:50:39 +0200 Subject: [PATCH 21/30] FR + CS: register_adminadd template from transifex --- view/cs/smarty3/register_adminadd_eml.tpl | 32 +++++++++++++++++++++++ view/fr/smarty3/register_adminadd_eml.tpl | 32 +++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 view/cs/smarty3/register_adminadd_eml.tpl create mode 100644 view/fr/smarty3/register_adminadd_eml.tpl diff --git a/view/cs/smarty3/register_adminadd_eml.tpl b/view/cs/smarty3/register_adminadd_eml.tpl new file mode 100644 index 0000000000..63efc7151b --- /dev/null +++ b/view/cs/smarty3/register_adminadd_eml.tpl @@ -0,0 +1,32 @@ +Drahý {{$username}}, + administrátor webu {{$sitename}} pro Vás vytvořil uživatelský účet. + +Vaše přihlašovací údaje jsou tyto: + + +Adresa webu: {{$siteurl}} +Uživatelské jméno: {{$email}} +Heslo: {{$password}} + +Vaše heslo si můžete po přihlášení změnit na stránce +. + +Prosím věnujte chvíli k revizi ostatních nastavení svého účtu. + +Můžete také přidat některé základní informace do Vašeho defaultního profilu + (na stránce "Profily"), čímž umožníte jiným lidem Vás snadněji nalézt. + +Doporučujeme nastavit celé jméno, přidat profilové foto +, přidat nějaká profilová "klíčová slova" (což je velmi užitečné pro hledání nových přátel) a + zemi, ve které žijete. Nemusíte zadávat víc +informací. + +Plně respektujeme Vaše právo na soukromí a žádná z výše uvedených položek není povinná. +Pokud jste nový a neznáte na tomto webu nikoho jiného, zadáním těchto +položek můžete získat nové a zajímavé přátele. + + +Díky a vítejte na {{$sitename}}. + +S pozdravem, + {{$sitename}} administrátor \ No newline at end of file diff --git a/view/fr/smarty3/register_adminadd_eml.tpl b/view/fr/smarty3/register_adminadd_eml.tpl new file mode 100644 index 0000000000..c122640879 --- /dev/null +++ b/view/fr/smarty3/register_adminadd_eml.tpl @@ -0,0 +1,32 @@ +Chère, Cher {{$username}}, + l'administrateur de {{$sitename}} vous à créé un compte. + +Les détails de connexion sont les suivants : + + +Emplacement du site : {{$siteurl}} +Nom de connexion : {{$email}} +Mot de passe : {{$password}} + +Vous pouvez modifier votre mot de passe à la page des "Paramètres" de votre compte, une fois +connecté. + +Veuillez prendre le temps d'examiner les autres paramètres de votre compte sur cette page. + +Vous pouvez aussi ajouter quelques informatiques de base à votre profil par défaut +(sur la page "Profils") pour que d'autres personnes vous trouvent facilement. + +Nous vous recommandons d'indiquer votre nom complet, d'ajouter une photo pour votre profil, +d'ajouter quelques "mots-clés" (très efficace pour se faire de nouveaux amis) - et +peut-être aussi votre pays de résidence ; sauf si vous souhaitez pas être +aussi spécifique. + +Nous respectons entièrement votre vie privée, et aucun de ces éléments n'est nécessaire. +Si vous êtes nouveau et ne connaissez personne, ils peuvent vous +aider à vous faire de nouveaux et interessants amis. + + +Merci, et bienvenue sur {{$sitename}}. + +Sincèrement votre, + L'administrateur de {{$sitename}} \ No newline at end of file From 13d578234d7464f2aa508467bff11043228dd658 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 17 May 2014 14:49:05 +0200 Subject: [PATCH 22/30] small update to the CS and DE strings --- view/cs/messages.po | 7986 +++++++++++++++++++++---------------------- view/cs/strings.php | 1918 ++++++----- view/de/messages.po | 7974 +++++++++++++++++++++--------------------- view/de/strings.php | 1906 +++++------ 4 files changed, 9836 insertions(+), 9948 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index 87b3ccc72e..a385085c08 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 07:51+0200\n" -"PO-Revision-Date: 2014-05-16 17:27+0000\n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-17 09:06+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" @@ -22,26 +22,26 @@ msgstr "" msgid "This entry was edited" msgstr "Tento záznam byl editován" -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1355 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "Soukromá zpráva" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:671 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "Upravit" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 #: ../../include/conversation.php:612 msgid "Select" msgstr "Vybrat" -#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:672 ../../mod/group.php:171 -#: ../../mod/photos.php:1650 ../../include/conversation.php:613 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "Odstranit" @@ -69,8 +69,8 @@ msgstr "označeno hvězdou" msgid "add tag" msgstr "přidat štítek" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1538 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "Líbí se mi to (přepínač)" @@ -78,8 +78,8 @@ msgstr "Líbí se mi to (přepínač)" msgid "like" msgstr "má rád" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1539 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "Nelíbí se mi to (přepínač)" @@ -132,16 +132,16 @@ msgstr "přes Zeď-na-Zeď " msgid "%s from %s" msgstr "%s od %s" -#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 -#: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "Okomentovat" -#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 #: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Čekejte prosím" @@ -162,34 +162,31 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "komentář" -#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "zobrazit více" -#: ../../object/Item.php:655 ../../mod/content.php:706 -#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1690 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "Nastavte Vaši polohu" -#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "Odeslat" @@ -226,8 +223,8 @@ msgid "Video" msgstr "Video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 #: ../../include/conversation.php:1124 msgid "Preview" msgstr "Náhled" @@ -244,31 +241,32 @@ msgstr "Nenalezen" msgid "Page not found." msgstr "Stránka nenalezena" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Nedostatečné oprávnění" -#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 -#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 #: ../../mod/settings.php:102 ../../mod/settings.php:591 -#: ../../mod/settings.php:596 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 -#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 #: ../../include/items.php:4390 msgid "Permission denied." msgstr "Přístup odmítnut." @@ -277,681 +275,197 @@ msgstr "Přístup odmítnut." msgid "toggle mobile" msgstr "přepnout mobil" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:145 -msgid "Home" -msgstr "Domů" +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:145 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "Kontakt nenalezen." -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" -msgstr "Profil" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Návrhy přátelství odeslány " -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Vaše profilová stránka" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Navrhněte přátelé" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "Fotografie" - -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Vaše fotky" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "Události" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "Vaše události" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Osobní poznámky" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Vaše osobní fotky" - -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Komunita" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "nikdy nezobrazit" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "zobrazit" - -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:49 -msgid "Theme settings" -msgstr "Nastavení téma" - -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Nastav velikost písma pro přízpěvky a komentáře." - -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Nastav výšku řádku pro přízpěvky a komentáře." - -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Nastav rozlišení pro prostřední sloupec" - -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 -#: ../../include/nav.php:173 -msgid "Contacts" -msgstr "Kontakty" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vaše kontakty" - -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Komunitní stránky" - -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Komunitní profily" - -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Poslední uživatelé" - -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Poslední líbí/nelíbí" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1953 -msgid "event" -msgstr "událost" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1908 -msgid "status" -msgstr "Stav" - -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1955 ../../include/diaspora.php:1908 -msgid "photo" -msgstr "fotografie" - -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s má rád %2$s' na %3$s" +msgid "Suggest a friend for %s" +msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Poslední fotografie" +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Toto pozvání již bylo přijato." -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1062 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 -msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 -#: ../../mod/photos.php:729 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -msgid "Profile Photos" -msgstr "Profilové fotografie" +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Nalézt Přátele" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokální Adresář" +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d 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ě" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Globální adresář" +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Představení dokončeno." -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Podobné zájmy" +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Neopravitelná chyba protokolu" -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Pozvat přátele" +#: ../../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í." -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 -#: ../../include/nav.php:169 -msgid "Settings" -msgstr "Nastavení" +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Ochrana proti spamu byla aktivována" -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../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." -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Nastavit faktor přiblížení pro Earth Layers" +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Neplatný odkaz" -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Pomoc nebo @ProNováčky ?" +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Propojené služby" +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Již jste se zde zavedli." -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Zobrazit/skrýt boxy na pravém sloupci:" +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Zřejmě jste již přátelé se %s." -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Nastavení barevného schematu" +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Neplatné URL profilu." -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Nastavit přiblížení pro Earth Layer" +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Zarovnání" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Nepodařilo se aktualizovat kontakt." -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Vlevo" +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Vaše žádost o propojení byla odeslána." -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Uprostřed" +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Barevné schéma" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Velikost písma u příspěvků" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Velikost písma textů" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1689 -msgid "default" -msgstr "standardní" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "Obrázek pozadí" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/dfrn_request.php:659 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí." +"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." -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" -msgstr "Barva pozadí" +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #" - -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "velikost fondu" - -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "základní velikost fontu" - -#: ../../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:85 -msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" - -#: ../../view/theme/vier/config.php:50 -msgid "Set style" -msgstr "Nastavit styl" - -#: ../../boot.php:692 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" - -#: ../../boot.php:695 -msgid "show fewer" -msgstr "zobrazit méně" - -#: ../../boot.php:1023 +#: ../../mod/dfrn_request.php:673 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." +msgid "Welcome home %s." +msgstr "Vítejte doma %s." -#: ../../boot.php:1025 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Update Error at %s" -msgstr "Chyba aktualizace na %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." -#: ../../boot.php:1135 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Potvrdit" -#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 -msgid "Register" -msgstr "Registrovat" +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Jméno odepřeno]" -#: ../../boot.php:1160 ../../include/nav.php:73 -msgid "Logout" -msgstr "Odhlásit se" - -#: ../../boot.php:1161 ../../include/nav.php:91 -msgid "Login" -msgstr "Přihlásit se" - -#: ../../boot.php:1163 -msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" - -#: ../../boot.php:1164 -msgid "Password: " -msgstr "Heslo: " - -#: ../../boot.php:1165 -msgid "Remember me" -msgstr "Pamatuj si mne" - -#: ../../boot.php:1168 -msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " - -#: ../../boot.php:1174 -msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" - -#: ../../boot.php:1175 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "Obnovení hesla" - -#: ../../boot.php:1177 -msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" - -#: ../../boot.php:1178 -msgid "terms of service" -msgstr "podmínky použití" - -#: ../../boot.php:1180 -msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" - -#: ../../boot.php:1181 -msgid "privacy policy" -msgstr "Ochrana soukromí" - -#: ../../boot.php:1314 -msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." - -#: ../../boot.php:1353 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." - -#: ../../boot.php:1393 ../../boot.php:1497 -msgid "Edit profile" -msgstr "Upravit profil" - -#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Spojit" - -#: ../../boot.php:1459 -msgid "Message" -msgstr "Zpráva" - -#: ../../boot.php:1467 ../../include/nav.php:171 -msgid "Profiles" -msgstr "Profily" - -#: ../../boot.php:1467 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" - -#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 -msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" - -#: ../../boot.php:1474 ../../mod/profiles.php:731 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" - -#: ../../boot.php:1484 ../../mod/profiles.php:742 -msgid "Profile Image" -msgstr "Profilový obrázek" - -#: ../../boot.php:1487 ../../mod/profiles.php:744 -msgid "visible to everybody" -msgstr "viditelné pro všechny" - -#: ../../boot.php:1488 ../../mod/profiles.php:745 -msgid "Edit visibility" -msgstr "Upravit viditelnost" - -#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 -msgid "Location:" -msgstr "Místo:" - -#: ../../boot.php:1515 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Pohlaví:" - -#: ../../boot.php:1518 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../boot.php:1520 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Domácí stránka:" - -#: ../../boot.php:1596 ../../boot.php:1682 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1597 ../../boot.php:1683 -msgid "F d" -msgstr "d. F" - -#: ../../boot.php:1642 ../../boot.php:1723 -msgid "[today]" -msgstr "[Dnes]" - -#: ../../boot.php:1654 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" - -#: ../../boot.php:1655 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: ../../boot.php:1716 -msgid "[No description]" -msgstr "[Žádný popis]" - -#: ../../boot.php:1734 -msgid "Event Reminders" -msgstr "Připomenutí událostí" - -#: ../../boot.php:1735 -msgid "Events this week:" -msgstr "Události tohoto týdne:" - -#: ../../boot.php:1972 ../../include/nav.php:76 -msgid "Status" -msgstr "Stav" - -#: ../../boot.php:1975 -msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " - -#: ../../boot.php:1982 -msgid "Profile Details" -msgstr "Detaily profilu" - -#: ../../boot.php:1989 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalba" - -#: ../../boot.php:1993 ../../boot.php:1996 -msgid "Videos" -msgstr "Videa" - -#: ../../boot.php:2006 -msgid "Events and Calendar" -msgstr "Události a kalendář" - -#: ../../boot.php:2010 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Osobní poznámky" - -#: ../../boot.php:2013 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s je právě %2$s" - -#: ../../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/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 -#: ../../mod/videos.php:115 +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 msgid "Public access denied." msgstr "Veřejný přístup odepřen." -#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4194 -msgid "Item not found." -msgstr "Položka nenalezena." - -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." - -#: ../../mod/display.php:263 -msgid "Item has been removed." -msgstr "Položka byla odstraněna." - -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Přístup odmítnut" - -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" -msgstr "Toto je Friendica, verze" - -#: ../../mod/friendica.php:59 -msgid "running at web location" -msgstr "běžící na webu" - -#: ../../mod/friendica.php:61 +#: ../../mod/dfrn_request.php:811 msgid "" -"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." +"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/friendica.php:63 -msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny navštivte:" +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Připojte se jako emailový následovník (Již brzy)" -#: ../../mod/friendica.php:64 +#: ../../mod/dfrn_request.php:829 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" +"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/friendica.php:78 -msgid "Installed plugins/addons/apps:" -msgstr "Instalované pluginy/doplňky/aplikace:" +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" -msgstr "Nejsou žádné nainstalované doplňky/aplikace" +#: ../../mod/dfrn_request.php:833 +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_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Odpovězte, prosím, následující:" + +#: ../../mod/dfrn_request.php:835 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s vítá %2$s" +msgid "Does %s know you?" +msgstr "Zná Vás uživatel %s ?" -#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" - -#: ../../mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." - -#: ../../mod/register.php:104 -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." - -#: ../../mod/register.php:109 -msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." - -#: ../../mod/register.php:149 -#, php-format -msgid "Registration request at %s" -msgstr "Žádost o registraci na %s" - -#: ../../mod/register.php:158 -msgid "Your registration is pending approval by the site owner." -msgstr "Vaše registrace čeká na schválení vlastníkem serveru." - -#: ../../mod/register.php:196 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "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:224 -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'." - -#: ../../mod/register.php:225 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." - -#: ../../mod/register.php:226 -msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " - -#: ../../mod/register.php:240 -msgid "Include your profile in member directory?" -msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." - -#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 #: ../../mod/settings.php:1001 ../../mod/settings.php:1007 #: ../../mod/settings.php:1015 ../../mod/settings.php:1019 #: ../../mod/settings.php:1024 ../../mod/settings.php:1030 @@ -959,12 +473,12 @@ msgstr "Toto je Váš veřejný profil.
Ten může #: ../../mod/settings.php:1072 ../../mod/settings.php:1073 #: ../../mod/settings.php:1074 ../../mod/settings.php:1075 #: ../../mod/settings.php:1076 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4235 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 msgid "Yes" msgstr "Ano" -#: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 #: ../../mod/settings.php:1007 ../../mod/settings.php:1015 #: ../../mod/settings.php:1019 ../../mod/settings.php:1024 #: ../../mod/settings.php:1030 ../../mod/settings.php:1036 @@ -975,913 +489,337 @@ msgstr "Ano" msgid "No" msgstr "Ne" -#: ../../mod/register.php:261 -msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Přidat osobní poznámku:" -#: ../../mod/register.php:262 -msgid "Your invitation ID: " -msgstr "Vaše pozvání ID:" +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/register.php:265 ../../mod/admin.php:575 -msgid "Registration" -msgstr "Registrace" +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vaše celé jméno (např. Jan Novák):" +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/register.php:274 -msgid "Your Email Address: " -msgstr "Vaše e-mailová adresa:" - -#: ../../mod/register.php:275 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "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:276 -msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" - -#: ../../mod/register.php:285 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "Import Vašeho profilu do této friendica instance" - -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:587 -msgid "Profile not found." -msgstr "Profil nenalezen" - -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nenalezen." - -#: ../../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:246 -msgid "Unexpected response from remote site: " -msgstr "Neočekávaná odpověď od vzdáleného serveru:" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." - -#: ../../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: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:275 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." - -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s je nyní přítel s %2$s" - -#: ../../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: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: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." - -#: ../../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: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." - -#: ../../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: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:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Připojení přijato na %s" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" - -#: ../../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/lostpass.php:17 -msgid "No valid account found." -msgstr "Nenalezen žádný platný účet." - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Na %s bylo zažádáno o resetování hesla" - -#: ../../mod/lostpass.php:66 -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." - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "Vaše heslo bylo na Vaše přání resetováno." - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "Někdo Vám napsal na Vaši profilovou stránku" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "Uložte si nebo zkopírujte nové heslo - a pak" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "klikněte zde pro přihlášení" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Vaše heslo bylo změněno na %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Zapomněli jste heslo?" - -#: ../../mod/lostpass.php:123 -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:124 -msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail: " - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Reset" - -#: ../../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:63 -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:70 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -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:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" - -#: ../../mod/wallmessage.php:143 +#: ../../mod/dfrn_request.php:843 #, 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ů." +" - 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/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Adresát:" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Předmět:" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Odeslat žádost" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Vaše zpráva:" - -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1089 -msgid "Upload photo" -msgstr "Nahrát fotografii" - -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1093 -msgid "Insert web link" -msgstr "Vložit webový odkaz" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Vítejte na Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -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. 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: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." - -#: ../../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í." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editujte Váš 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 "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: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í." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Probíhá pokus o připojení" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "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 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: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." - -#: ../../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:270 -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íť." - -#: ../../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í." - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" - -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 -#: ../../include/items.php:4238 +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 msgid "Cancel" msgstr "Zrušit" -#: ../../mod/suggest.php:72 -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/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Zobrazit video" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorovat / skrýt" +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Výsledky hledání pro:" +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." -#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Odstranit termín" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" -#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Uložená hledání" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Neplatný identifikátor požadavku." -#: ../../mod/network.php:189 ../../include/group.php:275 -msgid "add" -msgstr "přidat" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Odstranit" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Dle komentářů" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Ignorovat" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Řadit podle data komentáře" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Systém" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Dle data" +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Síť" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Řadit podle data příspěvku" - -#: ../../mod/network.php:365 ../../mod/notifications.php:88 +#: ../../mod/notifications.php:88 ../../mod/network.php:365 msgid "Personal" msgstr "Osobní" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" +msgstr "Domů" -#: ../../mod/network.php:374 -msgid "New" -msgstr "Nové" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Představení" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Proud aktivit - dle data" +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Zprávy" -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Sdílené odkazy" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Zobrazit ignorované žádosti" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Zajímavé odkazy" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Skrýt ignorované žádosti" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "S hvězdičkou" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Typ oznámení: " -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Oblíbené přízpěvky" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Návrh přátelství" -#: ../../mod/network.php:457 +#: ../../mod/notifications.php:152 #, 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] "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ě." +msgid "suggested by %s" +msgstr "navrhl %s" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Žádná taková skupina" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Zveřejnit aktivitu nového přítele." -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Skupina je prázdná" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "je-li použitelné" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Skupina: " +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Schválit" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Kontakt: " +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Vaši údajní známí: " -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ano" -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Neplatný kontakt." +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "ne" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Komunikační server - Nastavení" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Schválit jako: " -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Přítel" -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Nelze vytvořit tabulku." +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Sdílené" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Vaše databáze Friendica byla nainstalována." +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fanoušek / obdivovatel" -#: ../../mod/install.php:138 +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Přítel / žádost o připojení" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nový následovník" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Žádné představení." + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Upozornění" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval příspěvek uživatele %s'" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Žádné další síťové upozornění." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Upozornění Sítě" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Žádné další systémová upozornění." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systémová upozornění" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Žádné další osobní upozornění." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Osobní upozornění" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Žádné další domácí upozornění." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Domácí upozornění" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "fotografie" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "Stav" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 +#, 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:169 ../../include/conversation.php:140 +#, 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/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." + +#: ../../mod/openid.php:53 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or 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." +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:521 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Testování systému" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Zdrojový text (bbcode):" -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" -msgstr "Dále" +#: ../../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/install.php:208 -msgid "Check again" -msgstr "Otestovat znovu" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Zdrojový vstup: " -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Databázové spojení" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -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/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -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/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Jméno databázového serveru" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Jméno databáze" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Vstupní data (ve formátu Diaspora): " -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Emailová adresa administrátora webu" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "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:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Nastavení webu" - -#: ../../mod/install.php:321 -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:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See '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:326 -msgid "PHP executable path" -msgstr "Cesta k \"PHP executable\"" - -#: ../../mod/install.php:326 -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:331 -msgid "Command line PHP" -msgstr "Příkazový řádek PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Nalezena PHP verze:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Toto je nutné pro fungování doručování zpráv." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" - -#: ../../mod/install.php:379 -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\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generovat kriptovací klíče" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP modul" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP modul" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP modul" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." - -#: ../../mod/install.php:409 -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:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." - -#: ../../mod/install.php:421 -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:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "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:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "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:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "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:441 -msgid "" -"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:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php je editovatelné" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 je nastaven pro zápis" - -#: ../../mod/install.php:472 -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:474 -msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "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:508 -msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." - -#: ../../mod/install.php:519 -msgid "

What next

" -msgstr "

Co dál

" - -#: ../../mod/install.php:520 -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/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " #: ../../mod/admin.php:55 msgid "Theme settings updated." @@ -1924,6 +862,12 @@ msgstr "Funkčnosti rozšíření" msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 +msgid "Item not found." +msgstr "Položka nenalezena." + #: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "Normální účet" @@ -2049,6 +993,10 @@ msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odka msgid "Save Settings" msgstr "Uložit Nastavení" +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "Registrace" + #: ../../mod/admin.php:576 msgid "File upload" msgstr "Nahrání souborů" @@ -2550,6 +1498,11 @@ msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro %s" + #: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "Registrace úspěšná. Email zaslán uživateli" @@ -2606,8 +1559,8 @@ msgid "Request date" msgstr "Datum žádosti" #: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 -#: ../../mod/admin.php:932 ../../mod/crepair.php:150 -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 msgid "Name" msgstr "Jméno" @@ -2621,11 +1574,6 @@ msgstr "E-mail" msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:908 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Schválit" - #: ../../mod/admin.php:909 msgid "Deny" msgstr "Odmítnout" @@ -2722,6 +1670,13 @@ msgstr "Povolit" msgid "Toggle" msgstr "Přepnout" +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Nastavení" + #: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "Autor: " @@ -2796,29 +1751,132 @@ msgstr "FTP uživatel" msgid "FTP Password" msgstr "FTP heslo" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 -#: ../../include/text.php:952 ../../include/nav.php:118 -msgid "Search" -msgstr "Vyhledávání" +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Nová zpráva" -#: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:89 -msgid "No results." -msgstr "Žádné výsledky." +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." -#: ../../mod/share.php:44 -msgid "link" -msgstr "odkaz" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Zpráva odeslána." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Opravdu chcete smazat tuto zprávu?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Zpráva odstraněna." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Konverzace odstraněna." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Adresát:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Předmět:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Vaše zpráva:" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Nahrát fotografii" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Vložit webový odkaz" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Žádné zprávy." + +#: ../../mod/message.php:378 #, 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" +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s a Vy" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Odstranit konverzaci" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D M R - g:i A" + +#: ../../mod/message.php:411 +#, 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:450 +msgid "Message not available." +msgstr "Zpráva není k dispozici." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Smazat zprávu" + +#: ../../mod/message.php:548 +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:552 +msgid "Send Reply" +msgstr "Poslat odpověď" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 msgid "Item not found" @@ -2900,164 +1958,196 @@ msgstr "Kategorie (čárkou oddělený seznam)" msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Položka není k dispozici." +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." +msgstr "Profil nenalezen" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Položka nebyla nalezena." +#: ../../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/regmod.php:63 -msgid "Account approved." -msgstr "Účet 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/regmod.php:100 +#: ../../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:254 +msgid "Confirmation completed successfully." +msgstr "Potvrzení úspěšně dokončena." + +#: ../../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: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:275 +msgid "Introduction failed or was revoked." +msgstr "Žádost o propojení selhala nebo byla zrušena." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Nelze nastavit fotografii kontaktu." + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrace zrušena pro %s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s je nyní přítel s %2$s" -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Přihlaste se, prosím." +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Nalézt na tomto webu" +#: ../../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/directory.php:59 ../../mod/contacts.php:693 -msgid "Finding: " -msgstr "Zjištění: " +#: ../../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." -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Adresář serveru" +#: ../../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/directory.php:61 ../../mod/contacts.php:694 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Najít" +#: ../../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/directory.php:111 ../../mod/profiles.php:690 -msgid "Age: " -msgstr "Věk: " - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Pohlaví: " - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "O mě:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Žádné záznamy (některé položky mohou být skryty)." - -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" - -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." - -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" - -#: ../../mod/crepair.php:139 +#: ../../mod/dfrn_confirm.php:638 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" 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." +"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." -#: ../../mod/crepair.php:140 -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." +#: ../../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/crepair.php:146 -msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" +#: ../../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/crepair.php:151 -msgid "Account Nickname" -msgstr "Přezdívka účtu" +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Připojení přijato na %s" -#: ../../mod/crepair.php:152 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" -#: ../../mod/crepair.php:153 -msgid "Account URL" -msgstr "URL adresa účtu" +#: ../../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/crepair.php:154 -msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../mod/crepair.php:155 -msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editovat událost" -#: ../../mod/crepair.php:156 -msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "odkaz na zdroj" -#: ../../mod/crepair.php:157 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Události" -#: ../../mod/crepair.php:158 -msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Vytvořit novou událost" -#: ../../mod/crepair.php:159 -msgid "Remote Self" -msgstr "Remote Self" +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Předchozí" -#: ../../mod/crepair.php:161 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Dále" -#: ../../mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "hodina:minuta" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Přesunout účet" +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Detaily události" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Můžete importovat účet z jiného Friendica serveru." +#: ../../mod/events.php:457 +#, php-format +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/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Událost začíná:" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Vyžadováno" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Soubor s účtem" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Datum/čas konce není zadán nebo není relevantní" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Akce končí:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Popis:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Místo:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Název:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Sdílet tuto událost" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Fotografie" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Soubory" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Vítá Vás %s" #: ../../mod/lockview.php:31 ../../mod/lockview.php:39 msgid "Remote privacy information not available." @@ -3067,9 +2157,522 @@ msgstr "Vzdálené soukromé informace nejsou k dispozici." msgid "Visible to:" msgstr "Viditelné pro:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 -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:59 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Žádný příjemce." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "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/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Navštivte profil uživatele %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Editovat kontakt" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakty, které nejsou členy skupiny" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Toto je Friendica, verze" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "běžící na webu" + +#: ../../mod/friendica.php:61 +msgid "" +"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:63 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny navštivte:" + +#: ../../mod/friendica.php:64 +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:78 +msgid "Installed plugins/addons/apps:" +msgstr "Instalované pluginy/doplňky/aplikace:" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Odstranit můj účet" + +#: ../../mod/removeme.php:47 +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." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Prosím, zadejte své heslo pro ověření:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Obrázek překročil limit velikosti %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Fotografie na zdi" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: ../../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/tagger.php:95 ../../include/conversation.php:266 +#, 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/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Fotoalba" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Fotogalerie kontaktu" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Nahrát nové fotografie" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "Žádost o připojení selhala nebo byla zrušena." + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Profilové fotografie" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nenalezeno." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Smazat album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Smazat fotografii" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Opravdu chcete smazat tuto fotografii?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s byl označen v %2$s uživatelem %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "fotografie" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "Velikost obrázku překračuje limit velikosti" + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." + +#: ../../mod/photos.php:1092 +#, 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:1127 +msgid "Upload Photos" +msgstr "Nahrání fotografií " + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Název nového alba: " + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Oprávnění:" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Zobrazit ve Skupinách" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Zobrazit v Kontaktech" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Soukromé Fotografie" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Veřejné Fotografie" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Edituj album" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Zobraz fotografii" + +#: ../../mod/photos.php:1290 +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:1292 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Zobrazit obrázek" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Editovat fotografii" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Štítky: " + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Odstranit všechny štítky]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Nové jméno alba" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Titulek" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Přidat štítek" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Soukromé fotografie" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Veřejné fotografie" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Sdílet" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Zobrazit album" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Aktuální fotografie" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Žádný profil" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." + +#: ../../mod/register.php:104 +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." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Vaši registraci nelze zpracovat." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Žádost o registraci na %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "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:224 +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'." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Vaše OpenID (nepovinné): " + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "Členství na tomto webu je pouze na pozvání." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "Vaše pozvání ID:" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vaše celé jméno (např. Jan Novák):" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Vaše e-mailová adresa:" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "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:276 +msgid "Choose a nickname: " +msgstr "Vyberte přezdívku:" + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrovat" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Import Vašeho profilu do této friendica instance" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Nenalezen žádný platný účet." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Na %s bylo zažádáno o resetování hesla" + +#: ../../mod/lostpass.php:66 +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." + +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Obnovení hesla" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Vaše heslo bylo na Vaše přání resetováno." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Někdo Vám napsal na Vaši profilovou stránku" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Uložte si nebo zkopírujte nové heslo - a pak" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "klikněte zde pro přihlášení" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Vaše heslo bylo změněno na %s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Zapomněli jste heslo?" + +#: ../../mod/lostpass.php:123 +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:124 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reset" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Položka není k dispozici." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Položka nebyla nalezena." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplikace" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." #: ../../mod/help.php:79 msgid "Help:" @@ -3079,210 +2682,6 @@ msgstr "Nápověda:" msgid "Help" msgstr "Nápověda" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Žádný profil" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -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:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d 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:170 -msgid "Introduction complete." -msgstr "Představení dokončeno." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil není k dispozici." - -#: ../../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:263 -msgid "Spam protection measures have been invoked." -msgstr "Ochrana proti spamu byla aktivována" - -#: ../../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:326 -msgid "Invalid locator" -msgstr "Neplatný odkaz" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Neplatná emailová adresa" - -#: ../../mod/dfrn_request.php:362 -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:458 -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:471 -msgid "You have already introduced yourself here." -msgstr "Již jste se zde zavedli." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Zřejmě jste již přátelé se %s." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 -msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Vaše žádost o propojení byla odeslána." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." - -#: ../../mod/dfrn_request.php:659 -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." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Skrýt tento kontakt" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte Vaši žádost o propojení %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Potvrdit" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"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:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Připojte se jako emailový následovník (Již brzy)" - -#: ../../mod/dfrn_request.php:829 -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:832 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" - -#: ../../mod/dfrn_request.php:833 -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:834 -msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Zná Vás uživatel %s ?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Přidat osobní poznámku:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Odeslat žádost" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" - -#: ../../mod/content.php:496 ../../include/conversation.php:688 -msgid "View in context" -msgstr "Pohled v kontextu" - #: ../../mod/contacts.php:104 #, php-format msgid "%d contact edited." @@ -3392,12 +2791,6 @@ msgstr "Přepnout stav Blokováno" msgid "Unignore" msgstr "Přestat ignorovat" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorovat" - #: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "Přepnout stav Ignorováno" @@ -3449,12 +2842,6 @@ msgstr "Kontaktní informace / poznámky" msgid "Edit contact notes" msgstr "Editovat poznámky kontaktu" -#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Navštivte profil uživatele %s [%s]" - #: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" @@ -3495,11 +2882,6 @@ msgstr "V současnosti ignorováno" msgid "Currently archived" msgstr "Aktuálně archivován" -#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" - #: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" @@ -3585,22 +2967,422 @@ msgstr "je Váš fanoušek" msgid "you are a fan of" msgstr "jste fanouškem" -#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editovat kontakt" +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Kontakty" #: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Prohledat Vaše kontakty" +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Zjištění: " + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Najít" + #: ../../mod/contacts.php:699 ../../mod/settings.php:132 #: ../../mod/settings.php:635 msgid "Update" msgstr "Aktualizace" -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Není vybráno žádné video" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Aktuální Videa" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Nahrát nová videa" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Společní přátelé" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt přidán" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Přesunout účet" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Můžete importovat účet z jiného Friendica serveru." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Soubor s účtem" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s následuje %3$s uživatele %2$s" + +#: ../../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/tagrm.php:41 +msgid "Tag removed" +msgstr "Štítek odstraněn" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Odebrat štítek položky" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Vyberte štítek k odebrání: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Odstranit" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Vítejte na Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +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. 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: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." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +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í." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editujte Váš 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 "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: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í." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Probíhá pokus o připojení" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "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 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: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." + +#: ../../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:270 +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íť." + +#: ../../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í." + +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Odstranit termín" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Uložená hledání" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Vyhledávání" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Žádné výsledky." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Celkový limit pozvánek byl překročen" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : není platná e-mailová adresa." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Prosím přidejte se k nám na Friendice" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Doručení zprávy se nezdařilo." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d zpráva odeslána." +msgstr[1] "%d zprávy odeslány." +msgstr[2] "%d zprávy odeslány." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nemáte k dispozici žádné další pozvánky" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "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:122 +#, php-format +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:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica 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:126 +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:132 +msgid "Send invitations" +msgstr "Poslat pozvánky" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "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:137 +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:137 +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:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com" #: ../../mod/settings.php:41 msgid "Additional features" @@ -4103,16 +3885,6 @@ msgstr "Výchozí oprávnění pro příspěvek" msgid "(click to open/close)" msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1515 -msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" - -#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 -#: ../../mod/photos.php:1516 -msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" - #: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "Výchozí Soukromý příspěvek" @@ -4207,6 +3979,18 @@ msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vaši msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "Položka byla odstraněna." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Vyhledávání lidí" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Žádné shody" + #: ../../mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil smazán." @@ -4485,208 +4269,323 @@ msgid "" "be visible to anybody using the internet." msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Věk: " + #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Upravit / Spravovat profily" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Skupina vytvořena." +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Změnit profilovou fotografii" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Vytvořit nový profil" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Skupina nenalezena." +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Profilový obrázek" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Název skupiny byl změněn." +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "viditelné pro všechny" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Uložit Skupinu" +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Upravit viditelnost" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů / přátel." +#: ../../mod/share.php:44 +msgid "link" +msgstr "odkaz" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Název skupiny: " +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Exportovat účet" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Skupina odstraněna. " +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Exportovat vše" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor skupin" +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Členové" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" -#: ../../mod/group.php:224 ../../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/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Zdrojový text (bbcode):" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" -#: ../../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/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} komentoval příspěvek uživatele %s" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Zdrojový vstup: " +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} má rád příspěvek uživatele %s" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} nemá rád příspěvek uživatele %s" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} se skamarádil s %s" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} zasláno" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} označen %s' příspěvek s #%s" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} vás zmínil v příspěvku" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Zde není nic nového" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Vstupní data (ve formátu Diaspora): " - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Smazat notifikace" #: ../../mod/community.php:23 msgid "Not available." msgstr "Není k dispozici." -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt přidán" +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Komunita" -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." -msgstr "Žádné další systémová upozornění." +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Uložit do složky:" -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" -msgstr "Systémová upozornění" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- vyber -" -#: ../../mod/message.php:9 ../../include/nav.php:161 -msgid "New Message" -msgstr "Nová zpráva" +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Uložit" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:158 -msgid "Messages" -msgstr "Zprávy" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Zpráva odstraněna." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Žádné zprávy." - -#: ../../mod/message.php:378 +#: ../../mod/wall_attach.php:81 #, php-format -msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" +msgid "File exceeds size limit of %d" +msgstr "Velikost souboru přesáhla limit %d" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Vy a %s" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s a Vy" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Neplatný identifikátor profilu." -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Odstranit konverzaci" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor viditelnosti profilu " -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: ../../mod/message.php:411 -#, 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/profperm.php:114 +msgid "Visible To" +msgstr "Viditelný pro" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Zpráva není k dispozici." +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Smazat zprávu" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Opravdu chcete smazat tento návrh?" -#: ../../mod/message.php:548 +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: ../../mod/suggest.php:72 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." +"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/message.php:552 -msgid "Send Reply" -msgstr "Poslat odpověď" +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Spojit" -#: ../../mod/like.php:169 ../../include/conversation.php:140 +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nemá rád %2$s na %3$s" +msgid "%1$s welcomes %2$s" +msgstr "%1$s vítá %2$s" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Správa identit a / nebo stránek" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "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:108 +msgid "Select an identity to manage: " +msgstr "Vyberte identitu pro správu: " + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." + +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "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:127 +msgid "Existing Page Managers" +msgstr "Stávající správci stránky" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Přidat" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Žádné záznamy." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Žádné kontakty." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Zobrazit kontakty" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Osobní poznámky" + +#: ../../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/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Globální adresář" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Nalézt na tomto webu" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Adresář serveru" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Pohlaví: " + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Pohlaví:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Domácí stránka:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "O mě:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." #: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../include/bb2diaspora.php:133 @@ -4722,333 +4621,9 @@ msgstr "Převedený lokální čas : %s" msgid "Please select your timezone:" msgstr "Prosím, vyberte své časové pásmo:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1004 -#: ../../include/conversation.php:1022 -msgid "Save to Folder:" -msgstr "Uložit do složky:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- vyber -" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Viditelný pro" - -#: ../../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:39 -msgid "No contacts." -msgstr "Žádné kontakty." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 -msgid "View Contacts" -msgstr "Zobrazit kontakty" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Vyhledávání lidí" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Žádné shody" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 -msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nenalezeno." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Smazat album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 -msgid "Delete Photo" -msgstr "Smazat fotografii" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" - -#: ../../mod/photos.php:660 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s byl označen v %2$s uživatelem %3$s" - -#: ../../mod/photos.php:660 -msgid "a photo" -msgstr "fotografie" - -#: ../../mod/photos.php:765 -msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" - -#: ../../mod/photos.php:773 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" - -#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." - -#: ../../mod/photos.php:928 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" - -#: ../../mod/photos.php:1029 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." - -#: ../../mod/photos.php:1092 -#, 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:1127 -msgid "Upload Photos" -msgstr "Nahrání fotografií " - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Název nového alba: " - -#: ../../mod/photos.php:1132 -msgid "or existing album name: " -msgstr "nebo stávající název alba: " - -#: ../../mod/photos.php:1133 -msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" - -#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 -msgid "Permissions" -msgstr "Oprávnění:" - -#: ../../mod/photos.php:1146 -msgid "Private Photo" -msgstr "Soukromé Fotografie" - -#: ../../mod/photos.php:1147 -msgid "Public Photo" -msgstr "Veřejné Fotografie" - -#: ../../mod/photos.php:1214 -msgid "Edit Album" -msgstr "Edituj album" - -#: ../../mod/photos.php:1220 -msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" - -#: ../../mod/photos.php:1222 -msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" - -#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 -msgid "View Photo" -msgstr "Zobraz fotografii" - -#: ../../mod/photos.php:1290 -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:1292 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" - -#: ../../mod/photos.php:1348 -msgid "View photo" -msgstr "Zobrazit obrázek" - -#: ../../mod/photos.php:1348 -msgid "Edit photo" -msgstr "Editovat fotografii" - -#: ../../mod/photos.php:1349 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" - -#: ../../mod/photos.php:1374 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" - -#: ../../mod/photos.php:1453 -msgid "Tags: " -msgstr "Štítky: " - -#: ../../mod/photos.php:1456 -msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" - -#: ../../mod/photos.php:1496 -msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" - -#: ../../mod/photos.php:1497 -msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" - -#: ../../mod/photos.php:1499 -msgid "New album name" -msgstr "Nové jméno alba" - -#: ../../mod/photos.php:1502 -msgid "Caption" -msgstr "Titulek" - -#: ../../mod/photos.php:1504 -msgid "Add a Tag" -msgstr "Přidat štítek" - -#: ../../mod/photos.php:1508 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1517 -msgid "Private photo" -msgstr "Soukromé fotografie" - -#: ../../mod/photos.php:1518 -msgid "Public photo" -msgstr "Veřejné fotografie" - -#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 -msgid "Share" -msgstr "Sdílet" - -#: ../../mod/photos.php:1804 ../../mod/videos.php:308 -msgid "View Album" -msgstr "Zobrazit album" - -#: ../../mod/photos.php:1813 -msgid "Recent Photos" -msgstr "Aktuální fotografie" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával jste prázdný soubor?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Velikost souboru přesáhla limit %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Není vybráno žádné video" - -#: ../../mod/videos.php:301 ../../include/text.php:1400 -msgid "View Video" -msgstr "Zobrazit video" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Aktuální Videa" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" - -#: ../../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/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s následuje %3$s uživatele %2$s" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exportovat účet" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Exportovat vše" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Společní přátelé" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Žádné společné kontakty." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Obrázek překročil limit velikosti %d" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Fotografie na zdi" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Příspěvek úspěšně odeslán" #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -5106,21 +4681,373 @@ msgstr "Editace dokončena" msgid "Image uploaded successfully." msgstr "Obrázek byl úspěšně nahrán." -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplikace" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Komunikační server - Nastavení" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Zde není nic nového" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Nelze vytvořit tabulku." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Smazat notifikace" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Vaše databáze Friendica byla nainstalována." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or 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:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Testování systému" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Otestovat znovu" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Databázové spojení" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +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:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +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:234 +msgid "Database Server Name" +msgstr "Jméno databázového serveru" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Přihlašovací jméno k databázi" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Heslo k databázovému účtu " + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Jméno databáze" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Emailová adresa administrátora webu" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "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:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Nastavení webu" + +#: ../../mod/install.php:321 +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:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See '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:326 +msgid "PHP executable path" +msgstr "Cesta k \"PHP executable\"" + +#: ../../mod/install.php:326 +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:331 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Nalezena PHP verze:" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Toto je nutné pro fungování doručování zpráv." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" + +#: ../../mod/install.php:379 +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\"." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generovat kriptovací klíče" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." + +#: ../../mod/install.php:409 +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:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." + +#: ../../mod/install.php:421 +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:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "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:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "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:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "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:441 +msgid "" +"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:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php je editovatelné" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 je nastaven pro zápis" + +#: ../../mod/install.php:472 +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:474 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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:508 +msgid "Errors encountered creating database tables." +msgstr "Při vytváření databázových tabulek došlo k chybám." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Co dál

" + +#: ../../mod/install.php:520 +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/group.php:29 +msgid "Group created." +msgstr "Skupina vytvořena." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Nelze vytvořit skupinu." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Skupina nenalezena." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Název skupiny byl změněn." + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Uložit Skupinu" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Vytvořit skupinu kontaktů / přátel." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Název skupiny: " + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Skupina odstraněna. " + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nelze odstranit skupinu." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Editor skupin" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Členové" + +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Žádná taková skupina" + +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "Skupina je prázdná" + +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Skupina: " + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Pohled v kontextu" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Účet schválen." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrace zrušena pro %s" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Přihlaste se, prosím." #: ../../mod/match.php:12 msgid "Profile Match" @@ -5134,166 +5061,6 @@ msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová s msgid "is interested in:" msgstr "zajímá se o:" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Štítek odstraněn" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Odebrat štítek položky" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 -msgid "Remove" -msgstr "Odstranit" - -#: ../../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:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editovat událost" - -#: ../../mod/events.php:335 ../../include/text.php:1633 -#: ../../include/text.php:1644 -msgid "link to source" -msgstr "odkaz na zdroj" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Vytvořit novou událost" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Předchozí" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hodina:minuta" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detaily události" - -#: ../../mod/events.php:457 -#, php-format -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:459 -msgid "Event Starts:" -msgstr "Událost začíná:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Vyžadováno" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Akce končí:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Popis:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Název:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Sdílet tuto událost" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Žádní potenciální delegáti stránky nenalezeni." - -#: ../../mod/delegate.php:124 ../../include/nav.php:167 -msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" - -#: ../../mod/delegate.php:126 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "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:127 -msgid "Existing Page Managers" -msgstr "Stávající správci stránky" - -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " - -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Potenciální delegáti" - -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Přidat" - -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Žádné záznamy." - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty, které nejsou členy skupiny" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Soubory" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Odstranit můj účet" - -#: ../../mod/removeme.php:47 -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." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Návrhy přátelství odeslány " - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Navrhněte přátelé" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Navrhněte přátelé pro uživatele %s" - #: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Nelze nalézt původní příspěvek." @@ -5329,421 +5096,685 @@ msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele o msgid "%s posted an update." msgstr "%s poslal aktualizaci." -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" - -#: ../../mod/ping.php:254 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} komentoval příspěvek uživatele %s" +msgid "%1$s is currently %2$s" +msgstr "%1$s je právě %2$s" -#: ../../mod/ping.php:259 +#: ../../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/network.php:136 +msgid "Search Results For:" +msgstr "Výsledky hledání pro:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "přidat" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Dle komentářů" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Řadit podle data komentáře" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Dle data" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Řadit podle data příspěvku" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nové" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Proud aktivit - dle data" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Sdílené odkazy" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Zajímavé odkazy" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "S hvězdičkou" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Oblíbené přízpěvky" + +#: ../../mod/network.php:457 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} má rád příspěvek uživatele %s" +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] "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/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nemá rád příspěvek uživatele %s" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} se skamarádil s %s" +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Kontakt: " -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} zasláno" +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} označen %s' příspěvek s #%s" +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Neplatný kontakt." -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} vás zmínil v příspěvku" +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Nastavení kontaktu změněno" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." -#: ../../mod/openid.php:53 +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Opravit nastavení kontaktu" + +#: ../../mod/crepair.php:139 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." +"WARNING: This is highly advanced and if you enter incorrect" +" 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/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Přihlášení se nezdařilo." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Odstranit" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systém" - -#: ../../mod/notifications.php:83 ../../include/nav.php:142 -msgid "Network" -msgstr "Síť" - -#: ../../mod/notifications.php:98 ../../include/nav.php:151 -msgid "Introductions" -msgstr "Představení" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované žádosti" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované žádosti" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Typ oznámení: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Návrh přátelství" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "navrhl %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Zveřejnit aktivitu nového přítele." - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "je-li použitelné" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ano" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "ne" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Schválit jako: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Přítel" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Sdílené" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fanoušek / obdivovatel" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Přítel / žádost o připojení" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nový následovník" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Žádné představení." - -#: ../../mod/notifications.php:220 ../../include/nav.php:152 -msgid "Notifications" -msgstr "Upozornění" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %s" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s okomentoval příspěvek uživatele %s'" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Žádné další síťové upozornění." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Upozornění Sítě" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Žádné další osobní upozornění." - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Osobní upozornění" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Žádné další domácí upozornění." - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Domácí upozornění" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Celkový limit pozvánek byl překročen" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : není platná e-mailová adresa." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Prosím přidejte se k nám na Friendice" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Doručení zprávy se nezdařilo." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d zpráva odeslána." -msgstr[1] "%d zprávy odeslány." -msgstr[2] "%d zprávy odeslány." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nemáte k dispozici žádné další pozvánky" - -#: ../../mod/invite.php:120 -#, php-format +#: ../../mod/crepair.php:140 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í." +"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." -#: ../../mod/invite.php:122 +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Přezdívka účtu" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "URL adresa účtu" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "Žádost o přátelství URL" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "URL adresa potvrzení přátelství" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "Notifikační URL adresa" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL adresa" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Nové foto z této URL adresy" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Remote Self" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení správ od tohoto kontaktu" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vaše kontakty" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Vaše fotky" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Vaše události" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Vaše osobní fotky" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Komunitní stránky" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Komunitní profily" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Poslední uživatelé" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Poslední líbí/nelíbí" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "událost" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Poslední fotografie" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Nalézt Přátele" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokální Adresář" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Podobné zájmy" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Pozvat přátele" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Nastavit faktor přiblížení pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Pomoc nebo @ProNováčky ?" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Propojené služby" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "nikdy nezobrazit" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "zobrazit" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Nastavení téma" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Nastav velikost písma pro přízpěvky a komentáře." + +#: ../../view/theme/diabook/config.php:152 +#: ../../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:153 +msgid "Set resolution for middle column" +msgstr "Nastav rozlišení pro prostřední sloupec" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Nastavení barevného schematu" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Nastavit přiblížení pro Earth Layer" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Nastavit styl" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Nastavit barevné schéma" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Zarovnání" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Vlevo" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Uprostřed" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Barevné schéma" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Velikost písma u příspěvků" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Velikost písma textů" + +#: ../../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:85 +msgid "Set theme width" +msgstr "Nastavení šířku grafické šablony" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "zobrazit méně" + +#: ../../boot.php:1023 #, php-format -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." +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." -#: ../../mod/invite.php:123 +#: ../../boot.php:1025 #, php-format +msgid "Update Error at %s" +msgstr "Chyba aktualizace na %s" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Odhlásit se" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Přihlásit se" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Přezdívka nebo e-mailová adresa:" + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Heslo: " + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Pamatuj si mne" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Zapomněli jste své heslo?" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Podmínky použití serveru" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "podmínky použití" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Pravidla ochrany soukromí serveru" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "Ochrana soukromí" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Upravit profil" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Zpráva" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profily" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Spravovat/upravit profily" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "d. F" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[Dnes]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Žádný popis]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Události tohoto týdne:" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Stav" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Videa" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Události a kalendář" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Obecné funkčnosti" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Vícenásobné profily" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Schopnost vytvořit vícenásobné profily" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Richtext Editor" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Povolit richtext editor" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Náhled příspěvku" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" + +#: ../../include/features.php:33 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." +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" -#: ../../mod/invite.php:126 -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." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Síťové postranní widgety" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Poslat pozvánky" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Vyhledávat dle Data" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Možnost označit příspěvky dle časového intervalu" -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "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íť." +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Skupinový Filtr" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Budete muset zadat kód této pozvánky: $invite_code" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" -#: ../../mod/invite.php:137 -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:" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Síťový Filtr" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Správa identit a / nebo stránek" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "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." +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Síťové záložky" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Vyberte identitu pro správu: " +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Osobní síťový záložka " -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Vítá Vás %s" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Přátelé uživatele %s" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nová záložka síť" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Přidat nový kontakt" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "záložka Síťové sdílené odkazy " -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" -#: ../../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/features.php:55 +msgid "Post/Comment Tools" +msgstr "Nástroje Příspěvků/Komentářů" -#: ../../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/features.php:56 +msgid "Multiple Deletion" +msgstr "Násobné mazání" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Nalézt lidi" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Označit a smazat více " -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editovat Odeslané příspěvky" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Připojit / Následovat" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editovat a opravit příspěvky a komentáře po odeslání" -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Robert Morgenstein, rybaření" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Štítkování" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Náhodný Profil" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Sítě" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Kategorie příspěvků" -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Všechny sítě" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k Vašim příspěvkům" -#: ../../include/contact_widgets.php:103 ../../include/features.php:60 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "Uložené složky" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Všechno" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Možnost řadit příspěvky do složek" -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Kategorie" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Označit příspěvky jako neoblíbené" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tato akce překročí limit nastavené Vaším předplatným." +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Příspěvky s hvězdou" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Tato akce není v rámci Vašeho předplatného dostupná." +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Možnost označit příspěvky s indikátorem hvězdy" -#: ../../include/api.php:263 ../../include/api.php:274 -#: ../../include/api.php:375 -msgid "User not found." -msgstr "Uživatel nenalezen" +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Odhlášen." -#: ../../include/api.php:1123 -msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "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/api.php:1193 -msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." - -#: ../../include/network.php:886 -msgid "view full size" -msgstr "zobrazit v plné velikosti" +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" #: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" @@ -5753,292 +5784,78 @@ msgstr "Začíná:" msgid "Finishes:" msgstr "Končí:" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#: ../../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 "Narozeniny:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Věk:" + +#: ../../include/profile_advanced.php:43 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" -#: ../../include/notifier.php:774 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(Bez předmětu)" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Štítky:" -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:467 -msgid "noreply" -msgstr "neodpovídat" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Náboženství:" -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Koníčky/zájmy:" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktní informace a sociální sítě:" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Hudební vkus:" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "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/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Knihy, literatura:" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Chybová zpráva byla:" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televize:" -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/tanec/kultura/zábava:" -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Láska/romance" -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "Jméno je příliš krátké." +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Práce/zaměstnání:" -#: ../../include/user.php:104 -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/profile_advanced.php:81 +msgid "School/education:" +msgstr "Škola/vzdělávání:" -#: ../../include/user.php:109 -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/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[bez předmětu]" -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." - -#: ../../include/user.php:131 -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/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." - -#: ../../include/user.php:147 -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/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." - -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." - -#: ../../include/user.php:256 -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/user.php:288 ../../include/user.php:292 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Přátelé" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1003 -msgid "poked" -msgstr "šťouchnut" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "příspěvek/položka" - -#: ../../include/conversation.php:292 -#, 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:770 -msgid "remove" -msgstr "odstranit" - -#: ../../include/conversation.php:774 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" - -#: ../../include/conversation.php:873 -msgid "Follow Thread" -msgstr "Následovat vlákno" - -#: ../../include/conversation.php:874 ../../include/Contact.php:229 -msgid "View Status" -msgstr "Zobrazit Status" - -#: ../../include/conversation.php:875 ../../include/Contact.php:230 -msgid "View Profile" -msgstr "Zobrazit Profil" - -#: ../../include/conversation.php:876 ../../include/Contact.php:231 -msgid "View Photos" -msgstr "Zobrazit Fotky" - -#: ../../include/conversation.php:877 ../../include/Contact.php:232 -#: ../../include/Contact.php:255 -msgid "Network Posts" -msgstr "Zobrazit Příspěvky sítě" - -#: ../../include/conversation.php:878 ../../include/Contact.php:233 -#: ../../include/Contact.php:255 -msgid "Edit Contact" -msgstr "Editovat Kontakty" - -#: ../../include/conversation.php:879 ../../include/Contact.php:235 -#: ../../include/Contact.php:255 -msgid "Send PM" -msgstr "Poslat soukromou zprávu" - -#: ../../include/conversation.php:880 ../../include/Contact.php:228 -msgid "Poke" -msgstr "Šťouchnout" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s likes this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s doesn't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d lidem se to líbí" - -#: ../../include/conversation.php:950 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d lidem se to nelíbí" - -#: ../../include/conversation.php:964 -msgid "and" -msgstr "a" - -#: ../../include/conversation.php:970 -#, php-format -msgid ", and %d other people" -msgstr ", a %d dalších lidí" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s like this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s don't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Please enter a video link/URL:" -msgstr "Prosím zadejte URL adresu videa:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter an audio link/URL:" -msgstr "Prosím zadejte URL adresu zvukového záznamu:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Tag term:" -msgstr "Štítek:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Where are you right now?" -msgstr "Kde právě jste?" - -#: ../../include/conversation.php:1006 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" - -#: ../../include/conversation.php:1049 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" - -#: ../../include/conversation.php:1054 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." - -#: ../../include/conversation.php:1109 -msgid "permissions" -msgstr "oprávnění" - -#: ../../include/conversation.php:1133 -msgid "Post to Groups" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1134 -msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1135 -msgid "Private post" -msgstr "Soukromý příspěvek" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Odhlášen." - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Chyba! Nelze ověřit přezdívku" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Uživatel '%s' již na tomto serveru existuje!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Chyba vytváření uživatele" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského účtu" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt nenaimporován" -msgstr[1] "%d kontaktů nenaimporováno" -msgstr[2] "%d kontakty nenaimporovány" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr " na Last.fm" #: ../../include/text.php:296 msgid "newer" @@ -6080,6 +5897,10 @@ msgstr[2] "%d kontaktů" msgid "poke" msgstr "šťouchnout" +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "šťouchnut" + #: ../../include/text.php:1004 msgid "ping" msgstr "cinknout" @@ -6284,6 +6105,10 @@ msgstr "bytů" msgid "Click to open/close" msgstr "Klikněte pro otevření/zavření" +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "standardní" + #: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" @@ -6300,6 +6125,819 @@ msgstr "příspěvek" msgid "Item filed" msgstr "Položka vyplněna" +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "Uživatel nenalezen" + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Není tu žádný status s tímto id." + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Nemáme žádnou konverzaci s tímto id." + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 +#, 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/items.php:1981 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" + +#: ../../include/items.php:1982 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" + +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "Nový člověk si s vámi sdílí na" + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "Máte nového následovníka na" + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "Opravdu chcete smazat tuto položku?" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "Archív" + +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(Bez předmětu)" + +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "neodpovídat" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Sdílení oznámení ze sítě Diaspora" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Přílohy:" + +#: ../../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/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:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "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/profile_selectors.php:6 +msgid "Male" +msgstr "Muž" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Žena" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "V současné době muž" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "V současné době žena" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Většinou muž" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Většinou žena" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexuál" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutrál" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifikováno" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Jiné" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nerozhodnuto" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Muži" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Ženy" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbička" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Bez preferencí" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuál" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexuál" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "panic/panna" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetišista" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Hodně" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nesexuální" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Svobodný" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Osamnělý" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Dostupný" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nedostupný" + +#: ../../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:42 +msgid "Unfaithful" +msgstr "Nevěrný" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Závislý na sexu" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "Přátelé" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Přátelé / výhody" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ležérní" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Zadaný" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Ženatý/vdaná" + +#: ../../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:42 +msgid "Cohabiting" +msgstr "Žijící ve společné domácnosti" + +#: ../../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:42 +msgid "Not looking" +msgstr "Nehledající" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Zrazen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Odloučený" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Nestálý" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Rozvedený(á)" + +#: ../../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:42 +msgid "Uncertain" +msgstr "Nejistý" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Je to složité" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nezajímá" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Zeptej se mě" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Chyba dekódování uživatelského účtu" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Chyba! Nelze ověřit přezdívku" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Uživatel '%s' již na tomto serveru existuje!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Chyba vytváření uživatele" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Chyba vytváření uživatelského účtu" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt nenaimporován" +msgstr[1] "%d kontaktů nenaimporováno" +msgstr[2] "%d kontakty nenaimporovány" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." + +#: ../../include/plugin.php:463 +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:468 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s šťouchnul %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "příspěvek/položka" + +#: ../../include/conversation.php:292 +#, 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:770 +msgid "remove" +msgstr "odstranit" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Následovat vlákno" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Zobrazit Status" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Zobrazit Profil" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Zobrazit Fotky" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Editovat Kontakty" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Šťouchnout" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "%s se to líbí." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "%s se to nelíbí." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d lidem se to líbí" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d lidem se to nelíbí" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "a" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr ", a %d dalších lidí" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "%s se to líbí." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "%s se to nelíbí." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Štítek:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Kde právě jste?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "oprávnění" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Soukromý příspěvek" + +#: ../../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:70 +msgid "Networks" +msgstr "Sítě" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Všechny sítě" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Všechno" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Kategorie" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Konec této relace" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Přihlásit se" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Domácí stránka" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Vytvořit účet" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Aplikace" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Konverzace na tomto webu" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Adresář" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Adresář" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informace" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Konverzace od Vašich přátel" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Síťový Reset" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Načíst stránku Síť bez filtrů" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Žádosti přátel" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Zobrazit všechny upozornění" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Označit všechny upozornění systému jako přečtené" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Soukromá pošta" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Doručená pošta" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Spravovat" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Spravovat/Editovat Profily" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigace" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Mapa webu" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Neznámé | Nezařazeno" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Okamžitě blokovat " + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "pochybný, spammer, self-makerter" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znám ho ale, ale bez rozhodnutí" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, pravděpodobně neškodný" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Renomovaný, má mou důvěru" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Týdenně" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Měsíčně" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora konektor" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + #: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "Friendica Notifikace" @@ -6501,9 +7139,110 @@ msgstr "Foto:" 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/Scrape.php:584 -msgid " on Last.fm" -msgstr " na Last.fm" +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Jméno je příliš krátké." + +#: ../../include/user.php:104 +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/user.php:109 +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/user.php:112 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." + +#: ../../include/user.php:131 +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/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." + +#: ../../include/user.php:147 +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/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." + +#: ../../include/user.php:256 +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/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Obrázek/fotografie" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s napsal následující příspěvek" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 napsal:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "vložený obsah" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" #: ../../include/group.php:25 msgid "" @@ -6536,349 +7275,13 @@ msgstr "Vytvořit novou skupinu" msgid "Contacts not in any group" msgstr "Kontakty, které nejsou v žádné skupině" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Chybí URL adresa." +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "následování zastaveno" -#: ../../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/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Konec této relace" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Přihlásit se" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Domácí stránka" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Vytvořit účet" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Nápověda a dokumentace" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Aplikace" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Adresář" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Adresář" - -#: ../../include/nav.php:132 -msgid "Information" -msgstr "Informace" - -#: ../../include/nav.php:132 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" - -#: ../../include/nav.php:142 -msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" - -#: ../../include/nav.php:143 -msgid "Network Reset" -msgstr "Síťový Reset" - -#: ../../include/nav.php:143 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" - -#: ../../include/nav.php:151 -msgid "Friend Requests" -msgstr "Žádosti přátel" - -#: ../../include/nav.php:153 -msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" - -#: ../../include/nav.php:154 -msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" - -#: ../../include/nav.php:158 -msgid "Private mail" -msgstr "Soukromá pošta" - -#: ../../include/nav.php:159 -msgid "Inbox" -msgstr "Doručená pošta" - -#: ../../include/nav.php:160 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: ../../include/nav.php:164 -msgid "Manage" -msgstr "Spravovat" - -#: ../../include/nav.php:164 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" - -#: ../../include/nav.php:169 -msgid "Account settings" -msgstr "Nastavení účtu" - -#: ../../include/nav.php:171 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" - -#: ../../include/nav.php:173 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" - -#: ../../include/nav.php:180 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" - -#: ../../include/nav.php:184 -msgid "Navigation" -msgstr "Navigace" - -#: ../../include/nav.php:184 -msgid "Site map" -msgstr "Mapa webu" - -#: ../../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 "Narozeniny:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Věk:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Štítky:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Náboženství:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Hudební vkus:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Knihy, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televize:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Láska/romance" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Škola/vzdělávání:" - -#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 -#: ../../include/bbcode.php:922 -msgid "Image/photo" -msgstr "Obrázek/fotografie" - -#: ../../include/bbcode.php:357 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" - -#: ../../include/bbcode.php:457 -msgid "" -msgstr "" - -#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 -msgid "$1 wrote:" -msgstr "$1 napsal:" - -#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Neznámé | Nezařazeno" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Okamžitě blokovat " - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "pochybný, spammer, self-makerter" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znám ho ale, ale bez rozhodnutí" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, pravděpodobně neškodný" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Renomovaný, má mou důvěru" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Týdenně" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Měsíčně" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora konektor" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Odstranit kontakt" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" @@ -6953,459 +7356,6 @@ msgstr "sekund" msgid "%1$d %2$s ago" msgstr "před %1$d %2$s" -#: ../../include/datetime.php:472 ../../include/items.php:1981 -#, php-format -msgid "%s's birthday" -msgstr "%s má narozeniny" - -#: ../../include/datetime.php:473 ../../include/items.php:1982 -#, php-format -msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Obecné funkčnosti" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Vícenásobné profily" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit vícenásobné profily" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Richtext Editor" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Povolit richtext editor" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Náhled příspěvku" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Automaticky zmíněná Fóra" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Síťové postranní widgety" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Vyhledávat dle Data" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Možnost označit příspěvky dle časového intervalu" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Skupinový Filtr" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Síťový Filtr" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Uložit kritéria vyhledávání pro znovupoužití" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Síťové záložky" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Osobní síťový záložka " - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nová záložka síť" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "záložka Síťové sdílené odkazy " - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Nástroje Příspěvků/Komentářů" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Násobné mazání" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Označit a smazat více " - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editovat Odeslané příspěvky" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editovat a opravit příspěvky a komentáře po odeslání" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Štítkování" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Kategorie příspěvků" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Přidat kategorie k Vašim příspěvkům" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Možnost řadit příspěvky do složek" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Označit příspěvky jako neoblíbené" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Příspěvky s hvězdou" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Možnost označit příspěvky s indikátorem hvězdy" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" - -#: ../../include/diaspora.php:2299 -msgid "Attachments:" -msgstr "Přílohy:" - -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../include/items.php:3710 -msgid "A new person is sharing with you at " -msgstr "Nový člověk si s vámi sdílí na" - -#: ../../include/items.php:3710 -msgid "You have a new follower at " -msgstr "Máte nového následovníka na" - -#: ../../include/items.php:4233 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" - -#: ../../include/items.php:4460 -msgid "Archives" -msgstr "Archív" - -#: ../../include/oembed.php:174 -msgid "Embedded content" -msgstr "vložený obsah" - -#: ../../include/oembed.php:183 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" - -#: ../../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:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "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/profile_selectors.php:6 -msgid "Male" -msgstr "Muž" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Žena" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "V současné době muž" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "V současné době žena" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Většinou muž" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Většinou žena" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexuál" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutrál" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifikováno" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Jiné" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nerozhodnuto" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Muži" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Ženy" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbička" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Bez preferencí" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "panic/panna" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetišista" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Hodně" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nesexuální" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Svobodný" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Osamnělý" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Dostupný" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nedostupný" - -#: ../../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:42 -msgid "Unfaithful" -msgstr "Nevěrný" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Závislý na sexu" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Přátelé / výhody" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ležérní" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Zadaný" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Ženatý/vdaná" - -#: ../../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:42 -msgid "Cohabiting" -msgstr "Žijící ve společné domácnosti" - -#: ../../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:42 -msgid "Not looking" -msgstr "Nehledající" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Zrazen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Odloučený" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Nestálý" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Rozvedený(á)" - -#: ../../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:42 -msgid "Uncertain" -msgstr "Nejistý" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Je to složité" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nezajímá" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Zeptej se mě" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "následování zastaveno" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Odstranit kontakt" +#: ../../include/network.php:886 +msgid "view full size" +msgstr "zobrazit v plné velikosti" diff --git a/view/cs/strings.php b/view/cs/strings.php index 7a6cb5df1e..65e95dd1f3 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -60,341 +60,126 @@ $a->strings["Page not found."] = "Stránka nenalezena"; $a->strings["Permission denied"] = "Nedostatečné oprávnění"; $a->strings["Permission denied."] = "Přístup odmítnut."; $a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Home"] = "Domů"; -$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Vaše profilová stránka"; -$a->strings["Photos"] = "Fotografie"; -$a->strings["Your photos"] = "Vaše fotky"; -$a->strings["Events"] = "Události"; -$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"] = "Komunita"; -$a->strings["don't show"] = "nikdy nezobrazit"; -$a->strings["show"] = "zobrazit"; -$a->strings["Theme settings"] = "Nastavení téma"; -$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; -$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["Contacts"] = "Kontakty"; -$a->strings["Your contacts"] = "Vaše kontakty"; -$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["event"] = "událost"; -$a->strings["status"] = "Stav"; -$a->strings["photo"] = "fotografie"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; -$a->strings["Last photos"] = "Poslední fotografie"; -$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; -$a->strings["Profile Photos"] = "Profilové fotografie"; -$a->strings["Find Friends"] = "Nalézt Přátele"; -$a->strings["Local Directory"] = "Lokální Adresář"; -$a->strings["Global Directory"] = "Globální adresář"; -$a->strings["Similar Interests"] = "Podobné zájmy"; -$a->strings["Friend Suggestions"] = "Návrhy přátel"; -$a->strings["Invite Friends"] = "Pozvat přátele"; -$a->strings["Settings"] = "Nastavení"; -$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["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; -$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["Alignment"] = "Zarovnání"; -$a->strings["Left"] = "Vlevo"; -$a->strings["Center"] = "Uprostřed"; -$a->strings["Color scheme"] = "Barevné schéma"; -$a->strings["Posts font size"] = "Velikost písma u příspěvků"; -$a->strings["Textareas font size"] = "Velikost písma textů"; -$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; -$a->strings["default"] = "standardní"; -$a->strings["Background Image"] = "Obrázek pozadí"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL odkaz na obrázek (např. z Vašeho foto alba), který bude použit jako obrázek na pozadí."; -$a->strings["Background Color"] = "Barva pozadí"; -$a->strings["HEX value for the background color. Don't include the #"] = "HEXadecimální hodnota barvy pozadí. Nevkládejte znak #"; -$a->strings["font size"] = "velikost fondu"; -$a->strings["base font size for your interface"] = "základní velikost fontu"; -$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 theme width"] = "Nastavení šířku grafické šablony"; -$a->strings["Set style"] = "Nastavit styl"; -$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["Register"] = "Registrovat"; -$a->strings["Logout"] = "Odhlásit se"; -$a->strings["Login"] = "Přihlásit se"; -$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; -$a->strings["Password: "] = "Heslo: "; -$a->strings["Remember me"] = "Pamatuj si mne"; -$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; -$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; -$a->strings["Password Reset"] = "Obnovení hesla"; -$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; -$a->strings["terms of service"] = "podmínky použití"; -$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; -$a->strings["privacy policy"] = "Ochrana soukromí"; -$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; -$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; -$a->strings["Edit profile"] = "Upravit profil"; -$a->strings["Connect"] = "Spojit"; -$a->strings["Message"] = "Zpráva"; -$a->strings["Profiles"] = "Profily"; -$a->strings["Manage/edit profiles"] = "Spravovat/upravit 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["Location:"] = "Místo:"; -$a->strings["Gender:"] = "Pohlaví:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; -$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["[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"] = "Stav"; -$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; -$a->strings["Profile Details"] = "Detaily profilu"; -$a->strings["Photo Albums"] = "Fotoalba"; -$a->strings["Videos"] = "Videa"; -$a->strings["Events and Calendar"] = "Události a kalendář"; -$a->strings["Personal Notes"] = "Osobní poznámky"; -$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; +$a->strings["Contact not found."] = "Kontakt nenalezen."; +$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["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."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d požadovaný parametr nebyl nalezen na daném místě", + 1 => "%d požadované parametry nebyly nalezeny na daném místě", + 2 => "%d požadované parametry nebyly nalezeny na daném místě", +); +$a->strings["Introduction complete."] = "Představení dokončeno."; +$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; +$a->strings["Profile unavailable."] = "Profil není k dispozici."; +$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; +$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."; +$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; +$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; +$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; +$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 propojení %s."; +$a->strings["Confirm"] = "Potvrdit"; +$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; $a->strings["Public access denied."] = "Veřejný přístup odepřen."; -$a->strings["Item not found."] = "Položka nenalezena."; -$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; -$a->strings["Item has been removed."] = "Položka byla odstraněna."; -$a->strings["Access denied."] = "Přístup odmítnut"; -$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["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; -$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?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$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["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"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; -$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["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; -$a->strings["Profile not found."] = "Profil nenalezen"; -$a->strings["Contact not found."] = "Kontakt nenalezen."; -$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."; -$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; -$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; -$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; -$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; -$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; -$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["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["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["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["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; -$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."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; -$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; -$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["Reset"] = "Reset"; -$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["Upload photo"] = "Nahrát fotografii"; -$a->strings["Insert web link"] = "Vložit webový odkaz"; -$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. 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["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["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["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["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["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; +$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; +$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["Cancel"] = "Zrušit"; -$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["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["View Video"] = "Zobrazit video"; +$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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; +$a->strings["Discard"] = "Odstranit"; +$a->strings["Ignore"] = "Ignorovat"; +$a->strings["System"] = "Systém"; +$a->strings["Network"] = "Síť"; $a->strings["Personal"] = "Osobní"; -$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["Shared Links"] = "Sdílené odkazy"; -$a->strings["Interesting Links"] = "Zajímavé odkazy"; -$a->strings["Starred"] = "S hvězdičkou"; -$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; -$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["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["Friendica Communications Server - Setup"] = "Friendica Komunikač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["System check"] = "Testování systému"; -$a->strings["Next"] = "Dále"; -$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["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["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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; -$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; -$a->strings["PHP cli binary"] = "PHP cli binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "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."; -$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; -$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["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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; -$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["

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["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["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["yes"] = "ano"; +$a->strings["no"] = "ne"; +$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 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["photo"] = "fotografie"; +$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["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["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 (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno."; $a->strings["Site"] = "Web"; $a->strings["Users"] = "Uživatelé"; @@ -405,6 +190,7 @@ $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"; @@ -435,6 +221,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL po $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["Save Settings"] = "Uložit Nastavení"; +$a->strings["Registration"] = "Registrace"; $a->strings["File upload"] = "Nahrání souborů"; $a->strings["Policies"] = "Politiky"; $a->strings["Advanced"] = "Pokročilé"; @@ -543,6 +330,7 @@ $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["Registration details for %s"] = "Registrační údaje pro %s"; $a->strings["Registration successful. Email send to user"] = "Registrace úspěšná. Email zaslán uživateli"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s uživatel blokován/odblokován", @@ -565,7 +353,6 @@ $a->strings["Request date"] = "Datum žádosti"; $a->strings["Name"] = "Jméno"; $a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Žádné registrace."; -$a->strings["Approve"] = "Schválit"; $a->strings["Deny"] = "Odmítnout"; $a->strings["Block"] = "Blokovat"; $a->strings["Unblock"] = "Odblokovat"; @@ -588,6 +375,7 @@ $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."; @@ -606,11 +394,37 @@ $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["Search"] = "Vyhledávání"; -$a->strings["No results."] = "Žádné výsledky."; -$a->strings["Tips for New Members"] = "Tipy pro nové členy"; -$a->strings["link"] = "odkaz"; -$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["New Message"] = "Nová zpráva"; +$a->strings["No recipient selected."] = "Nevybrán příjemce."; +$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; +$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["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; +$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["Upload photo"] = "Nahrát fotografii"; +$a->strings["Insert web link"] = "Vložit webový odkaz"; +$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["Item not found"] = "Položka nenalezena"; $a->strings["Edit post"] = "Upravit příspěvek"; $a->strings["upload photo"] = "nahrát fotky"; @@ -631,96 +445,169 @@ $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["Item not available."] = "Položka není k dispozici."; -$a->strings["Item was not found."] = "Položka nebyla nalezena."; -$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["Find on this site"] = "Nalézt na tomto webu"; -$a->strings["Finding: "] = "Zjištění: "; -$a->strings["Site Directory"] = "Adresář serveru"; -$a->strings["Find"] = "Najít"; -$a->strings["Age: "] = "Věk: "; -$a->strings["Gender: "] = "Pohlaví: "; -$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["Contact settings applied."] = "Nastavení kontaktu změněno"; -$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; -$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 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["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["Remote Self"] = "Remote Self"; -$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; -$a->strings["Move account"] = "Přesunout účet"; -$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; -$a->strings["Account file"] = "Soubor s účtem"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; +$a->strings["Profile not found."] = "Profil nenalezen"; +$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."; +$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; +$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; +$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; +$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; +$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["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 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["Photos"] = "Fotografie"; +$a->strings["Files"] = "Soubory"; +$a->strings["Welcome to %s"] = "Vítá Vás %s"; $a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; $a->strings["Visible to:"] = "Viditelné pro:"; -$a->strings["Save"] = "Uložit"; +$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["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; +$a->strings["No recipient."] = "Žádný příjemce."; +$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["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; +$a->strings["Edit contact"] = "Editovat kontakt"; +$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; +$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["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["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; +$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; +$a->strings["Wall Photos"] = "Fotografie na zdi"; +$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; +$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["%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["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"; +$a->strings["Album not found."] = "Album nenalezeno."; +$a->strings["Delete Album"] = "Smazat album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; +$a->strings["Delete Photo"] = "Smazat fotografii"; +$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; +$a->strings["a photo"] = "fotografie"; +$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; +$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; +$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["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["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; +$a->strings["Permissions"] = "Oprávnění:"; +$a->strings["Show to Groups"] = "Zobrazit ve Skupinách"; +$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; +$a->strings["Private Photo"] = "Soukromé Fotografie"; +$a->strings["Public Photo"] = "Veřejné Fotografie"; +$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["View Full Size"] = "Zobrazit v plné velikosti"; +$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"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Share"] = "Sdílet"; +$a->strings["View Album"] = "Zobrazit album"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["No profile"] = "Žádný profil"; +$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?"] = "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["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; +$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["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; +$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["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"] = "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."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; +$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["Reset"] = "Reset"; +$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; +$a->strings["Item not available."] = "Položka není k dispozici."; +$a->strings["Item was not found."] = "Položka nebyla nalezena."; +$a->strings["Applications"] = "Aplikace"; +$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; $a->strings["Help:"] = "Nápověda:"; $a->strings["Help"] = "Nápověda"; -$a->strings["No profile"] = "Žádný profil"; -$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."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d požadovaný parametr nebyl nalezen na daném místě", - 1 => "%d požadované parametry nebyly nalezeny na daném místě", - 2 => "%d požadované parametry nebyly nalezeny na daném místě", -); -$a->strings["Introduction complete."] = "Představení dokončeno."; -$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; -$a->strings["Profile unavailable."] = "Profil není k dispozici."; -$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; -$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."; -$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; -$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; -$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; -$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 propojení %s."; -$a->strings["Confirm"] = "Potvrdit"; -$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; -$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["Add a personal note:"] = "Přidat osobní poznámku:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; -$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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; -$a->strings["View in context"] = "Pohled v kontextu"; $a->strings["%d contact edited."] = array( 0 => "%d kontakt upraven.", 1 => "%d kontakty upraveny", @@ -753,7 +640,6 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Zobrazit všechny kontakty"; $a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; $a->strings["Unignore"] = "Přestat ignorovat"; -$a->strings["Ignore"] = "Ignorovat"; $a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; $a->strings["Unarchive"] = "Vrátit z archívu"; $a->strings["Archive"] = "Archivovat"; @@ -766,7 +652,6 @@ $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["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 URL settings"] = "Opravit nastavení adresy URL "; @@ -777,7 +662,6 @@ $a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; $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["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; $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["Notification for new posts"] = "Upozornění na nové příspěvky"; $a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; @@ -799,10 +683,91 @@ $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["Search your contacts"] = "Prohledat Vaše kontakty"; +$a->strings["Finding: "] = "Zjištění: "; +$a->strings["Find"] = "Najít"; $a->strings["Update"] = "Aktualizace"; -$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; +$a->strings["No videos selected"] = "Není vybráno žádné video"; +$a->strings["Recent Videos"] = "Aktuální Videa"; +$a->strings["Upload New Videos"] = "Nahrát nová videa"; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["Contact added"] = "Kontakt přidán"; +$a->strings["Move account"] = "Přesunout účet"; +$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; +$a->strings["Account file"] = "Soubor s účtem"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; +$a->strings["Friends of %s"] = "Přátelé uživatele %s"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; +$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["Remove"] = "Odstranit"; +$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. 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["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["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["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["Remove term"] = "Odstranit termín"; +$a->strings["Saved Searches"] = "Uložená hledání"; +$a->strings["Search"] = "Vyhledávání"; +$a->strings["No results."] = "Žádné výsledky."; +$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; +$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; +$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; +$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.", + 1 => "%d zprávy odeslány.", + 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["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["Additional features"] = "Další funkčnosti"; $a->strings["Display"] = "Zobrazení"; $a->strings["Social Networks"] = "Sociální sítě"; @@ -927,8 +892,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o p $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["Show to Groups"] = "Zobrazit ve Skupinách"; -$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; $a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; $a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; $a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; @@ -952,6 +915,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Zm $a->strings["Relocate"] = "Změna umístění"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; $a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; +$a->strings["Item has been removed."] = "Položka byla odstraněna."; +$a->strings["People Search"] = "Vyhledávání lidí"; +$a->strings["No matches"] = "Žádné shody"; $a->strings["Profile deleted."] = "Profil smazán."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Nový profil vytvořen."; @@ -1020,58 +986,79 @@ $a->strings["Love/romance"] = "Láska/romantika"; $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["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; -$a->strings["Group created."] = "Skupina vytvořena."; -$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; -$a->strings["Group not found."] = "Skupina nenalezena."; -$a->strings["Group name changed."] = "Název skupiny byl změněn."; -$a->strings["Save Group"] = "Uložit Skupinu"; -$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$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["Group Editor"] = "Editor skupin"; -$a->strings["Members"] = "Členové"; -$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; -$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 (raw HTML): "] = "bb2html (raw HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$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["link"] = "odkaz"; +$a->strings["Export account"] = "Exportovat účet"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; +$a->strings["Export all"] = "Exportovat vše"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; +$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["Nothing new here"] = "Zde není nic nového"; +$a->strings["Clear notifications"] = "Smazat notifikace"; $a->strings["Not available."] = "Není k dispozici."; -$a->strings["Contact added"] = "Kontakt přidán"; -$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; -$a->strings["System Notifications"] = "Systémová upozornění"; -$a->strings["New Message"] = "Nová zpráva"; -$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; -$a->strings["Messages"] = "Zprávy"; -$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; -$a->strings["Message deleted."] = "Zpráva odstraněna."; -$a->strings["Conversation removed."] = "Konverzace odstraněna."; -$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; -$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; +$a->strings["Community"] = "Komunita"; +$a->strings["Save to Folder:"] = "Uložit do složky:"; +$a->strings["- select -"] = "- vyber -"; +$a->strings["Save"] = "Uložit"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; +$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["Invalid profile identifier."] = "Neplatný identifikátor profilu."; +$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; +$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; +$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["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; +$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["Connect"] = "Spojit"; +$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; +$a->strings["Access denied."] = "Přístup odmítnut"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; +$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 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["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["No contacts."] = "Žádné kontakty."; +$a->strings["View Contacts"] = "Zobrazit kontakty"; +$a->strings["Personal Notes"] = "Osobní poznámky"; +$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["Global Directory"] = "Globální adresář"; +$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["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Časová konverze"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; @@ -1079,84 +1066,7 @@ $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["Save to Folder:"] = "Uložit do složky:"; -$a->strings["- select -"] = "- vyber -"; -$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["No contacts."] = "Žádné kontakty."; -$a->strings["View Contacts"] = "Zobrazit kontakty"; -$a->strings["People Search"] = "Vyhledávání lidí"; -$a->strings["No matches"] = "Žádné shody"; -$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; -$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; -$a->strings["Album not found."] = "Album nenalezeno."; -$a->strings["Delete Album"] = "Smazat album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; -$a->strings["Delete Photo"] = "Smazat fotografii"; -$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; -$a->strings["a photo"] = "fotografie"; -$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; -$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; -$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; -$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; -$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["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["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; -$a->strings["Permissions"] = "Oprávnění:"; -$a->strings["Private Photo"] = "Soukromé Fotografie"; -$a->strings["Public Photo"] = "Veřejné Fotografie"; -$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["View Full Size"] = "Zobrazit v plné velikosti"; -$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"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Soukromé fotografie"; -$a->strings["Public photo"] = "Veřejné fotografie"; -$a->strings["Share"] = "Sdílet"; -$a->strings["View Album"] = "Zobrazit album"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; -$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["No videos selected"] = "Není vybráno žádné video"; -$a->strings["View Video"] = "Zobrazit video"; -$a->strings["Recent Videos"] = "Aktuální Videa"; -$a->strings["Upload New Videos"] = "Nahrát nová videa"; -$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; -$a->strings["Export account"] = "Exportovat účet"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; -$a->strings["Export all"] = "Exportovat vše"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; -$a->strings["Common Friends"] = "Společní přátelé"; -$a->strings["No contacts in common."] = "Žádné společné kontakty."; -$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; -$a->strings["Wall Photos"] = "Fotografie na zdi"; +$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; $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ě."; @@ -1170,51 +1080,89 @@ $a->strings["Crop Image"] = "Oříznout obrázek"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; $a->strings["Done Editing"] = "Editace dokončena"; $a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; -$a->strings["Applications"] = "Aplikace"; -$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; -$a->strings["Nothing new here"] = "Zde není nic nového"; -$a->strings["Clear notifications"] = "Smazat notifikace"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikač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["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["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["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["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)"; +$a->strings["Found PHP version: "] = "Nalezena PHP verze:"; +$a->strings["PHP cli binary"] = "PHP cli binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "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."; +$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován."; +$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["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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis"; +$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["

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["Group created."] = "Skupina vytvořena."; +$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; +$a->strings["Group not found."] = "Skupina nenalezena."; +$a->strings["Group name changed."] = "Název skupiny byl změněn."; +$a->strings["Save Group"] = "Uložit Skupinu"; +$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; +$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["Group Editor"] = "Editor skupin"; +$a->strings["Members"] = "Členové"; +$a->strings["No such group"] = "Žádná taková skupina"; +$a->strings["Group is empty"] = "Skupina je prázdná"; +$a->strings["Group: "] = "Skupina: "; +$a->strings["View in context"] = "Pohled v kontextu"; +$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["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["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["Remove"] = "Odstranit"; -$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["Create New Event"] = "Vytvořit novou událost"; -$a->strings["Previous"] = "Předchozí"; -$a->strings["hour:minute"] = "hodina:minuta"; -$a->strings["Event details"] = "Detaily události"; -$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["Title:"] = "Název:"; -$a->strings["Share this event"] = "Sdílet tuto událost"; -$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["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; -$a->strings["Files"] = "Soubory"; -$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; -$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["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["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["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; @@ -1222,176 +1170,188 @@ $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"] = "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["{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["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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; -$a->strings["Discard"] = "Odstranit"; -$a->strings["System"] = "Systém"; -$a->strings["Network"] = "Síť"; -$a->strings["Introductions"] = "Představení"; -$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["Friend Suggestion"] = "Návrh přátelství"; -$a->strings["suggested by %s"] = "navrhl %s"; -$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; -$a->strings["if applicable"] = "je-li použitelné"; -$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["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 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 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["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; -$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; -$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; -$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.", - 1 => "%d zprávy odeslány.", - 2 => "%d zprávy odeslány.", +$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %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["Search Results For:"] = "Výsledky hledání pro:"; +$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["Shared Links"] = "Sdílené odkazy"; +$a->strings["Interesting Links"] = "Zajímavé odkazy"; +$a->strings["Starred"] = "S hvězdičkou"; +$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; +$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["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["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["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 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["Welcome to %s"] = "Vítá Vás %s"; -$a->strings["Friends of %s"] = "Přátelé uživatele %s"; -$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; -$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["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."; +$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["Contact settings applied."] = "Nastavení kontaktu změněno"; +$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; +$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 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["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["Remote Self"] = "Remote Self"; +$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; +$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["event"] = "událost"; +$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["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["Theme settings"] = "Nastavení téma"; +$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; +$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["Set style"] = "Nastavit styl"; +$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; +$a->strings["Alignment"] = "Zarovnání"; +$a->strings["Left"] = "Vlevo"; +$a->strings["Center"] = "Uprostřed"; +$a->strings["Color scheme"] = "Barevné schéma"; +$a->strings["Posts font size"] = "Velikost písma u příspěvků"; +$a->strings["Textareas font size"] = "Velikost písma textů"; +$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 theme width"] = "Nastavení šířku grafické šablony"; +$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["Logout"] = "Odhlásit se"; +$a->strings["Login"] = "Přihlásit se"; +$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; +$a->strings["Password: "] = "Heslo: "; +$a->strings["Remember me"] = "Pamatuj si mne"; +$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; +$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; +$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; +$a->strings["terms of service"] = "podmínky použití"; +$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; +$a->strings["privacy policy"] = "Ochrana soukromí"; +$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["Profiles"] = "Profily"; +$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; +$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["[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"] = "Stav"; +$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; +$a->strings["Profile Details"] = "Detaily profilu"; +$a->strings["Videos"] = "Videa"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; +$a->strings["General Features"] = "Obecné funkčnosti"; +$a->strings["Multiple Profiles"] = "Vícenásobné profily"; +$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; +$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; +$a->strings["Richtext Editor"] = "Richtext Editor"; +$a->strings["Enable richtext editor"] = "Povolit richtext editor"; +$a->strings["Post Preview"] = "Náhled příspěvku"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; +$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; +$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; +$a->strings["Search by Date"] = "Vyhledávat dle Data"; +$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; +$a->strings["Group Filter"] = "Skupinový Filtr"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; +$a->strings["Network Filter"] = "Síťový Filtr"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; +$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; +$a->strings["Network Tabs"] = "Síťové záložky"; +$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; +$a->strings["Network New Tab"] = "Nová záložka síť"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; +$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; +$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; +$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; +$a->strings["Multiple Deletion"] = "Násobné mazání"; +$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; +$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; +$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; +$a->strings["Tagging"] = "Štítkování"; +$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; +$a->strings["Post Categories"] = "Kategorie příspěvků"; +$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; $a->strings["Saved Folders"] = "Uložené složky"; -$a->strings["Everything"] = "Všechno"; -$a->strings["Categories"] = "Kategorie"; -$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["User not found."] = "Uživatel nenalezen"; -$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; -$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; -$a->strings["view full size"] = "zobrazit v plné velikosti"; -$a->strings["Starts:"] = "Začíná:"; -$a->strings["Finishes:"] = "Končí:"; -$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["noreply"] = "neodpovídat"; -$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["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; +$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; +$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; +$a->strings["Star Posts"] = "Příspěvky s hvězdou"; +$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; +$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["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["Friends"] = "Přátelé"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; -$a->strings["poked"] = "šťouchnut"; -$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["remove"] = "odstranit"; -$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; -$a->strings["Follow Thread"] = "Následovat vlákno"; -$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["Poke"] = "Šťouchnout"; -$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í"; -$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; -$a->strings["and"] = "a"; -$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 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["Delete item(s)?"] = "Smazat položku(y)?"; -$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; -$a->strings["permissions"] = "oprávnění"; -$a->strings["Post to Groups"] = "Zveřejnit na Groups"; -$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; -$a->strings["Private post"] = "Soukromý příspěvek"; -$a->strings["Logged out."] = "Odhlášen."; -$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; -$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; -$a->strings["User creation error"] = "Chyba vytváření uživatele"; -$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; -$a->strings["%d contact not imported"] = array( - 0 => "%d kontakt nenaimporován", - 1 => "%d kontaktů nenaimporováno", - 2 => "%d kontakty nenaimporovány", -); -$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; +$a->strings["Starts:"] = "Začíná:"; +$a->strings["Finishes:"] = "Končí:"; +$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["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; +$a->strings["Tags:"] = "Štítky:"; +$a->strings["Religion:"] = "Náboženství:"; +$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:"; +$a->strings["Books, literature:"] = "Knihy, literatura:"; +$a->strings["Television:"] = "Televize:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; +$a->strings["Love/Romance:"] = "Láska/romance"; +$a->strings["Work/employment:"] = "Práce/zaměstnání:"; +$a->strings["School/education:"] = "Škola/vzdělávání:"; +$a->strings["[no subject]"] = "[bez předmětu]"; +$a->strings[" on Last.fm"] = " na Last.fm"; $a->strings["newer"] = "novější"; $a->strings["older"] = "starší"; $a->strings["prev"] = "předchozí"; @@ -1405,6 +1365,7 @@ $a->strings["%d Contact"] = array( 2 => "%d kontaktů", ); $a->strings["poke"] = "šťouchnout"; +$a->strings["poked"] = "šťouchnut"; $a->strings["ping"] = "cinknout"; $a->strings["pinged"] = "cinkut"; $a->strings["prod"] = "pobídnout"; @@ -1456,10 +1417,213 @@ $a->strings["November"] = "Listopadu"; $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["User not found."] = "Uživatel nenalezen"; +$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; +$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; +$a->strings["%s's birthday"] = "%s má narozeniny"; +$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; +$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["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; +$a->strings["Archives"] = "Archív"; +$a->strings["(no subject)"] = "(Bez předmětu)"; +$a->strings["noreply"] = "neodpovídat"; +$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$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["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["Male"] = "Muž"; +$a->strings["Female"] = "Žena"; +$a->strings["Currently Male"] = "V současné době muž"; +$a->strings["Currently Female"] = "V současné době žena"; +$a->strings["Mostly Male"] = "Většinou muž"; +$a->strings["Mostly Female"] = "Většinou žena"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transexuál"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutrál"; +$a->strings["Non-specific"] = "Nespecifikováno"; +$a->strings["Other"] = "Jiné"; +$a->strings["Undecided"] = "Nerozhodnuto"; +$a->strings["Males"] = "Muži"; +$a->strings["Females"] = "Ženy"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbička"; +$a->strings["No Preference"] = "Bez preferencí"; +$a->strings["Bisexual"] = "Bisexuál"; +$a->strings["Autosexual"] = "Autosexuál"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "panic/panna"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetišista"; +$a->strings["Oodles"] = "Hodně"; +$a->strings["Nonsexual"] = "Nesexuální"; +$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"; +$a->strings["Friends"] = "Přátelé"; +$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["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["It's complicated"] = "Je to složité"; +$a->strings["Don't care"] = "Nezajímá"; +$a->strings["Ask me"] = "Zeptej se mě"; +$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; +$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; +$a->strings["User creation error"] = "Chyba vytváření uživatele"; +$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; +$a->strings["%d contact not imported"] = array( + 0 => "%d kontakt nenaimporován", + 1 => "%d kontaktů nenaimporováno", + 2 => "%d kontakty nenaimporovány", +); +$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; +$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["%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["remove"] = "odstranit"; +$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; +$a->strings["Follow Thread"] = "Následovat vlákno"; +$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["Poke"] = "Šťouchnout"; +$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í"; +$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; +$a->strings["and"] = "a"; +$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 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["Delete item(s)?"] = "Smazat položku(y)?"; +$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; +$a->strings["permissions"] = "oprávnění"; +$a->strings["Post to Groups"] = "Zveřejnit na Groups"; +$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; +$a->strings["Private post"] = "Soukromý příspěvek"; +$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["Everything"] = "Všechno"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["End this session"] = "Konec této relace"; +$a->strings["Sign in"] = "Přihlásit se"; +$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"; +$a->strings["Apps"] = "Aplikace"; +$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; +$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["Information"] = "Informace"; +$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; +$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; +$a->strings["Network Reset"] = "Síťový Reset"; +$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; +$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["Account settings"] = "Nastavení účtu"; +$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; +$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; +$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; +$a->strings["Navigation"] = "Navigace"; +$a->strings["Site map"] = "Mapa webu"; +$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; +$a->strings["Block immediately"] = "Okamžitě blokovat "; +$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; +$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; +$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; +$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; +$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["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora konektor"; +$a->strings["Statusnet"] = "Statusnet"; $a->strings["Friendica Notification"] = "Friendica Notifikace"; $a->strings["Thank You,"] = "Děkujeme, "; $a->strings["%s Administrator"] = "%s Administrátor"; @@ -1501,7 +1665,30 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $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[" on Last.fm"] = " na Last.fm"; +$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["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["Image/photo"] = "Obrázek/fotografie"; +$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; +$a->strings["Embedded content"] = "vložený obsah"; +$a->strings["Embedding disabled"] = "Vkládání zakázáno"; $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"; @@ -1509,89 +1696,8 @@ $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["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["[no subject]"] = "[bez předmětu]"; -$a->strings["End this session"] = "Konec této relace"; -$a->strings["Sign in"] = "Přihlásit se"; -$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"; -$a->strings["Apps"] = "Aplikace"; -$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; -$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["Information"] = "Informace"; -$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; -$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; -$a->strings["Network Reset"] = "Síťový Reset"; -$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; -$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["Account settings"] = "Nastavení účtu"; -$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; -$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; -$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; -$a->strings["Navigation"] = "Navigace"; -$a->strings["Site map"] = "Mapa webu"; -$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["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; -$a->strings["Tags:"] = "Štítky:"; -$a->strings["Religion:"] = "Náboženství:"; -$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:"; -$a->strings["Books, literature:"] = "Knihy, literatura:"; -$a->strings["Television:"] = "Televize:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; -$a->strings["Love/Romance:"] = "Láska/romance"; -$a->strings["Work/employment:"] = "Práce/zaměstnání:"; -$a->strings["School/education:"] = "Škola/vzdělávání:"; -$a->strings["Image/photo"] = "Obrázek/fotografie"; -$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; -$a->strings[""] = ""; -$a->strings["$1 wrote:"] = "$1 napsal:"; -$a->strings["Encrypted content"] = "Šifrovaný obsah"; -$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; -$a->strings["Block immediately"] = "Okamžitě blokovat "; -$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; -$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; -$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; -$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; -$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["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora konektor"; -$a->strings["Statusnet"] = "Statusnet"; +$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Drop Contact"] = "Odstranit kontakt"; $a->strings["Miscellaneous"] = "Různé"; $a->strings["year"] = "rok"; $a->strings["month"] = "měsíc"; @@ -1610,116 +1716,4 @@ $a->strings["minutes"] = "minut"; $a->strings["second"] = "sekunda"; $a->strings["seconds"] = "sekund"; $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["General Features"] = "Obecné funkčnosti"; -$a->strings["Multiple Profiles"] = "Vícenásobné profily"; -$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; -$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; -$a->strings["Richtext Editor"] = "Richtext Editor"; -$a->strings["Enable richtext editor"] = "Povolit richtext editor"; -$a->strings["Post Preview"] = "Náhled příspěvku"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; -$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; -$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; -$a->strings["Search by Date"] = "Vyhledávat dle Data"; -$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; -$a->strings["Group Filter"] = "Skupinový Filtr"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; -$a->strings["Network Filter"] = "Síťový Filtr"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; -$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; -$a->strings["Network Tabs"] = "Síťové záložky"; -$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; -$a->strings["Network New Tab"] = "Nová záložka síť"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; -$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; -$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; -$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; -$a->strings["Multiple Deletion"] = "Násobné mazání"; -$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; -$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; -$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; -$a->strings["Tagging"] = "Štítkování"; -$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; -$a->strings["Post Categories"] = "Kategorie příspěvků"; -$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; -$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; -$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; -$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; -$a->strings["Star Posts"] = "Příspěvky s hvězdou"; -$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; -$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; -$a->strings["Attachments:"] = "Přílohy:"; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$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["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; -$a->strings["Archives"] = "Archív"; -$a->strings["Embedded content"] = "vložený obsah"; -$a->strings["Embedding disabled"] = "Vkládání zakázáno"; -$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["Male"] = "Muž"; -$a->strings["Female"] = "Žena"; -$a->strings["Currently Male"] = "V současné době muž"; -$a->strings["Currently Female"] = "V současné době žena"; -$a->strings["Mostly Male"] = "Většinou muž"; -$a->strings["Mostly Female"] = "Většinou žena"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transexuál"; -$a->strings["Hermaphrodite"] = "Hermafrodit"; -$a->strings["Neuter"] = "Neutrál"; -$a->strings["Non-specific"] = "Nespecifikováno"; -$a->strings["Other"] = "Jiné"; -$a->strings["Undecided"] = "Nerozhodnuto"; -$a->strings["Males"] = "Muži"; -$a->strings["Females"] = "Ženy"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbička"; -$a->strings["No Preference"] = "Bez preferencí"; -$a->strings["Bisexual"] = "Bisexuál"; -$a->strings["Autosexual"] = "Autosexuál"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "panic/panna"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetišista"; -$a->strings["Oodles"] = "Hodně"; -$a->strings["Nonsexual"] = "Nesexuální"; -$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"; -$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["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["It's complicated"] = "Je to složité"; -$a->strings["Don't care"] = "Nezajímá"; -$a->strings["Ask me"] = "Zeptej se mě"; -$a->strings["stopped following"] = "následování zastaveno"; -$a->strings["Drop Contact"] = "Odstranit kontakt"; +$a->strings["view full size"] = "zobrazit v plné velikosti"; diff --git a/view/de/messages.po b/view/de/messages.po index 96fdc01f9e..06934aeccd 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 07:51+0200\n" -"PO-Revision-Date: 2014-05-16 10:05+0000\n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-17 12:45+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -40,26 +40,26 @@ msgstr "" msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1355 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "Private Nachricht" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:671 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "Bearbeiten" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 #: ../../include/conversation.php:612 msgid "Select" msgstr "Auswählen" -#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:672 ../../mod/group.php:171 -#: ../../mod/photos.php:1650 ../../include/conversation.php:613 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "Löschen" @@ -87,8 +87,8 @@ msgstr "markiert" msgid "add tag" msgstr "Tag hinzufügen" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1538 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" @@ -96,8 +96,8 @@ msgstr "Ich mag das (toggle)" msgid "like" msgstr "mag ich" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1539 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" @@ -150,16 +150,16 @@ msgstr "via Wall-To-Wall:" msgid "%s from %s" msgstr "%s von %s" -#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 -#: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "Kommentar" -#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 #: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Bitte warten" @@ -178,34 +178,31 @@ msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "mehr anzeigen" -#: ../../object/Item.php:655 ../../mod/content.php:706 -#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1690 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "Das bist du" -#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "Senden" @@ -242,8 +239,8 @@ msgid "Video" msgstr "Video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 #: ../../include/conversation.php:1124 msgid "Preview" msgstr "Vorschau" @@ -260,31 +257,32 @@ msgstr "Nicht gefunden" msgid "Page not found." msgstr "Seite nicht gefunden." -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Zugriff verweigert" -#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 -#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 #: ../../mod/settings.php:102 ../../mod/settings.php:591 -#: ../../mod/settings.php:596 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 -#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 #: ../../include/items.php:4390 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -293,681 +291,196 @@ msgstr "Zugriff verweigert." msgid "toggle mobile" msgstr "auf/von Mobile Ansicht wechseln" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:145 -msgid "Home" -msgstr "Pinnwand" +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:145 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" -msgstr "Profil" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "Bilder" - -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Deine Fotos" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "Veranstaltungen" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Gemeinschaft" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "nicht zeigen" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "zeigen" - -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:49 -msgid "Theme settings" -msgstr "Themeneinstellungen" - -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 -#: ../../include/nav.php:173 -msgid "Contacts" -msgstr "Kontakte" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Foren" - -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1953 -msgid "event" -msgstr "Veranstaltung" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1908 -msgid "status" -msgstr "Status" - -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1955 ../../include/diaspora.php:1908 -msgid "photo" -msgstr "Foto" - -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Letzte Fotos" +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1062 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 -#: ../../mod/photos.php:729 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -msgid "Profile Photos" -msgstr "Profilbilder" +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Freunde finden" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Freunde einladen" +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 -#: ../../include/nav.php:169 -msgid "Settings" -msgstr "Einstellungen" +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ungültiger Locator" -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden." -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Verbinde Dienste" +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Du hast dich hier bereits vorgestellt." -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob du bereits mit %s befreundet bist." -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Farbschema" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1689 -msgid "default" -msgstr "Standard" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "Hintergrundbild" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/dfrn_request.php:659 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll." +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" -msgstr "Hintergrundfarbe" +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an." - -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "Schriftgröße" - -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "Basis-Schriftgröße für dein Interface." - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: ../../view/theme/vier/config.php:50 -msgid "Set style" -msgstr "Stiel auswählen" - -#: ../../boot.php:692 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" - -#: ../../boot.php:695 -msgid "show fewer" -msgstr "weniger anzeigen" - -#: ../../boot.php:1023 +#: ../../mod/dfrn_request.php:673 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." -#: ../../boot.php:1025 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Update Error at %s" -msgstr "Updatefehler bei %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige deine Kontaktanfrage bei %s." -#: ../../boot.php:1135 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Bestätigen" -#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 -msgid "Register" -msgstr "Registrieren" +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" -#: ../../boot.php:1160 ../../include/nav.php:73 -msgid "Logout" -msgstr "Abmelden" - -#: ../../boot.php:1161 ../../include/nav.php:91 -msgid "Login" -msgstr "Anmeldung" - -#: ../../boot.php:1163 -msgid "Nickname or Email address: " -msgstr "Spitzname oder E-Mail-Adresse: " - -#: ../../boot.php:1164 -msgid "Password: " -msgstr "Passwort: " - -#: ../../boot.php:1165 -msgid "Remember me" -msgstr "Anmeldedaten merken" - -#: ../../boot.php:1168 -msgid "Or login using OpenID: " -msgstr "Oder melde dich mit deiner OpenID an: " - -#: ../../boot.php:1174 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: ../../boot.php:1175 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: ../../boot.php:1177 -msgid "Website Terms of Service" -msgstr "Website Nutzungsbedingungen" - -#: ../../boot.php:1178 -msgid "terms of service" -msgstr "Nutzungsbedingungen" - -#: ../../boot.php:1180 -msgid "Website Privacy Policy" -msgstr "Website Datenschutzerklärung" - -#: ../../boot.php:1181 -msgid "privacy policy" -msgstr "Datenschutzerklärung" - -#: ../../boot.php:1314 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: ../../boot.php:1353 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: ../../boot.php:1393 ../../boot.php:1497 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Verbinden" - -#: ../../boot.php:1459 -msgid "Message" -msgstr "Nachricht" - -#: ../../boot.php:1467 ../../include/nav.php:171 -msgid "Profiles" -msgstr "Profile" - -#: ../../boot.php:1467 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: ../../boot.php:1474 ../../mod/profiles.php:731 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: ../../boot.php:1484 ../../mod/profiles.php:742 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../boot.php:1487 ../../mod/profiles.php:744 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../boot.php:1488 ../../mod/profiles.php:745 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 -msgid "Location:" -msgstr "Ort:" - -#: ../../boot.php:1515 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../boot.php:1518 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../boot.php:1520 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../boot.php:1596 ../../boot.php:1682 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: ../../boot.php:1597 ../../boot.php:1683 -msgid "F d" -msgstr "d. F" - -#: ../../boot.php:1642 ../../boot.php:1723 -msgid "[today]" -msgstr "[heute]" - -#: ../../boot.php:1654 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: ../../boot.php:1655 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: ../../boot.php:1716 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: ../../boot.php:1734 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: ../../boot.php:1735 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: ../../boot.php:1972 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:1975 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../boot.php:1982 -msgid "Profile Details" -msgstr "Profildetails" - -#: ../../boot.php:1989 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../boot.php:1993 ../../boot.php:1996 -msgid "Videos" -msgstr "Videos" - -#: ../../boot.php:2006 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: ../../boot.php:2010 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: ../../boot.php:2013 -msgid "Only You Can See This" -msgstr "Nur du kannst das sehen" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stimmung" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" - -#: ../../mod/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 -#: ../../mod/videos.php:115 +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4194 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: ../../mod/display.php:263 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." - -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: ../../mod/friendica.php:59 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: ../../mod/friendica.php:61 +#: ../../mod/dfrn_request.php:811 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:" -#: ../../mod/friendica.php:63 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)" -#: ../../mod/friendica.php:64 +#: ../../mod/dfrn_request.php:829 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: ../../mod/friendica.php:78 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: ../../mod/dfrn_request.php:835 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" +msgid "Does %s know you?" +msgstr "Kennt %s dich?" -#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: ../../mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." - -#: ../../mod/register.php:104 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte." - -#: ../../mod/register.php:109 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../mod/register.php:149 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../mod/register.php:158 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: ../../mod/register.php:196 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:224 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." - -#: ../../mod/register.php:225 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: ../../mod/register.php:226 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: ../../mod/register.php:240 -msgid "Include your profile in member directory?" -msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 #: ../../mod/settings.php:1001 ../../mod/settings.php:1007 #: ../../mod/settings.php:1015 ../../mod/settings.php:1019 #: ../../mod/settings.php:1024 ../../mod/settings.php:1030 @@ -975,12 +488,12 @@ msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" #: ../../mod/settings.php:1072 ../../mod/settings.php:1073 #: ../../mod/settings.php:1074 ../../mod/settings.php:1075 #: ../../mod/settings.php:1076 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4235 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 msgid "Yes" msgstr "Ja" -#: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 #: ../../mod/settings.php:1007 ../../mod/settings.php:1015 #: ../../mod/settings.php:1019 ../../mod/settings.php:1024 #: ../../mod/settings.php:1030 ../../mod/settings.php:1036 @@ -991,912 +504,337 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: ../../mod/register.php:261 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" -#: ../../mod/register.php:262 -msgid "Your invitation ID: " -msgstr "ID deiner Einladung: " +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/register.php:265 ../../mod/admin.php:575 -msgid "Registration" -msgstr "Registrierung" +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/register.php:274 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: ../../mod/register.php:275 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "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:276 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: ../../mod/register.php:285 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "Importiere dein Profil auf diese Friendica Instanz" - -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:587 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Auf %s wurde die Verbindung akzeptiert" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde dich an um fortzufahren." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: ../../mod/lostpass.php:66 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere dein neues Passwort - und dann" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "hier klicken, um dich anzumelden" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde dein Passwort geändert" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hast du dein Passwort vergessen?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte deinen Heimatort nicht bestimmen." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../mod/wallmessage.php:143 +#: ../../mod/dfrn_request.php:843 #, php-format msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "An:" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Adresse deines Profils:" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Betreff:" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Anfrage abschicken" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1089 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1093 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" - -#: ../../mod/newmember.php:26 -msgid "" -"On your 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 "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Gruppen" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest du wirklich diese Empfehlung löschen?" - -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 -#: ../../include/items.php:4238 +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 msgid "Cancel" msgstr "Abbrechen" -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Video ansehen" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Begriff entfernen" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" -#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." -#: ../../mod/network.php:189 ../../include/group.php:275 -msgid "add" -msgstr "hinzufügen" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Verwerfen" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Ignorieren" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Netzwerk" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: ../../mod/network.php:365 ../../mod/notifications.php:88 +#: ../../mod/notifications.php:88 ../../mod/network.php:365 msgid "Personal" msgstr "Persönlich" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um dich geht" +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" +msgstr "Pinnwand" -#: ../../mod/network.php:374 -msgid "New" -msgstr "Neue" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Kontaktanfragen" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Nachrichten" -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Geteilte Links" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Interessante Links" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Markierte" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" -#: ../../mod/network.php:457 +#: ../../mod/notifications.php:152 #, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Verberge diesen Kontakt vor anderen" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "falls anwendbar" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppe: " +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Genehmigen" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Kontakt: " +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Behauptet dich zu kennen: " -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ja" -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nein" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Genehmigen als: " -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Freund" -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Teilenden" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank deiner Friendicaseite wurde installiert." +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" -#: ../../mod/install.php:138 +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "Foto" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "Status" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../mod/openid.php:53 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:521 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Systemtest" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" -msgstr "Nächste" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Noch einmal testen" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Datenbankverbindung" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können." +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst." +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Datenbank-Server" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone deiner Webseite" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Server-Einstellungen" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Pfad zu PHP" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP CLI Binary" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "PHP: mysqli-Modul" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen." - -#: ../../mod/install.php:508 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: ../../mod/install.php:519 -msgid "

What next

" -msgstr "

Wie geht es weiter?

" - -#: ../../mod/install.php:520 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " #: ../../mod/admin.php:55 msgid "Theme settings updated." @@ -1939,6 +877,12 @@ msgstr "Plugin Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + #: ../../mod/admin.php:188 ../../mod/admin.php:855 msgid "Normal Account" msgstr "Normales Konto" @@ -2064,6 +1008,10 @@ msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden ( msgid "Save Settings" msgstr "Einstellungen speichern" +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "Registrierung" + #: ../../mod/admin.php:576 msgid "File upload" msgstr "Datei hochladen" @@ -2565,6 +1513,11 @@ msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + #: ../../mod/admin.php:743 msgid "Registration successful. Email send to user" msgstr "Registration erfolgreich. Dem Nutzer wurde eine Email gesended." @@ -2619,8 +1572,8 @@ msgid "Request date" msgstr "Anfragedatum" #: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 -#: ../../mod/admin.php:932 ../../mod/crepair.php:150 -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 msgid "Name" msgstr "Name" @@ -2634,11 +1587,6 @@ msgstr "E-Mail" msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:908 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Genehmigen" - #: ../../mod/admin.php:909 msgid "Deny" msgstr "Verwehren" @@ -2735,6 +1683,13 @@ msgstr "Einschalten" msgid "Toggle" msgstr "Umschalten" +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Einstellungen" + #: ../../mod/admin.php:1014 ../../mod/admin.php:1235 msgid "Author: " msgstr "Autor:" @@ -2809,29 +1764,131 @@ msgstr "FTP Nutzername" msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 -#: ../../include/text.php:952 ../../include/nav.php:118 -msgid "Search" -msgstr "Suche" +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:89 -msgid "No results." -msgstr "Keine Ergebnisse." +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." -#: ../../mod/share.php:44 -msgid "link" -msgstr "Link" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Möchtest du wirklich diese Nachricht löschen?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../mod/message.php:378 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s und du" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Antwort senden" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 msgid "Item not found" @@ -2913,164 +1970,196 @@ msgstr "Kategorien (kommasepariert)" msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Konto freigegeben." +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." -#: ../../mod/regmod.php:100 +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." -#: ../../mod/directory.php:59 ../../mod/contacts.php:693 -msgid "Finding: " -msgstr "Funde: " +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Verzeichnis" +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." -#: ../../mod/directory.php:61 ../../mod/contacts.php:694 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Finde" +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." -#: ../../mod/directory.php:111 ../../mod/profiles.php:690 -msgid "Age: " -msgstr "Alter: " - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Über:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: ../../mod/crepair.php:139 +#: ../../mod/dfrn_confirm.php:638 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" -#: ../../mod/crepair.php:151 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Auf %s wurde die Verbindung akzeptiert" -#: ../../mod/crepair.php:152 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" -#: ../../mod/crepair.php:153 -msgid "Account URL" -msgstr "Konto-URL" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: ../../mod/crepair.php:154 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../mod/crepair.php:155 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" -#: ../../mod/crepair.php:156 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "Link zum Originalbeitrag" -#: ../../mod/crepair.php:157 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Veranstaltungen" -#: ../../mod/crepair.php:158 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" -#: ../../mod/crepair.php:159 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Vorherige" -#: ../../mod/crepair.php:161 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Nächste" -#: ../../mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden." +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "Stunde:Minute" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Veranstaltungsdetails" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist." +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Benötigt" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beschreibung" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Ort:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Dateien" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" #: ../../mod/lockview.php:31 ../../mod/lockview.php:39 msgid "Remote privacy information not available." @@ -3080,9 +2169,522 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 -msgid "Save" -msgstr "Speichern" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte deinen Heimatort nicht bestimmen." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib dein Passwort zur Verifikation ein:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bildgröße überschreitet das Limit von %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde dich an um fortzufahren." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "jeder" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest du wirklich dieses Foto löschen?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "einem Foto" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "Die Bildgröße übersteigt das Limit von " + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Foto betrachten" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Fotos ansehen" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Tags: " + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Teilen" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Album betrachten" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "ID deiner Einladung: " + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "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:276 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrieren" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Importiere dein Profil auf diese Friendica Instanz" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." + +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere dein neues Passwort - und dann" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "hier klicken, um dich anzumelden" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde dein Passwort geändert" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hast du dein Passwort vergessen?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." #: ../../mod/help.php:79 msgid "Help:" @@ -3092,209 +2694,6 @@ msgstr "Hilfe:" msgid "Help" msgstr "Hilfe" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Du hast dich hier bereits vorgestellt." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob du bereits mit %s befreundet bist." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige deine Kontaktanfrage bei %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Bestätigen" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s dich?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Adresse deines Profils:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" - -#: ../../mod/content.php:496 ../../include/conversation.php:688 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - #: ../../mod/contacts.php:104 #, php-format msgid "%d contact edited." @@ -3402,12 +2801,6 @@ msgstr "Geblockt-Status ein-/ausschalten" msgid "Unignore" msgstr "Ignorieren aufheben" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorieren" - #: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" @@ -3459,12 +2852,6 @@ msgstr "Kontakt Informationen / Notizen" msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - #: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" @@ -3505,11 +2892,6 @@ msgstr "Derzeit ignoriert" msgid "Currently archived" msgstr "Momentan archiviert" -#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Verberge diesen Kontakt vor anderen" - #: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" @@ -3595,22 +2977,421 @@ msgstr "ist ein Fan von dir" msgid "you are a fan of" msgstr "du bist Fan von" -#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Kontakte" #: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Funde: " + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Finde" + #: ../../mod/contacts.php:699 ../../mod/settings.php:132 #: ../../mod/settings.php:635 msgid "Update" msgstr "Aktualisierungen" -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "jeder" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Entfernen" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: ../../mod/newmember.php:26 +msgid "" +"On your 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 "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Profil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." + +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppen" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." + +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Suche" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" #: ../../mod/settings.php:41 msgid "Additional features" @@ -4113,16 +3894,6 @@ msgstr "Standard-Zugriffsrechte für Beiträge" msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1515 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 -#: ../../mod/photos.php:1516 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - #: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "Privater Standardbeitrag" @@ -4217,6 +3988,18 @@ msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige d msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Personensuche" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + #: ../../mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil gelöscht." @@ -4495,207 +4278,323 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Alter: " + #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Profilbild ändern" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Profilbild" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." +#: ../../mod/share.php:44 +msgid "link" +msgstr "Link" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Gruppenname:" +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Gruppeneditor" +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Mitglieder" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit dir in Kontakt treten" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} schickte dir eine Nachricht" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} mag %ss Beitrag" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} mag %ss Beitrag nicht" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ist jetzt mit %s befreundet" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} hat etwas veröffentlicht" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} hat dich in einem Beitrag erwähnt" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" #: ../../mod/community.php:23 msgid "Not available." msgstr "Nicht verfügbar." -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Gemeinschaft" -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" -#: ../../mod/message.php:9 ../../include/nav.php:161 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Speichern" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:158 -msgid "Messages" -msgstr "Nachrichten" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest du wirklich diese Nachricht löschen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:378 +#: ../../mod/wall_attach.php:81 #, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" +msgid "File exceeds size limit of %d" +msgstr "Die Datei ist größer als das erlaubte Limit von %d" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und du" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest du wirklich diese Empfehlung löschen?" -#: ../../mod/message.php:548 +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: ../../mod/suggest.php:72 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Verbinden" -#: ../../mod/like.php:169 ../../include/conversation.php:140 +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!" + +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Hinzufügen" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Keine Einträge." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst du mit dem Empfänger machen:" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Über:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." #: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../include/bb2diaspora.php:133 @@ -4731,333 +4630,9 @@ msgstr "Umgerechnete lokale Zeit: %s" msgid "Please select your timezone:" msgstr "Bitte wähle deine Zeitzone:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1004 -#: ../../include/conversation.php:1022 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Personensuche" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest du wirklich dieses Foto löschen?" - -#: ../../mod/photos.php:660 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: ../../mod/photos.php:660 -msgid "a photo" -msgstr "einem Foto" - -#: ../../mod/photos.php:765 -msgid "Image exceeds size limit of " -msgstr "Die Bildgröße übersteigt das Limit von " - -#: ../../mod/photos.php:773 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: ../../mod/photos.php:928 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: ../../mod/photos.php:1029 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: ../../mod/photos.php:1092 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: ../../mod/photos.php:1127 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: ../../mod/photos.php:1132 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: ../../mod/photos.php:1133 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../mod/photos.php:1146 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1147 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1214 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:1220 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: ../../mod/photos.php:1222 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 -msgid "View Photo" -msgstr "Foto betrachten" - -#: ../../mod/photos.php:1290 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: ../../mod/photos.php:1292 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:1348 -msgid "View photo" -msgstr "Fotos ansehen" - -#: ../../mod/photos.php:1348 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:1349 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: ../../mod/photos.php:1374 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: ../../mod/photos.php:1453 -msgid "Tags: " -msgstr "Tags: " - -#: ../../mod/photos.php:1456 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: ../../mod/photos.php:1496 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: ../../mod/photos.php:1497 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: ../../mod/photos.php:1499 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: ../../mod/photos.php:1502 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:1504 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: ../../mod/photos.php:1508 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1517 -msgid "Private photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1518 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 -msgid "Share" -msgstr "Teilen" - -#: ../../mod/photos.php:1804 ../../mod/videos.php:308 -msgid "View Album" -msgstr "Album betrachten" - -#: ../../mod/photos.php:1813 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Die Datei ist größer als das erlaubte Limit von %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: ../../mod/videos.php:301 ../../include/text.php:1400 -msgid "View Video" -msgstr "Video ansehen" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst du mit dem Empfänger machen:" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildgröße überschreitet das Limit von %d" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -5115,21 +4690,373 @@ msgstr "Bearbeitung abgeschlossen" msgid "Image uploaded successfully." msgstr "Bild erfolgreich hochgeladen." -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank deiner Friendicaseite wurde installiert." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Systemtest" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Noch einmal testen" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Datenbank-Server" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone deiner Webseite" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Server-Einstellungen" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Pfad zu PHP" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "PHP: mysqli-Modul" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." + +#: ../../mod/install.php:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." + +#: ../../mod/install.php:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst." + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt." + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Wie geht es weiter?

" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Mitglieder" + +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Gruppe: " + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Bitte melde dich an." #: ../../mod/match.php:12 msgid "Profile Match" @@ -5143,166 +5070,6 @@ msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schl msgid "is interested in:" msgstr "ist interessiert an:" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 -msgid "Remove" -msgstr "Entfernen" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: ../../mod/events.php:335 ../../include/text.php:1633 -#: ../../include/text.php:1644 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorherige" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "Stunde:Minute" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Benötigt" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschreibung" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: ../../mod/delegate.php:124 ../../include/nav.php:167 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: ../../mod/delegate.php:126 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!" - -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Dateien" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib dein Passwort zur Verifikation ein:" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - #: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." @@ -5338,419 +5105,684 @@ 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/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit dir in Kontakt treten" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} schickte dir eine Nachricht" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: ../../mod/ping.php:254 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommentierte einen Beitrag von %s" +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" -#: ../../mod/ping.php:259 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "hinzufügen" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um dich geht" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Neue" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Markierte" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: ../../mod/network.php:457 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} mag %ss Beitrag" +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} mag %ss Beitrag nicht" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ist jetzt mit %s befreundet" +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Kontakt: " -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} hat etwas veröffentlicht" +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} hat dich in einem Beitrag erwähnt" +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../mod/openid.php:53 +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: ../../mod/crepair.php:139 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:83 ../../include/nav.php:142 -msgid "Network" -msgstr "Netzwerk" - -#: ../../mod/notifications.php:98 ../../include/nav.php:151 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "falls anwendbar" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Behauptet dich zu kennen: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nein" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Genehmigen als: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Freund" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Teilenden" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: ../../mod/notifications.php:220 ../../include/nav.php:152 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: ../../mod/invite.php:120 -#, php-format +#: ../../mod/crepair.php:140 msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." -#: ../../mod/invite.php:122 +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "Konto-URL" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden." + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Foren" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "Veranstaltung" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Freunde finden" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "nicht zeigen" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "zeigen" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Themeneinstellungen" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Stiel auswählen" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Farbschema" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "weniger anzeigen" + +#: ../../boot.php:1023 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website." +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: ../../mod/invite.php:123 +#: ../../boot.php:1025 #, php-format +msgid "Update Error at %s" +msgstr "Updatefehler bei %s" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Abmelden" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Anmeldung" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Spitzname oder E-Mail-Adresse: " + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Passwort: " + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Oder melde dich mit deiner OpenID an: " + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Website Nutzungsbedingungen" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "Nutzungsbedingungen" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Website Datenschutzerklärung" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "Datenschutzerklärung" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Nachricht" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profile" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "d. F" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[heute]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Profildetails" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Videos" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Nur du kannst das sehen" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Features" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Web-Editor" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Den Web-Editor für neue Beiträge aktivieren" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Beitragsvorschau" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" + +#: ../../include/features.php:33 msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst." +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Archiv" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Gruppen Filter" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Netzwerk Filter" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Leute finden" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Tagging" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Zufälliges Profil" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Netzwerke" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Beitragskategorien" -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Alle Netzwerke" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" -#: ../../include/contact_widgets.php:103 ../../include/features.php:60 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Alles" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Beiträge Markieren" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" -#: ../../include/api.php:263 ../../include/api.php:274 -#: ../../include/api.php:375 -msgid "User not found." -msgstr "Nutzer nicht gefunden." +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." -#: ../../include/api.php:1123 -msgid "There is no status with this id." -msgstr "Es gibt keinen Status mit dieser ID." +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: ../../include/api.php:1193 -msgid "There is no conversation with this id." -msgstr "Es existiert keine Unterhaltung mit dieser ID." - -#: ../../include/network.php:886 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" #: ../../include/event.php:20 ../../include/bb2diaspora.php:139 msgid "Starts:" @@ -5760,291 +5792,78 @@ msgstr "Beginnt:" msgid "Finishes:" msgstr "Endet:" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#: ../../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 "Geburtstag:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/profile_advanced.php:43 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" -#: ../../include/notifier.php:774 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(kein Betreff)" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tags" -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:467 -msgid "noreply" -msgstr "noreply" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Liebesleben:" -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "Der Name ist zu kurz." +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[kein Betreff]" -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: ../../include/user.php:131 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." - -#: ../../include/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: ../../include/user.php:147 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: ../../include/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: ../../include/user.php:256 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: ../../include/user.php:288 ../../include/user.php:292 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1003 -msgid "poked" -msgstr "stupste" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" - -#: ../../include/conversation.php:770 -msgid "remove" -msgstr "löschen" - -#: ../../include/conversation.php:774 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: ../../include/conversation.php:873 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: ../../include/conversation.php:874 ../../include/Contact.php:229 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: ../../include/conversation.php:875 ../../include/Contact.php:230 -msgid "View Profile" -msgstr "Profil anschauen" - -#: ../../include/conversation.php:876 ../../include/Contact.php:231 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: ../../include/conversation.php:877 ../../include/Contact.php:232 -#: ../../include/Contact.php:255 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: ../../include/conversation.php:878 ../../include/Contact.php:233 -#: ../../include/Contact.php:255 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:879 ../../include/Contact.php:235 -#: ../../include/Contact.php:255 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: ../../include/conversation.php:880 ../../include/Contact.php:228 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: ../../include/conversation.php:950 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: ../../include/conversation.php:964 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:970 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Where are you right now?" -msgstr "Wo hältst du dich jetzt gerade auf?" - -#: ../../include/conversation.php:1006 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: ../../include/conversation.php:1049 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: ../../include/conversation.php:1054 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: ../../include/conversation.php:1109 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: ../../include/conversation.php:1133 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: ../../include/conversation.php:1134 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: ../../include/conversation.php:1135 -msgid "Private post" -msgstr "Privater Beitrag" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr " bei Last.fm" #: ../../include/text.php:296 msgid "newer" @@ -6085,6 +5904,10 @@ msgstr[1] "%d Kontakte" msgid "poke" msgstr "anstupsen" +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "stupste" + #: ../../include/text.php:1004 msgid "ping" msgstr "anpingen" @@ -6289,6 +6112,10 @@ msgstr "Byte" msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "Standard" + #: ../../include/text.php:1701 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" @@ -6305,6 +6132,817 @@ msgstr "Beitrag" msgid "Item filed" msgstr "Beitrag abgelegt" +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "Nutzer nicht gefunden." + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Es existiert keine Unterhaltung mit dieser ID." + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." + +#: ../../include/items.php:1981 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: ../../include/items.php:1982 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" + +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "Eine neue Person teilt mit dir auf " + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "Du hast einen neuen Kontakt auf " + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "Möchtest du wirklich dieses Item löschen?" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "Archiv" + +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "noreply" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "folgen" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: ../../include/security.php:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Hauptsächlich männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Hauptsächlich weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nicht spezifiziert" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Andere" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Männer" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Frauen" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Schwul" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Keine Vorlieben" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuell" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Jungfrauen" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einsam" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "verknallt" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "verliebt" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Untreu" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexbesessen" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "Freunde" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Freunde/Zuwendungen" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verlobt" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "imaginär verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "zusammenlebend" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "wilde Ehe" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Glücklich" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nicht auf der Suche" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrogen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Getrennt" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstabil" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "imaginär geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Verwitwet" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Unsicher" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Ist kompliziert" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Ist mir nicht wichtig" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Frag mich" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "löschen" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Profil anschauen" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Wo hältst du dich jetzt gerade auf?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Privater Beitrag" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Leute finden" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Netzwerke" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Information" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Unterhaltungen deiner Kontakte" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Private E-Mail" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Verwalten" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigation" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Sitemap" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: ../../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 "Zott" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + #: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -6506,9 +7144,110 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr " bei Last.fm" +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" #: ../../include/group.php:25 msgid "" @@ -6541,349 +7280,13 @@ msgstr "Neue Gruppe erstellen" msgid "Contacts not in any group" msgstr "Kontakte in keiner Gruppe" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "folgen" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: ../../include/nav.php:132 -msgid "Information" -msgstr "Information" - -#: ../../include/nav.php:132 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: ../../include/nav.php:142 -msgid "Conversations from your friends" -msgstr "Unterhaltungen deiner Kontakte" - -#: ../../include/nav.php:143 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: ../../include/nav.php:143 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: ../../include/nav.php:151 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: ../../include/nav.php:153 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: ../../include/nav.php:154 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: ../../include/nav.php:158 -msgid "Private mail" -msgstr "Private E-Mail" - -#: ../../include/nav.php:159 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:160 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:164 -msgid "Manage" -msgstr "Verwalten" - -#: ../../include/nav.php:164 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: ../../include/nav.php:169 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: ../../include/nav.php:171 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: ../../include/nav.php:173 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: ../../include/nav.php:180 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: ../../include/nav.php:184 -msgid "Navigation" -msgstr "Navigation" - -#: ../../include/nav.php:184 -msgid "Site map" -msgstr "Sitemap" - -#: ../../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 "Geburtstag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %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 "Hobbies/Interessen:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 -#: ../../include/bbcode.php:922 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:357 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: ../../include/bbcode.php:457 -msgid "" -msgstr "" - -#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: ../../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 "Zott" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Kontakt löschen" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" @@ -6958,459 +7361,6 @@ msgstr "Sekunden" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: ../../include/datetime.php:472 ../../include/items.php:1981 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: ../../include/datetime.php:473 ../../include/items.php:1982 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Features" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Web-Editor" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Den Web-Editor für neue Beiträge aktivieren" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Beitragsvorschau" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Archiv" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Gruppen Filter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Netzwerk Filter" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Tagging" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Beiträge Markieren" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: ../../include/diaspora.php:2299 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: ../../include/items.php:3710 -msgid "A new person is sharing with you at " -msgstr "Eine neue Person teilt mit dir auf " - -#: ../../include/items.php:3710 -msgid "You have a new follower at " -msgstr "Du hast einen neuen Kontakt auf " - -#: ../../include/items.php:4233 -msgid "Do you really want to delete this item?" -msgstr "Möchtest du wirklich dieses Item löschen?" - -#: ../../include/items.php:4460 -msgid "Archives" -msgstr "Archiv" - -#: ../../include/oembed.php:174 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:183 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Hauptsächlich männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Hauptsächlich weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neuter" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nicht spezifiziert" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Andere" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Männer" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Frauen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Schwul" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Keine Vorlieben" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Jungfrauen" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Oodles" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einsam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "verknallt" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "verliebt" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dating" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Untreu" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexbesessen" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Freunde/Zuwendungen" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verlobt" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "imaginär verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "zusammenlebend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "wilde Ehe" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Glücklich" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nicht auf der Suche" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Unstabil" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "imaginär geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Unsicher" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Ist kompliziert" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Ist mir nicht wichtig" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Frag mich" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Kontakt löschen" +#: ../../include/network.php:886 +msgid "view full size" +msgstr "Volle Größe anzeigen" diff --git a/view/de/strings.php b/view/de/strings.php index 4a034befae..25d012d492 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -58,340 +58,125 @@ $a->strings["Page not found."] = "Seite nicht gefunden."; $a->strings["Permission denied"] = "Zugriff verweigert"; $a->strings["Permission denied."] = "Zugriff verweigert."; $a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Home"] = "Pinnwand"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["event"] = "Veranstaltung"; -$a->strings["status"] = "Status"; -$a->strings["photo"] = "Foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["default"] = "Standard"; -$a->strings["Background Image"] = "Hintergrundbild"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll."; -$a->strings["Background Color"] = "Hintergrundfarbe"; -$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an."; -$a->strings["font size"] = "Schriftgröße"; -$a->strings["base font size for your interface"] = "Basis-Schriftgröße für dein Interface."; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Set style"] = "Stiel auswählen"; -$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; -$a->strings["show fewer"] = "weniger anzeigen"; -$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; -$a->strings["Update Error at %s"] = "Updatefehler bei %s"; -$a->strings["Create a New Account"] = "Neues Konto erstellen"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; -$a->strings["Password: "] = "Passwort: "; -$a->strings["Remember me"] = "Anmeldedaten merken"; -$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; -$a->strings["terms of service"] = "Nutzungsbedingungen"; -$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; -$a->strings["privacy policy"] = "Datenschutzerklärung"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Create New Profile"] = "Neues Profil anlegen"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Only You Can See This"] = "Nur du kannst das sehen"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; +$a->strings["Contact not found."] = "Kontakt nicht gefunden."; +$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; $a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Registration details for %s"] = "Details der Registration von %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"; +$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."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s dich?"; $a->strings["Yes"] = "Ja"; $a->strings["No"] = "Nein"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID deiner Einladung: "; -$a->strings["Registration"] = "Registrierung"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "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."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; -$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["No recipient."] = "Kein Empfänger."; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$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."] = "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$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."] = "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$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"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$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."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz"; -$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."; +$a->strings["Your Identity Address:"] = "Adresse deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; $a->strings["Cancel"] = "Abbrechen"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Search Results For:"] = "Suchergebnisse für:"; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["View Video"] = "Video ansehen"; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: "] = "Gruppe: "; -$a->strings["Contact: "] = "Kontakt: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Next"] = "Nächste"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$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'"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."; -$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."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; -$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."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["

What next

"] = "

Wie geht es weiter?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Home"] = "Pinnwand"; +$a->strings["Introductions"] = "Kontaktanfragen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; +$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; +$a->strings["Notification type: "] = "Benachrichtigungstyp: "; +$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; +$a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen"; +$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; +$a->strings["if applicable"] = "falls anwendbar"; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: "; +$a->strings["yes"] = "ja"; +$a->strings["no"] = "nein"; +$a->strings["Approve as: "] = "Genehmigen als: "; +$a->strings["Friend"] = "Freund"; +$a->strings["Sharer"] = "Teilenden"; +$a->strings["Fan/Admirer"] = "Fan/Verehrer"; +$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; +$a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["No introductions."] = "Keine Kontaktanfragen."; +$a->strings["Notifications"] = "Benachrichtigungen"; +$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; +$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; +$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; +$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; +$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; +$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; +$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; +$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; +$a->strings["System Notifications"] = "Systembenachrichtigungen"; +$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; +$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; +$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; +$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; +$a->strings["Source input: "] = "Originaltext:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; @@ -402,6 +187,7 @@ $a->strings["Logs"] = "Protokolle"; $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Normal Account"] = "Normales Konto"; $a->strings["Soapbox Account"] = "Marktschreier-Konto"; $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto"; @@ -432,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richt $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; $a->strings["Save Settings"] = "Einstellungen speichern"; +$a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Advanced"] = "Erweitert"; @@ -540,6 +327,7 @@ $a->strings["Failed Updates"] = "Fehlgeschlagene Updates"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."; $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)"; $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen"; +$a->strings["Registration details for %s"] = "Details der Registration von %s"; $a->strings["Registration successful. Email send to user"] = "Registration erfolgreich. Dem Nutzer wurde eine Email gesended."; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s Benutzer geblockt/freigegeben", @@ -560,7 +348,6 @@ $a->strings["Request date"] = "Anfragedatum"; $a->strings["Name"] = "Name"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; -$a->strings["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verwehren"; $a->strings["Block"] = "Sperren"; $a->strings["Unblock"] = "Entsperren"; @@ -583,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; +$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -601,11 +389,36 @@ $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["Search"] = "Suche"; -$a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["link"] = "Link"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", +); +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; $a->strings["Item not found"] = "Beitrag nicht gefunden"; $a->strings["Edit post"] = "Beitrag bearbeiten"; $a->strings["upload photo"] = "Bild hochladen"; @@ -626,95 +439,169 @@ $a->strings["Public post"] = "Öffentlicher Beitrag"; $a->strings["Set title"] = "Titel setzen"; $a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Account approved."] = "Konto freigegeben."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Finding: "] = "Funde: "; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Find"] = "Finde"; -$a->strings["Age: "] = "Alter: "; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["About:"] = "Über:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; +$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Previous"] = "Vorherige"; +$a->strings["Next"] = "Nächste"; +$a->strings["hour:minute"] = "Stunde:Minute"; +$a->strings["Event details"] = "Veranstaltungsdetails"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."; +$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; +$a->strings["Required"] = "Benötigt"; +$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; +$a->strings["Event Finishes:"] = "Veranstaltungsende:"; +$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; +$a->strings["Description:"] = "Beschreibung"; +$a->strings["Location:"] = "Ort:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Veranstaltung teilen"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Dateien"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; $a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; $a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Save"] = "Speichern"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; +$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen."; +$a->strings["No recipient."] = "Kein Empfänger."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:"; +$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "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."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Help:"] = "Hilfe:"; $a->strings["Help"] = "Hilfe"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"; -$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."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s dich?"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."; -$a->strings["Your Identity Address:"] = "Adresse deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; $a->strings["%d contact edited."] = array( 0 => "%d Kontakt bearbeitet.", 1 => "%d Kontakte bearbeitet", @@ -745,7 +632,6 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Alle Kontakte anzeigen"; $a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; $a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; $a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; $a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Archive"] = "Archivieren"; @@ -758,7 +644,6 @@ $a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."; $a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; $a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; $a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; $a->strings["Ignore contact"] = "Ignoriere den Kontakt"; $a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; @@ -769,7 +654,6 @@ $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; $a->strings["Currently blocked"] = "Derzeit geblockt"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen"; $a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; $a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; $a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."; @@ -791,10 +675,90 @@ $a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; $a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; $a->strings["is a fan of yours"] = "ist ein Fan von dir"; $a->strings["you are a fan of"] = "du bist Fan von"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts"] = "Kontakte"; $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Finding: "] = "Funde: "; +$a->strings["Find"] = "Finde"; $a->strings["Update"] = "Aktualisierungen"; -$a->strings["everybody"] = "jeder"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$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."] = "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$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."] = "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$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"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$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."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz"; +$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Search"] = "Suche"; +$a->strings["No results."] = "Keine Ergebnisse."; +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; @@ -919,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; $a->strings["Default Private Post"] = "Privater Standardbeitrag"; $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; @@ -944,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $a->strings["Relocate"] = "Umziehen"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."; $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["People Search"] = "Personensuche"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -1012,57 +977,79 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; -$a->strings["Source input: "] = "Originaltext:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Create New Profile"] = "Neues Profil anlegen"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["link"] = "Link"; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; +$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; +$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; +$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; +$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; +$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; $a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; -$a->strings["System Notifications"] = "Systembenachrichtigungen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Save"] = "Speichern"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Poke/Prod"] = "Anstupsen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; $a->strings["Time Conversion"] = "Zeitumrechnung"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; @@ -1070,84 +1057,7 @@ $a->strings["UTC time: %s"] = "UTC Zeit: %s"; $a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; $a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; $a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$a->strings["People Search"] = "Personensuche"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["View Video"] = "Video ansehen"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Poke/Prod"] = "Anstupsen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; $a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; @@ -1161,51 +1071,89 @@ $a->strings["Crop Image"] = "Bild zurechtschneiden"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; $a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; $a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$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'"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."; +$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."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$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."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["

What next

"] = "

Wie geht es weiter?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: "] = "Gruppe: "; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["Account approved."] = "Konto freigegeben."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; +$a->strings["Please login."] = "Bitte melde dich an."; $a->strings["Profile Match"] = "Profilübereinstimmungen"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."; $a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Previous"] = "Vorherige"; -$a->strings["hour:minute"] = "Stunde:Minute"; -$a->strings["Event details"] = "Veranstaltungsdetails"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."; -$a->strings["Event Starts:"] = "Veranstaltungsbeginn:"; -$a->strings["Required"] = "Benötigt"; -$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant"; -$a->strings["Event Finishes:"] = "Veranstaltungsende:"; -$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; -$a->strings["Description:"] = "Beschreibung"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$a->strings["Files"] = "Dateien"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:"; -$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; $a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; @@ -1213,173 +1161,187 @@ $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"] = "Du kannst sie online unter %s besuchen"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."; $a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; -$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; -$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; -$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; -$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; -$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["Invalid request identifier."] = "Invalid request identifier."; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Netzwerk"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; -$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; -$a->strings["Notification type: "] = "Benachrichtigungstyp: "; -$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; -$a->strings["suggested by %s"] = "vorgeschlagen von %s"; -$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; -$a->strings["if applicable"] = "falls anwendbar"; -$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: "; -$a->strings["yes"] = "ja"; -$a->strings["no"] = "nein"; -$a->strings["Approve as: "] = "Genehmigen als: "; -$a->strings["Friend"] = "Freund"; -$a->strings["Sharer"] = "Teilenden"; -$a->strings["Fan/Admirer"] = "Fan/Verehrer"; -$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; -$a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["No introductions."] = "Keine Kontaktanfragen."; -$a->strings["Notifications"] = "Benachrichtigungen"; -$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; -$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; -$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; -$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; -$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; -$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; -$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; -$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; -$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; -$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; -$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"; +$a->strings["Search Results For:"] = "Suchergebnisse für:"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", ); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["Contact: "] = "Kontakt: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Theme settings"] = "Themeneinstellungen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set style"] = "Stiel auswählen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["Update Error at %s"] = "Updatefehler bei %s"; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; +$a->strings["terms of service"] = "Nutzungsbedingungen"; +$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; +$a->strings["privacy policy"] = "Datenschutzerklärung"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur du kannst das sehen"; +$a->strings["General Features"] = "Allgemeine Features"; +$a->strings["Multiple Profiles"] = "Mehrere Profile"; +$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; +$a->strings["Post Composition Features"] = "Beitragserstellung Features"; +$a->strings["Richtext Editor"] = "Web-Editor"; +$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; +$a->strings["Post Preview"] = "Beitragsvorschau"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; +$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; +$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; +$a->strings["Search by Date"] = "Archiv"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; +$a->strings["Group Filter"] = "Gruppen Filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; +$a->strings["Network Filter"] = "Netzwerk Filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; +$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; +$a->strings["Network Tabs"] = "Netzwerk Reiter"; +$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; +$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; +$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; +$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; +$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; +$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; +$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; +$a->strings["Post Categories"] = "Beitragskategorien"; +$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; $a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar."; -$a->strings["User not found."] = "Nutzer nicht gefunden."; -$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; -$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; +$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; +$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; +$a->strings["Star Posts"] = "Beiträge Markieren"; +$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; +$a->strings["Logged out."] = "Abgemeldet."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."; $a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["Friends"] = "Freunde"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["poked"] = "stupste"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["[no subject]"] = "[kein Betreff]"; +$a->strings[" on Last.fm"] = " bei Last.fm"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; $a->strings["prev"] = "vorige"; @@ -1392,6 +1354,7 @@ $a->strings["%d Contact"] = array( 1 => "%d Kontakte", ); $a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; $a->strings["pinged"] = "pingte"; $a->strings["prod"] = "knuffen"; @@ -1443,10 +1406,211 @@ $a->strings["November"] = "November"; $a->strings["December"] = "Dezember"; $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; +$a->strings["default"] = "Standard"; $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; +$a->strings["User not found."] = "Nutzer nicht gefunden."; +$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; +$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; +$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf "; +$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf "; +$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; +$a->strings["Archives"] = "Archiv"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Hauptsächlich männlich"; +$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermaphrodit"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Nicht spezifiziert"; +$a->strings["Other"] = "Andere"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Vorlieben"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Jungfrauen"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "verknallt"; +$a->strings["Infatuated"] = "verliebt"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Untreu"; +$a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "imaginär verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = "wilde Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht auf der Suche"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Unstabil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "imaginär geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Unsicher"; +$a->strings["It's complicated"] = "Ist kompliziert"; +$a->strings["Don't care"] = "Ist mir nicht wichtig"; +$a->strings["Ask me"] = "Frag mich"; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -1488,7 +1652,30 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $a->strings["Name:"] = "Name:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; $a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; $a->strings["Everybody"] = "Alle Kontakte"; @@ -1496,89 +1683,8 @@ $a->strings["edit"] = "bearbeiten"; $a->strings["Edit group"] = "Gruppe bearbeiten"; $a->strings["Create a new group"] = "Neue Gruppe erstellen"; $a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Tags:"] = "Tags"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings[""] = ""; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Drop Contact"] = "Kontakt löschen"; $a->strings["Miscellaneous"] = "Verschiedenes"; $a->strings["year"] = "Jahr"; $a->strings["month"] = "Monat"; @@ -1597,116 +1703,4 @@ $a->strings["minutes"] = "Minuten"; $a->strings["second"] = "Sekunde"; $a->strings["seconds"] = "Sekunden"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["General Features"] = "Allgemeine Features"; -$a->strings["Multiple Profiles"] = "Mehrere Profile"; -$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; -$a->strings["Post Composition Features"] = "Beitragserstellung Features"; -$a->strings["Richtext Editor"] = "Web-Editor"; -$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; -$a->strings["Post Preview"] = "Beitragsvorschau"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; -$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; -$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; -$a->strings["Search by Date"] = "Archiv"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; -$a->strings["Group Filter"] = "Gruppen Filter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; -$a->strings["Network Filter"] = "Netzwerk Filter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; -$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; -$a->strings["Network Tabs"] = "Netzwerk Reiter"; -$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; -$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; -$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; -$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; -$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; -$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; -$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; -$a->strings["Tagging"] = "Tagging"; -$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; -$a->strings["Post Categories"] = "Beitragskategorien"; -$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; -$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; -$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; -$a->strings["Star Posts"] = "Beiträge Markieren"; -$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf "; -$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf "; -$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; -$a->strings["Archives"] = "Archiv"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Hauptsächlich männlich"; -$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Hermaphrodit"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Nicht spezifiziert"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Vorlieben"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrauen"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "verknallt"; -$a->strings["Infatuated"] = "verliebt"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Untreu"; -$a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "imaginär verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "zusammenlebend"; -$a->strings["Common law"] = "wilde Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht auf der Suche"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Unstabil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "imaginär geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Unsicher"; -$a->strings["It's complicated"] = "Ist kompliziert"; -$a->strings["Don't care"] = "Ist mir nicht wichtig"; -$a->strings["Ask me"] = "Frag mich"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["view full size"] = "Volle Größe anzeigen"; From a0b9665a388c60677e2bdfa64393e243c387496c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 19 May 2014 08:09:10 +0200 Subject: [PATCH 23/30] NL: update to the strings --- view/nl/messages.po | 11542 +++++++++++++++++++++--------------------- view/nl/strings.php | 1910 +++---- 2 files changed, 6753 insertions(+), 6699 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 89158fb018..c65016e6cf 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-31 18:07+0100\n" -"PO-Revision-Date: 2014-03-15 17:44+0000\n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-18 22:32+0000\n" "Last-Translator: jeroenpraat <>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n" "MIME-Version: 1.0\n" @@ -27,25 +27,26 @@ msgstr "" msgid "This entry was edited" msgstr "" -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "Privébericht" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:663 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "Bewerken" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 +#: ../../include/conversation.php:612 msgid "Select" msgstr "Kies" -#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:695 -#: ../../mod/settings.php:664 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "Verwijder" @@ -73,8 +74,8 @@ msgstr "met ster" msgid "add tag" msgstr "label toevoegen" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "Vind ik leuk" @@ -82,8 +83,8 @@ msgstr "Vind ik leuk" msgid "like" msgstr "leuk" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" @@ -99,928 +100,1869 @@ msgstr "Delen" msgid "share" msgstr "Delen" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "Categorieën:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "aan" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "via" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "wall-to-wall" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall" -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "Reacties" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Even geduld" -#: ../../object/Item.php:345 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: ../../object/Item.php:347 ../../object/Item.php:360 -#: ../../mod/content.php:604 ../../include/text.php:1928 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "reactie" msgstr[1] "reacties" -#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "toon meer" -#: ../../object/Item.php:633 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "Dit ben jij" -#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "Opslaan" -#: ../../object/Item.php:637 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "Vet" -#: ../../object/Item.php:638 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "Cursief" -#: ../../object/Item.php:639 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "Onderstrepen" -#: ../../object/Item.php:640 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "Citeren" -#: ../../object/Item.php:641 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "Broncode" -#: ../../object/Item.php:642 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "Afbeelding" -#: ../../object/Item.php:643 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "Link" -#: ../../object/Item.php:644 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "Video" -#: ../../object/Item.php:645 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "Voorvertoning" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " -msgstr "" +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "Niet gevonden" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "Pagina niet gevonden" -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Toegang geweigerd" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 -#: ../../mod/settings.php:96 ../../mod/settings.php:583 -#: ../../mod/settings.php:588 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4215 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "Toegang geweigerd" -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "mobiel thema omwisselen" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" +msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Bevestig" + +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Sluit aan als e-mail volger (Binnenkort)" + +#: ../../mod/dfrn_request.php:829 +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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 +#: ../../mod/profiles.php:615 +msgid "No" +msgstr "Nee" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Bekijk Video" + +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." + +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige request identifier." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Verwerpen" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Negeren" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Systeem" + +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Netwerk" + +#: ../../mod/notifications.php:88 ../../mod/network.php:365 +msgid "Personal" +msgstr "Persoonlijk" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "Tijdlijn" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Verzoeken" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" -msgstr "Profiel" +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Privéberichten" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Jouw profiel pagina" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "Foto's" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Notificatiesoort:" -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "Gebeurtenissen" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "Voorgesteld door %s" -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Persoonlijke nota's" +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Jouw persoonlijke foto's" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Bericht over een nieuwe vriend" -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Gemeenschap" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "Indien toepasbaar" -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "don't show" -msgstr "Niet tonen" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 -msgid "show" -msgstr "tonen" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Denkt dat u hem of haar kent:" -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Thema instellingen" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "Ja" -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Stel lettergrootte voor berichten en reacties in" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "Nee" -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Goedkeuren als:" -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Vriend" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 -#: ../../include/nav.php:171 -msgid "Contacts" -msgstr "Contacten" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Deler" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Jouw contacten" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Bewonderaar" -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Gemeenschapspagina's" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Gemeenschapsprofielen" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nieuwe Volger" -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Laatste gebruikers" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Recent leuk gevonden" +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Notificaties" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1922 -msgid "event" -msgstr "gebeurtenis" +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Geen netwerknotificaties meer" + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Geen persoonlijke notificaties meer" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Geen tijdlijn-notificaties meer" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "foto" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1878 msgid "status" -msgstr "Status" +msgstr "status" -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1924 ../../include/diaspora.php:1878 -msgid "photo" -msgstr "Foto" - -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s vind %3$s van %2$s leuk" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Laatste foto's" +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vind %3$s van %2$s niet leuk" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 -msgid "Contact Photos" -msgstr "Contactfoto's" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokale gids" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Globale gids" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 -msgid "Settings" -msgstr "Instellingen" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stel kleurenschema in" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Uitlijning" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Gecentreerd" - -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Kleurschema" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1658 -msgid "default" -msgstr "standaard" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/openid.php:53 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" -msgstr "" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Login mislukt." -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Bron (bbcode) tekst:" -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Bron ingave:" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (ruwe HTML):" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" -#: ../../boot.php:684 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../boot.php:687 -msgid "show fewer" -msgstr "Minder tonen" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../boot.php:1015 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../boot.php:1017 -#, php-format -msgid "Update Error at %s" -msgstr "Wijzigingsfout op %s" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../boot.php:1127 -msgid "Create a New Account" -msgstr "Nieuw account aanmaken" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 -msgid "Register" -msgstr "Registreer" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Bron ingave (Diaspora formaat):" -#: ../../boot.php:1152 ../../include/nav.php:73 -msgid "Logout" -msgstr "Uitloggen" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../boot.php:1153 ../../include/nav.php:91 -msgid "Login" -msgstr "Login" +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Thema-instellingen aangepast." -#: ../../boot.php:1155 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" +#: ../../mod/admin.php:102 ../../mod/admin.php:573 +msgid "Site" +msgstr "Website" -#: ../../boot.php:1156 -msgid "Password: " -msgstr "Wachtwoord:" +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 +msgid "Users" +msgstr "Gebruiker" -#: ../../boot.php:1157 -msgid "Remember me" -msgstr "Onthou me" +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Plugins" -#: ../../boot.php:1160 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 +msgid "Themes" +msgstr "Thema's" -#: ../../boot.php:1166 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "DB aanpassingen" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 +msgid "Logs" +msgstr "Logs" -#: ../../boot.php:1169 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" +#: ../../mod/admin.php:126 ../../include/nav.php:180 +msgid "Admin" +msgstr "Beheer" -#: ../../boot.php:1170 -msgid "terms of service" -msgstr "servicevoorwaarden" +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "Plugin Functies" -#: ../../boot.php:1172 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Gebruikersregistraties wachten op bevestiging" -#: ../../boot.php:1173 -msgid "privacy policy" -msgstr "privacybeleid" - -#: ../../boot.php:1302 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: ../../boot.php:1341 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: ../../boot.php:1381 ../../boot.php:1485 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Verbinden" - -#: ../../boot.php:1447 -msgid "Message" -msgstr "Bericht" - -#: ../../boot.php:1455 ../../include/nav.php:169 -msgid "Profiles" -msgstr "Profielen" - -#: ../../boot.php:1455 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: ../../boot.php:1462 ../../mod/profiles.php:727 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: ../../boot.php:1472 ../../mod/profiles.php:738 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: ../../boot.php:1475 ../../mod/profiles.php:740 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: ../../boot.php:1476 ../../mod/profiles.php:741 -msgid "Edit visibility" -msgstr "Pas zichtbaarheid aan" - -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 -msgid "Location:" -msgstr "Plaats:" - -#: ../../boot.php:1503 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../boot.php:1506 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Tijdlijn:" - -#: ../../boot.php:1508 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Jouw tijdlijn:" - -#: ../../boot.php:1584 ../../boot.php:1670 -msgid "g A l F d" -msgstr "G l j F" - -#: ../../boot.php:1585 ../../boot.php:1671 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1630 ../../boot.php:1711 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../boot.php:1642 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../boot.php:1643 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../boot.php:1704 -msgid "[No description]" -msgstr "[Geen beschrijving]" - -#: ../../boot.php:1722 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: ../../boot.php:1723 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../boot.php:1960 ../../include/nav.php:76 -msgid "Status" -msgstr "Tijdlijn" - -#: ../../boot.php:1963 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: ../../boot.php:1970 -msgid "Profile Details" -msgstr "Profiel Details" - -#: ../../boot.php:1977 ../../mod/photos.php:51 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../boot.php:1981 ../../boot.php:1984 -msgid "Videos" -msgstr "Video's" - -#: ../../boot.php:1994 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: ../../boot.php:1998 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: ../../boot.php:2001 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is op dit moment %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stemming" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stel je huidige stemming in, en vertel het je vrienden" - -#: ../../mod/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 -#: ../../mod/videos.php:115 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" - -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4023 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 msgid "Item not found." msgstr "Item niet gevonden." -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." +#: ../../mod/admin.php:188 ../../mod/admin.php:855 +msgid "Normal Account" +msgstr "Normale Account" -#: ../../mod/display.php:239 -msgid "Item has been removed." -msgstr "Item is verwijderd." +#: ../../mod/admin.php:189 ../../mod/admin.php:856 +msgid "Soapbox Account" +msgstr "Zeepkist Account" -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" +#: ../../mod/admin.php:190 ../../mod/admin.php:857 +msgid "Community/Celebrity Account" +msgstr "Gemeenschap/Beroemdheid Account" -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" +#: ../../mod/admin.php:191 ../../mod/admin.php:858 +msgid "Automatic Friend Account" +msgstr "Automatisch Vriendschapsaccount" -#: ../../mod/friendica.php:59 -msgid "running at web location" -msgstr "draaiend op web-adres" +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Blog Account" -#: ../../mod/friendica.php:61 +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "Privé Forum" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "Bericht-wachtrijen" + +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 +msgid "Administration" +msgstr "Beheer" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "Samenvatting" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Registraties die in de wacht staan" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "Versie" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "Actieve plug-ins" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: ../../mod/admin.php:485 +msgid "Site settings updated." +msgstr "Site instellingen gewijzigd." + +#: ../../mod/admin.php:514 ../../mod/settings.php:823 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 +msgid "Never" +msgstr "Nooit" + +#: ../../mod/admin.php:532 +msgid "At post arrival" +msgstr "" + +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequent" + +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "elk uur" + +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "dagelijks" + +#: ../../mod/admin.php:541 +msgid "Multi user instance" +msgstr "Server voor meerdere gebruikers" + +#: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Gesloten" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Toestemming vereist" + +#: ../../mod/admin.php:561 +msgid "Open" +msgstr "Open" + +#: ../../mod/admin.php:565 +msgid "No SSL policy, links will track page SSL state" +msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" + +#: ../../mod/admin.php:566 +msgid "Force all links to use SSL" +msgstr "Verplicht alle links om SSL te gebruiken" + +#: ../../mod/admin.php:567 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" + +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 +msgid "Save Settings" +msgstr "" + +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/admin.php:576 +msgid "File upload" +msgstr "Uploaden bestand" + +#: ../../mod/admin.php:577 +msgid "Policies" +msgstr "Beleid" + +#: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Geavanceerd" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Performantie" + +#: ../../mod/admin.php:580 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" -#: ../../mod/friendica.php:63 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" +#: ../../mod/admin.php:583 +msgid "Site name" +msgstr "Site naam" -#: ../../mod/friendica.php:64 +#: ../../mod/admin.php:584 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:585 +msgid "Additional Info" +msgstr "" + +#: ../../mod/admin.php:585 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "" -#: ../../mod/friendica.php:78 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" +#: ../../mod/admin.php:586 +msgid "System language" +msgstr "Systeemtaal" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" -msgstr "Geen plugins of toepassingen geïnstalleerd" +#: ../../mod/admin.php:587 +msgid "System theme" +msgstr "Systeem thema" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/admin.php:587 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" + +#: ../../mod/admin.php:588 +msgid "Mobile system theme" +msgstr "Mobiel systeem thema" + +#: ../../mod/admin.php:588 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: ../../mod/admin.php:589 +msgid "SSL link policy" +msgstr "Beleid SSL-links" + +#: ../../mod/admin.php:589 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" + +#: ../../mod/admin.php:590 +msgid "Old style 'Share'" +msgstr "" + +#: ../../mod/admin.php:590 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:591 +msgid "Hide help entry from navigation menu" +msgstr "Verberg de 'help' uit het navigatiemenu" + +#: ../../mod/admin.php:591 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." + +#: ../../mod/admin.php:592 +msgid "Single user instance" +msgstr "Server voor één gebruiker" + +#: ../../mod/admin.php:592 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." + +#: ../../mod/admin.php:593 +msgid "Maximum image size" +msgstr "Maximum afbeeldingsgrootte" + +#: ../../mod/admin.php:593 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." + +#: ../../mod/admin.php:594 +msgid "Maximum image length" +msgstr "Maximum afbeeldingslengte" + +#: ../../mod/admin.php:594 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." + +#: ../../mod/admin.php:595 +msgid "JPEG image quality" +msgstr "JPEG afbeeldingskwaliteit" + +#: ../../mod/admin.php:595 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." + +#: ../../mod/admin.php:597 +msgid "Register policy" +msgstr "Registratiebeleid" + +#: ../../mod/admin.php:598 +msgid "Maximum Daily Registrations" +msgstr "Maximum aantal registraties per dag" + +#: ../../mod/admin.php:598 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." + +#: ../../mod/admin.php:599 +msgid "Register text" +msgstr "Registratietekst" + +#: ../../mod/admin.php:599 +msgid "Will be displayed prominently on the registration page." +msgstr "Dit zal prominent op de registratiepagina getoond worden." + +#: ../../mod/admin.php:600 +msgid "Accounts abandoned after x days" +msgstr "Verlaten accounts na x dagen" + +#: ../../mod/admin.php:600 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." + +#: ../../mod/admin.php:601 +msgid "Allowed friend domains" +msgstr "Toegelaten vriend domeinen" + +#: ../../mod/admin.php:601 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." + +#: ../../mod/admin.php:602 +msgid "Allowed email domains" +msgstr "Toegelaten e-mail domeinen" + +#: ../../mod/admin.php:602 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." + +#: ../../mod/admin.php:603 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: ../../mod/admin.php:603 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." + +#: ../../mod/admin.php:604 +msgid "Force publish" +msgstr "Dwing publiceren af" + +#: ../../mod/admin.php:604 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." + +#: ../../mod/admin.php:605 +msgid "Global directory update URL" +msgstr "Update-adres van de globale gids" + +#: ../../mod/admin.php:605 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing." + +#: ../../mod/admin.php:606 +msgid "Allow threaded items" +msgstr "Sta threads in conversaties toe" + +#: ../../mod/admin.php:606 +msgid "Allow infinite level threading for items on this site." +msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." + +#: ../../mod/admin.php:607 +msgid "Private posts by default for new users" +msgstr "Privéberichten als standaard voor nieuwe gebruikers" + +#: ../../mod/admin.php:607 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." + +#: ../../mod/admin.php:608 +msgid "Don't include post content in email notifications" +msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" + +#: ../../mod/admin.php:608 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." + +#: ../../mod/admin.php:609 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: ../../mod/admin.php:609 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:610 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:610 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: ../../mod/admin.php:611 +msgid "Allow Users to set remote_self" +msgstr "" + +#: ../../mod/admin.php:611 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: ../../mod/admin.php:612 +msgid "Block multiple registrations" +msgstr "Blokkeer meerdere registraties" + +#: ../../mod/admin.php:612 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." + +#: ../../mod/admin.php:613 +msgid "OpenID support" +msgstr "OpenID ondersteuning" + +#: ../../mod/admin.php:613 +msgid "OpenID support for registration and logins." +msgstr "OpenID ondersteuning voor registraties en logins." + +#: ../../mod/admin.php:614 +msgid "Fullname check" +msgstr "Controleer volledige naam" + +#: ../../mod/admin.php:614 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" + +#: ../../mod/admin.php:615 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 reguliere uitdrukkingen" + +#: ../../mod/admin.php:615 +msgid "Use PHP UTF8 regular expressions" +msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" + +#: ../../mod/admin.php:616 +msgid "Show Community Page" +msgstr "Toon Gemeenschapspagina" + +#: ../../mod/admin.php:616 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont." + +#: ../../mod/admin.php:617 +msgid "Enable OStatus support" +msgstr "Activeer OStatus ondersteuning" + +#: ../../mod/admin.php:617 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:618 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:618 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:619 +msgid "Enable Diaspora support" +msgstr "Activeer Diaspora ondersteuning" + +#: ../../mod/admin.php:619 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." + +#: ../../mod/admin.php:620 +msgid "Only allow Friendica contacts" +msgstr "Laat alleen Friendica contacten toe" + +#: ../../mod/admin.php:620 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." + +#: ../../mod/admin.php:621 +msgid "Verify SSL" +msgstr "Controleer SSL" + +#: ../../mod/admin.php:621 +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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." + +#: ../../mod/admin.php:622 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: ../../mod/admin.php:623 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: ../../mod/admin.php:624 +msgid "Network timeout" +msgstr "Netwerk timeout" + +#: ../../mod/admin.php:624 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." + +#: ../../mod/admin.php:625 +msgid "Delivery interval" +msgstr "Afleverinterval" + +#: ../../mod/admin.php:625 +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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." + +#: ../../mod/admin.php:626 +msgid "Poll interval" +msgstr "Poll-interval" + +#: ../../mod/admin.php:626 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." + +#: ../../mod/admin.php:627 +msgid "Maximum Load Average" +msgstr "Maximum gemiddelde belasting" + +#: ../../mod/admin.php:627 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." + +#: ../../mod/admin.php:629 +msgid "Use MySQL full text engine" +msgstr "Gebruik de tekst-zoekfunctie van MySQL" + +#: ../../mod/admin.php:629 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." + +#: ../../mod/admin.php:630 +msgid "Suppress Language" +msgstr "" + +#: ../../mod/admin.php:630 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: ../../mod/admin.php:631 +msgid "Path to item cache" +msgstr "Pad naar cache voor items" + +#: ../../mod/admin.php:632 +msgid "Cache duration in seconds" +msgstr "Cache tijdsduur in seconden" + +#: ../../mod/admin.php:632 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)." + +#: ../../mod/admin.php:633 +msgid "Path for lock file" +msgstr "Pad voor lock bestand" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Tijdelijk pad" + +#: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Basispad voor installatie" + +#: ../../mod/admin.php:637 +msgid "New base url" +msgstr "" + +#: ../../mod/admin.php:655 +msgid "Update has been marked successful" +msgstr "Wijziging succesvol gemarkeerd " + +#: ../../mod/admin.php:665 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heet %2$s van harte welkom" +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na." -#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Wijziging %s geslaagd." + +#: ../../mod/admin.php:672 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." + +#: ../../mod/admin.php:675 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." + +#: ../../mod/admin.php:690 +msgid "No failed updates." +msgstr "Geen misluke wijzigingen" + +#: ../../mod/admin.php:694 +msgid "Failed Updates" +msgstr "Misluke wijzigingen" + +#: ../../mod/admin.php:695 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." + +#: ../../mod/admin.php:696 +msgid "Mark success (if update was manually applied)" +msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" + +#: ../../mod/admin.php:697 +msgid "Attempt to execute this update step automatically" +msgstr "Probeer deze stap automatisch uit te voeren" + +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Registratie details voor %s" -#: ../../mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: ../../mod/register.php:103 -msgid "Failed to send email message. Here is the message that failed." -msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht." - -#: ../../mod/register.php:108 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." - -#: ../../mod/register.php:148 -#, php-format -msgid "Registration request at %s" -msgstr "Registratieverzoek op %s" - -#: ../../mod/register.php:157 -msgid "Your registration is pending approval by the site owner." -msgstr "Je registratie wacht op goedkeuring van de beheerder." - -#: ../../mod/register.php:195 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw." - -#: ../../mod/register.php:223 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." - -#: ../../mod/register.php:224 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." - -#: ../../mod/register.php:225 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: ../../mod/register.php:239 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 -#: ../../mod/settings.php:981 ../../mod/settings.php:987 -#: ../../mod/settings.php:995 ../../mod/settings.php:999 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 -#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4064 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/register.php:243 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 -#: ../../mod/settings.php:987 ../../mod/settings.php:995 -#: ../../mod/settings.php:999 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 -#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 -#: ../../mod/profiles.php:611 -msgid "No" -msgstr "Nee" - -#: ../../mod/register.php:260 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: ../../mod/register.php:261 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" - -#: ../../mod/register.php:264 ../../mod/admin.php:572 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:272 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Je volledige naam (bijv. Jan Jansens):" - -#: ../../mod/register.php:273 -msgid "Your Email Address: " -msgstr "Je email adres:" - -#: ../../mod/register.php:274 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." - -#: ../../mod/register.php:275 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: ../../mod/register.php:284 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importeren" - -#: ../../mod/register.php:285 -msgid "Import your profile to this friendica instance" +#: ../../mod/admin.php:743 +msgid "Registration successful. Email send to user" msgstr "" +#: ../../mod/admin.php:753 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" +msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" + +#: ../../mod/admin.php:760 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s gebruiker verwijderd" +msgstr[1] "%s gebruikers verwijderd" + +#: ../../mod/admin.php:799 +#, php-format +msgid "User '%s' deleted" +msgstr "Gebruiker '%s' verwijderd" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' unblocked" +msgstr "Gebruiker '%s' niet meer geblokkeerd" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' blocked" +msgstr "Gebruiker '%s' geblokkeerd" + +#: ../../mod/admin.php:902 +msgid "Add User" +msgstr "" + +#: ../../mod/admin.php:903 +msgid "select all" +msgstr "Alles selecteren" + +#: ../../mod/admin.php:904 +msgid "User registrations waiting for confirm" +msgstr "Gebruikersregistraties wachten op een bevestiging" + +#: ../../mod/admin.php:905 +msgid "User waiting for permanent deletion" +msgstr "" + +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Registratiedatum" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 +msgid "Name" +msgstr "Naam" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: ../../mod/admin.php:907 +msgid "No registrations." +msgstr "Geen registraties." + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Weiger" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: ../../mod/admin.php:913 +msgid "Site admin" +msgstr "Sitebeheerder" + +#: ../../mod/admin.php:914 +msgid "Account expired" +msgstr "Account verlopen" + +#: ../../mod/admin.php:917 +msgid "New User" +msgstr "" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Register date" +msgstr "Registratiedatum" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last login" +msgstr "Laatste login" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last item" +msgstr "Laatste item" + +#: ../../mod/admin.php:918 +msgid "Deleted since" +msgstr "" + +#: ../../mod/admin.php:919 ../../mod/settings.php:36 +msgid "Account" +msgstr "Account" + +#: ../../mod/admin.php:921 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: ../../mod/admin.php:922 +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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: ../../mod/admin.php:932 +msgid "Name of the new user." +msgstr "" + +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "" + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "" + +#: ../../mod/admin.php:967 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." + +#: ../../mod/admin.php:971 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld." + +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 +msgid "Disable" +msgstr "Uitschakelen" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 +msgid "Enable" +msgstr "Inschakelen" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 +msgid "Toggle" +msgstr "Schakelaar" + +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Instellingen" + +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 +msgid "Author: " +msgstr "Auteur:" + +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 +msgid "Maintainer: " +msgstr "Onderhoud:" + +#: ../../mod/admin.php:1155 +msgid "No themes found." +msgstr "Geen thema's gevonden." + +#: ../../mod/admin.php:1217 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: ../../mod/admin.php:1263 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: ../../mod/admin.php:1264 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: ../../mod/admin.php:1291 +msgid "Log settings updated." +msgstr "Log instellingen gewijzigd" + +#: ../../mod/admin.php:1347 +msgid "Clear" +msgstr "Wis" + +#: ../../mod/admin.php:1353 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1354 +msgid "Log file" +msgstr "Logbestand" + +#: ../../mod/admin.php:1354 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." + +#: ../../mod/admin.php:1355 +msgid "Log level" +msgstr "Log niveau" + +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "Wijzig nu" + +#: ../../mod/admin.php:1405 +msgid "Close" +msgstr "Afsluiten" + +#: ../../mod/admin.php:1411 +msgid "FTP Host" +msgstr "FTP Server" + +#: ../../mod/admin.php:1412 +msgid "FTP Path" +msgstr "FTP Pad" + +#: ../../mod/admin.php:1413 +msgid "FTP User" +msgstr "FTP Gebruiker" + +#: ../../mod/admin.php:1414 +msgid "FTP Password" +msgstr "FTP wachtwoord" + +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Nieuw Bericht" + +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Geen ontvanger geselecteerd." + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." + +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Bericht verzonden." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Verstuur privébericht" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Geen berichten." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Jij en %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s en jij" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Verwijder gesprek" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Verstuur Antwoord" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 +msgid "upload photo" +msgstr "Foto uploaden" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 +msgid "web link" +msgstr "webadres" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 +msgid "video link" +msgstr "video adres" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 +msgid "audio link" +msgstr "audio adres" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 +msgid "set location" +msgstr "Stel uw locatie in" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 +msgid "Public post" +msgstr "Openbare post" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 +msgid "Set title" +msgstr "Titel plaatsen" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "Profiel niet gevonden" -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" - #: ../../mod/dfrn_confirm.php:119 msgid "" "This may occasionally happen if contact was requested by both persons and it" @@ -1056,8 +1998,8 @@ msgstr "Verzoek mislukt of herroepen." msgid "Unable to set contact photo." msgstr "Ik kan geen contact foto instellen." -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s is nu bevriend met %2$s" @@ -1108,6 +2050,213 @@ msgstr "Uw connectie werd geaccepteerd op %s" msgid "%1$s has joined %2$s" msgstr "%1$s is toegetreden tot %2$s" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Gebeurtenissen" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Volgende" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "uur:minuut" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formaat is %s %s. Begindatum en titel zijn vereist." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Vereist" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beschrijving:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Plaats:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Foto's" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Bestanden" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Privacyinformatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../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:59 +msgid "Unable to check your home location." +msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Geen ontvanger." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Contact bewerken" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacten die geen leden zijn van een groep" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Verwijder mijn account" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeelding is groter dan de toegestane %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" msgstr "" @@ -1126,6 +2275,316 @@ msgid "" " and/or create new posts for you?" msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "iedereen" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s is gelabeld in %2$s door %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "een foto" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "Afbeelding is groter dan de maximale afmeting van" + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Upload foto's" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "of bestaande albumnaam: " + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Rechten" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Privé foto" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Publieke foto" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Bekijk foto" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Bekijk foto" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Labels: " + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Alle labels verwijderen]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Onderschrift" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Privé foto" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Publieke foto" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Delen" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Album bekijken" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Registratieverzoek op %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Je volledige naam (bijv. Jan Jansens):" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Registreer" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importeren" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "" + #: ../../mod/lostpass.php:17 msgid "No valid account found." msgstr "Geen geldige account gevonden." @@ -1145,6 +2604,10 @@ msgid "" "Password reset failed." msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." @@ -1190,79 +2653,424 @@ msgstr "Bijnaam of e-mail:" msgid "Reset" msgstr "Opnieuw" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Item niet beschikbaar" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Help:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Help" + +#: ../../mod/contacts.php:104 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" +#: ../../mod/contacts.php:149 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." +#: ../../mod/contacts.php:178 +msgid "Contact updated." +msgstr "Contact bijgewerkt." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." +#: ../../mod/contacts.php:278 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Bericht verzonden." +#: ../../mod/contacts.php:278 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Geen ontvanger." +#: ../../mod/contacts.php:288 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" +#: ../../mod/contacts.php:288 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Verstuur privébericht" +#: ../../mod/contacts.php:299 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" -#: ../../mod/wallmessage.php:143 +#: ../../mod/contacts.php:299 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: ../../mod/contacts.php:341 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: ../../mod/contacts.php:379 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: ../../mod/contacts.php:383 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: ../../mod/contacts.php:405 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: ../../mod/contacts.php:412 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: ../../mod/contacts.php:412 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: ../../mod/contacts.php:414 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: ../../mod/contacts.php:418 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gedeeld contact" +msgstr[1] "%d gedeelde contacten" + +#: ../../mod/contacts.php:426 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: ../../mod/contacts.php:434 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: ../../mod/contacts.php:440 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Archive" +msgstr "Archiveer" + +#: ../../mod/contacts.php:447 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: ../../mod/contacts.php:450 +msgid "Repair" +msgstr "Herstellen" + +#: ../../mod/contacts.php:453 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: ../../mod/contacts.php:459 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: ../../mod/contacts.php:462 +msgid "Contact Editor" +msgstr "Contactbewerker" + +#: ../../mod/contacts.php:465 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: ../../mod/contacts.php:466 #, 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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Aan:" +#: ../../mod/contacts.php:467 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../mod/contacts.php:468 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../mod/contacts.php:474 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 -msgid "Upload photo" -msgstr "Foto uploaden" +#: ../../mod/contacts.php:475 +msgid "Ignore contact" +msgstr "Negeer contact" -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 -msgid "Insert web link" -msgstr "Voeg een webadres in" +#: ../../mod/contacts.php:476 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: ../../mod/contacts.php:477 +msgid "View conversations" +msgstr "Toon conversaties" + +#: ../../mod/contacts.php:479 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: ../../mod/contacts.php:483 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/contacts.php:485 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: ../../mod/contacts.php:494 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: ../../mod/contacts.php:495 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: ../../mod/contacts.php:496 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: ../../mod/contacts.php:497 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "" + +#: ../../mod/contacts.php:550 +msgid "Suggestions" +msgstr "Voorstellen" + +#: ../../mod/contacts.php:553 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" + +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Alle Contacten" + +#: ../../mod/contacts.php:559 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: ../../mod/contacts.php:562 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: ../../mod/contacts.php:565 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: ../../mod/contacts.php:569 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/contacts.php:572 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: ../../mod/contacts.php:576 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/contacts.php:579 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: ../../mod/contacts.php:583 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/contacts.php:586 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: ../../mod/contacts.php:590 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/contacts.php:593 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: ../../mod/contacts.php:641 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: ../../mod/contacts.php:645 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: ../../mod/contacts.php:649 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Contacten" + +#: ../../mod/contacts.php:692 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Gevonden:" + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Zoek" + +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 +msgid "Update" +msgstr "Wijzigen" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Recente video's" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account verplaatsen" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Account bestand" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt %3$s van %2$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Vrienden van %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Verwijderen" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" @@ -1314,6 +3122,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Profiel" + #: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Profielfoto uploaden" @@ -1454,19 +3269,1175 @@ msgid "" " features and resources." msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Zoeken" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Geen resultaten." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Totale uitnodigingslimiet overschreden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Geen geldig e-mailadres." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Kom bij ons op Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Aflevering van bericht mislukt." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Je kunt geen uitnodigingen meer sturen" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Verstuur uitnodigingen" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Vul e-mailadressen in, één per lijn:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "" + +#: ../../mod/settings.php:52 ../../mod/settings.php:775 +msgid "Social Networks" +msgstr "" + +#: ../../mod/settings.php:62 ../../include/nav.php:167 +msgid "Delegations" +msgstr "" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Account verwijderen" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "Functies bijgewerkt" + +#: ../../mod/settings.php:319 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: ../../mod/settings.php:333 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: ../../mod/settings.php:338 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." + +#: ../../mod/settings.php:346 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." + +#: ../../mod/settings.php:357 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: ../../mod/settings.php:359 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: ../../mod/settings.php:424 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: ../../mod/settings.php:426 +msgid " Name too short." +msgstr "Naam te kort." + +#: ../../mod/settings.php:435 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: ../../mod/settings.php:440 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: ../../mod/settings.php:446 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: ../../mod/settings.php:501 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum heeft geen privacyrechten . De standaard privacygroep wordt gebruikt." + +#: ../../mod/settings.php:505 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum heeft geen privacyrechten en geen standaard privacygroep." + +#: ../../mod/settings.php:535 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 +msgid "Icon url" +msgstr "URL pictogram" + +#: ../../mod/settings.php:626 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: ../../mod/settings.php:669 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:673 +msgid "Client key starts with" +msgstr "" + +#: ../../mod/settings.php:674 +msgid "No name" +msgstr "Geen naam" + +#: ../../mod/settings.php:675 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: ../../mod/settings.php:687 +msgid "No Plugin settings configured" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Uit" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "Aan" + +#: ../../mod/settings.php:717 +msgid "Additional Features" +msgstr "Extra functies" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "enabled" +msgstr "ingeschakeld" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "disabled" +msgstr "uitgeschakeld" + +#: ../../mod/settings.php:732 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:768 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: ../../mod/settings.php:780 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: ../../mod/settings.php:781 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: ../../mod/settings.php:782 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: ../../mod/settings.php:784 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: ../../mod/settings.php:785 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: ../../mod/settings.php:786 +msgid "Security:" +msgstr "Beveiliging:" + +#: ../../mod/settings.php:786 ../../mod/settings.php:791 +msgid "None" +msgstr "Geen" + +#: ../../mod/settings.php:787 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: ../../mod/settings.php:788 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: ../../mod/settings.php:789 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: ../../mod/settings.php:790 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: ../../mod/settings.php:791 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: ../../mod/settings.php:791 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: ../../mod/settings.php:791 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: ../../mod/settings.php:792 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: ../../mod/settings.php:870 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: ../../mod/settings.php:876 ../../mod/settings.php:890 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: ../../mod/settings.php:877 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: ../../mod/settings.php:878 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: ../../mod/settings.php:878 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 seconden, geen maximum" + +#: ../../mod/settings.php:879 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: ../../mod/settings.php:879 ../../mod/settings.php:880 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: ../../mod/settings.php:880 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: ../../mod/settings.php:881 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: ../../mod/settings.php:882 +msgid "Don't show notices" +msgstr "" + +#: ../../mod/settings.php:883 +msgid "Infinite scroll" +msgstr "" + +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "" + +#: ../../mod/settings.php:962 +msgid "Normal Account Page" +msgstr "Normale account pagina" + +#: ../../mod/settings.php:963 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: ../../mod/settings.php:966 +msgid "Soapbox Page" +msgstr "Zeepkist pagina" + +#: ../../mod/settings.php:967 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." + +#: ../../mod/settings.php:970 +msgid "Community Forum/Celebrity Account" +msgstr "Gemeenschapsforum/Account van beroemdheid" + +#: ../../mod/settings.php:971 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." + +#: ../../mod/settings.php:974 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: ../../mod/settings.php:975 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: ../../mod/settings.php:978 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: ../../mod/settings.php:979 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: ../../mod/settings.php:991 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:991 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: ../../mod/settings.php:1001 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: ../../mod/settings.php:1007 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: ../../mod/settings.php:1015 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" + +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: ../../mod/settings.php:1024 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: ../../mod/settings.php:1030 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: ../../mod/settings.php:1036 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" + +#: ../../mod/settings.php:1042 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: ../../mod/settings.php:1050 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "of" + +#: ../../mod/settings.php:1058 +msgid "Your Identity Address is" +msgstr "Jouw Identiteitsadres is" + +#: ../../mod/settings.php:1069 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: ../../mod/settings.php:1069 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: ../../mod/settings.php:1070 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: ../../mod/settings.php:1071 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: ../../mod/settings.php:1072 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: ../../mod/settings.php:1073 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: ../../mod/settings.php:1074 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: ../../mod/settings.php:1075 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: ../../mod/settings.php:1076 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: ../../mod/settings.php:1102 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: ../../mod/settings.php:1110 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: ../../mod/settings.php:1111 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: ../../mod/settings.php:1112 +msgid "Confirm:" +msgstr "Bevestig:" + +#: ../../mod/settings.php:1112 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: ../../mod/settings.php:1113 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: ../../mod/settings.php:1114 +msgid "Password:" +msgstr "Wachtwoord:" + +#: ../../mod/settings.php:1118 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: ../../mod/settings.php:1120 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: ../../mod/settings.php:1121 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: ../../mod/settings.php:1122 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: ../../mod/settings.php:1123 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: ../../mod/settings.php:1126 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: ../../mod/settings.php:1128 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: ../../mod/settings.php:1129 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: ../../mod/settings.php:1130 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../mod/settings.php:1141 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: ../../mod/settings.php:1142 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: ../../mod/settings.php:1146 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: ../../mod/settings.php:1158 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: ../../mod/settings.php:1161 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: ../../mod/settings.php:1162 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: ../../mod/settings.php:1163 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: ../../mod/settings.php:1164 +msgid "joining a forum/community" +msgstr "Lid worden van een forum of gemeenschap" + +#: ../../mod/settings.php:1165 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: ../../mod/settings.php:1166 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: ../../mod/settings.php:1167 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: ../../mod/settings.php:1168 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: ../../mod/settings.php:1169 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: ../../mod/settings.php:1170 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: ../../mod/settings.php:1171 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: ../../mod/settings.php:1172 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: ../../mod/settings.php:1173 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: ../../mod/settings.php:1174 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: ../../mod/settings.php:1177 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1178 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1181 +msgid "Relocate" +msgstr "" + +#: ../../mod/settings.php:1182 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: ../../mod/settings.php:1183 +msgid "Resend relocate message to contacts" +msgstr "" + +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "Item is verwijderd." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Mensen Zoeken" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Geen resultaten" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profiel-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: ../../mod/profiles.php:321 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: ../../mod/profiles.php:325 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: ../../mod/profiles.php:329 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:333 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:337 +msgid "Work/Employment" +msgstr "Werk" + +#: ../../mod/profiles.php:340 +msgid "Religion" +msgstr "Godsdienst" + +#: ../../mod/profiles.php:344 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: ../../mod/profiles.php:348 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:352 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: ../../mod/profiles.php:356 +msgid "Homepage" +msgstr "Tijdlijn" + +#: ../../mod/profiles.php:360 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:364 +msgid "Address" +msgstr "Adres" + +#: ../../mod/profiles.php:371 +msgid "Location" +msgstr "Plaats" + +#: ../../mod/profiles.php:454 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: ../../mod/profiles.php:525 +msgid " and " +msgstr "en" + +#: ../../mod/profiles.php:533 +msgid "public profile" +msgstr "publiek profiel" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../mod/profiles.php:537 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" + +#: ../../mod/profiles.php:540 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." + +#: ../../mod/profiles.php:613 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" + +#: ../../mod/profiles.php:633 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: ../../mod/profiles.php:635 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:636 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:640 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: ../../mod/profiles.php:641 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: ../../mod/profiles.php:642 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: ../../mod/profiles.php:643 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: ../../mod/profiles.php:644 +#, php-format +msgid "Birthday (%s):" +msgstr "Geboortedatum (%s):" + +#: ../../mod/profiles.php:645 +msgid "Street Address:" +msgstr "Postadres:" + +#: ../../mod/profiles.php:646 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: ../../mod/profiles.php:647 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: ../../mod/profiles.php:648 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:649 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: ../../mod/profiles.php:650 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: ../../mod/profiles.php:651 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: ../../mod/profiles.php:652 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: ../../mod/profiles.php:653 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: ../../mod/profiles.php:655 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: ../../mod/profiles.php:658 +msgid "Religious Views:" +msgstr "Geloof:" + +#: ../../mod/profiles.php:659 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: ../../mod/profiles.php:660 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../mod/profiles.php:663 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: ../../mod/profiles.php:664 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: ../../mod/profiles.php:665 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: ../../mod/profiles.php:666 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: ../../mod/profiles.php:667 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: ../../mod/profiles.php:668 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:669 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:670 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: ../../mod/profiles.php:671 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:672 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: ../../mod/profiles.php:673 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: ../../mod/profiles.php:674 +msgid "Work/employment" +msgstr "Werk" + +#: ../../mod/profiles.php:675 +msgid "School/education" +msgstr "School/opleiding" + +#: ../../mod/profiles.php:680 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dit is jouw publiek profiel.
Het kan zichtbaar zijn voor iedereen op het internet." + +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../mod/profiles.php:729 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" + +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "link" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Account exporteren" + +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exporteren" + +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} wilt je vriend worden" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} stuurde jou een bericht" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} gaf een reactie op het bericht van %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} vond het bericht van %s leuk" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} vond het bericht van %s niet leuk" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} is nu bevriend met %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} plaatste" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} labelde %s's bericht met #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} vermeldde je in een bericht" + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Gemeenschap" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" + +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Bewaren" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + #: ../../mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" msgstr "Wil je echt dit voorstel verwijderen?" -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4067 -msgid "Cancel" -msgstr "Annuleren" +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" #: ../../mod/suggest.php:72 msgid "" @@ -1474,110 +4445,237 @@ msgid "" "hours." msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Verbinden" + #: ../../mod/suggest.php:90 msgid "Ignore/Hide" msgstr "Negeren/Verbergen" -#: ../../mod/network.php:179 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../mod/network.php:232 ../../include/group.php:275 -msgid "add" -msgstr "toevoegen" - -#: ../../mod/network.php:394 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../mod/network.php:397 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../mod/network.php:400 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../mod/network.php:403 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../mod/network.php:441 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../mod/network.php:444 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" - -#: ../../mod/network.php:450 -msgid "New" -msgstr "Nieuw" - -#: ../../mod/network.php:453 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../mod/network.php:459 -msgid "Shared Links" -msgstr "Gedeelde links" - -#: ../../mod/network.php:462 -msgid "Interesting Links" -msgstr "Interessante links" - -#: ../../mod/network.php:468 -msgid "Starred" -msgstr "Met ster" - -#: ../../mod/network.php:471 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../mod/network.php:539 +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, 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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." -msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." +msgid "%1$s welcomes %2$s" +msgstr "%1$s heet %2$s van harte welkom" -#: ../../mod/network.php:542 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Beheer Identiteiten en/of Pagina's" -#: ../../mod/network.php:588 ../../mod/content.php:119 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." -#: ../../mod/network.php:599 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "De groep is leeg" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" -#: ../../mod/network.php:605 ../../mod/content.php:134 -msgid "Group: " -msgstr "Groep:" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." -#: ../../mod/network.php:617 -msgid "Contact: " -msgstr "Contact: " +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" -#: ../../mod/network.php:619 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." -#: ../../mod/network.php:624 -msgid "Invalid contact." -msgstr "Ongeldig contact." +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Bestaande paginabeheerders" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Toevoegen" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Geen gegevens." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Geen contacten." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Dit bericht privé maken" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Globale gids" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Websitegids" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Geslacht:" + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Tijdlijn:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Jouw tijdlijn:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Over:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:133 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tijdsconversie" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC tijd: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Huidige Tijdzone: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Omgerekende lokale tijd: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selecteer je tijdzone:" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." + +#: ../../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 "Verkleining van de afbeelding [%s] mislukt." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Upload bestand:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Uploaden" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "Deze stap overslaan" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Wijzigingen compleet" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Uploaden van afbeelding gelukt." #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -1610,10 +4708,6 @@ msgstr "Zie het bestand \"INSTALL.txt\"." msgid "System check" msgstr "Systeemcontrole" -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" -msgstr "Volgende" - #: ../../mod/install.php:208 msgid "Check again" msgstr "Controleer opnieuw" @@ -1836,7 +4930,7 @@ msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoe msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." #: ../../mod/install.php:457 msgid "" @@ -1878,1023 +4972,65 @@ msgid "" "poller." msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Thema instellingen aangepast." +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Groep aangemaakt." -#: ../../mod/admin.php:101 ../../mod/admin.php:570 -msgid "Site" -msgstr "Website" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." -#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 -msgid "Users" -msgstr "Gebruiker" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Groep niet gevonden." -#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 -msgid "Plugins" -msgstr "Plugins" +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Groepsnaam gewijzigd." -#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 -msgid "Themes" -msgstr "Thema's" - -#: ../../mod/admin.php:105 -msgid "DB updates" -msgstr "DB aanpassingen" - -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 -msgid "Logs" -msgstr "Logs" - -#: ../../mod/admin.php:125 ../../include/nav.php:178 -msgid "Admin" -msgstr "Beheer" - -#: ../../mod/admin.php:126 -msgid "Plugin Features" -msgstr "Plugin Functies" - -#: ../../mod/admin.php:128 -msgid "User registrations waiting for confirmation" -msgstr "Gebruikersregistraties wachten op bevestiging" - -#: ../../mod/admin.php:187 ../../mod/admin.php:852 -msgid "Normal Account" -msgstr "Normale Account" - -#: ../../mod/admin.php:188 ../../mod/admin.php:853 -msgid "Soapbox Account" -msgstr "Zeepkist Account" - -#: ../../mod/admin.php:189 ../../mod/admin.php:854 -msgid "Community/Celebrity Account" -msgstr "Gemeenschap/Beroemdheid Account" - -#: ../../mod/admin.php:190 ../../mod/admin.php:855 -msgid "Automatic Friend Account" -msgstr "Automatisch Vriendschapsaccount" - -#: ../../mod/admin.php:191 -msgid "Blog Account" -msgstr "Blog Account" - -#: ../../mod/admin.php:192 -msgid "Private Forum" -msgstr "Privé Forum" - -#: ../../mod/admin.php:211 -msgid "Message queues" -msgstr "Bericht-wachtrijen" - -#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 -#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 -#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 -msgid "Administration" -msgstr "Beheer" - -#: ../../mod/admin.php:217 -msgid "Summary" -msgstr "Samenvatting" - -#: ../../mod/admin.php:219 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: ../../mod/admin.php:221 -msgid "Pending registrations" -msgstr "Registraties die in de wacht staan" - -#: ../../mod/admin.php:222 -msgid "Version" -msgstr "Versie" - -#: ../../mod/admin.php:224 -msgid "Active plugins" -msgstr "Actieve plug-ins" - -#: ../../mod/admin.php:247 -msgid "Can not parse base url. Must have at least ://" +#: ../../mod/group.php:87 +msgid "Save Group" msgstr "" -#: ../../mod/admin.php:483 -msgid "Site settings updated." -msgstr "Site instellingen gewijzigd." +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." -#: ../../mod/admin.php:512 ../../mod/settings.php:810 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Groepsnaam:" -#: ../../mod/admin.php:529 ../../mod/contacts.php:402 -msgid "Never" -msgstr "Nooit" +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Groep verwijderd." -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequent" +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "elk uur" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Groepsbewerker" -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Leden" -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "dagelijks" +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" -#: ../../mod/admin.php:538 -msgid "Multi user instance" -msgstr "Server voor meerdere gebruikers" +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "De groep is leeg" -#: ../../mod/admin.php:556 -msgid "Closed" -msgstr "Gesloten" +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Groep:" -#: ../../mod/admin.php:557 -msgid "Requires approval" -msgstr "Toestemming vereist" - -#: ../../mod/admin.php:558 -msgid "Open" -msgstr "Open" - -#: ../../mod/admin.php:562 -msgid "No SSL policy, links will track page SSL state" -msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" - -#: ../../mod/admin.php:563 -msgid "Force all links to use SSL" -msgstr "Verplicht alle links om SSL te gebruiken" - -#: ../../mod/admin.php:564 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" - -#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 -#: ../../mod/admin.php:1332 ../../mod/settings.php:601 -#: ../../mod/settings.php:711 ../../mod/settings.php:780 -#: ../../mod/settings.php:856 ../../mod/settings.php:1084 -msgid "Save Settings" -msgstr "" - -#: ../../mod/admin.php:573 -msgid "File upload" -msgstr "Uploaden bestand" - -#: ../../mod/admin.php:574 -msgid "Policies" -msgstr "Beleid" - -#: ../../mod/admin.php:575 -msgid "Advanced" -msgstr "Geavanceerd" - -#: ../../mod/admin.php:576 -msgid "Performance" -msgstr "Performantie" - -#: ../../mod/admin.php:577 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:580 -msgid "Site name" -msgstr "Site naam" - -#: ../../mod/admin.php:581 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:582 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:582 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:583 -msgid "System language" -msgstr "Systeemtaal" - -#: ../../mod/admin.php:584 -msgid "System theme" -msgstr "Systeem thema" - -#: ../../mod/admin.php:584 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" - -#: ../../mod/admin.php:585 -msgid "Mobile system theme" -msgstr "Mobiel systeem thema" - -#: ../../mod/admin.php:585 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: ../../mod/admin.php:586 -msgid "SSL link policy" -msgstr "Beleid SSL-links" - -#: ../../mod/admin.php:586 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" - -#: ../../mod/admin.php:587 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:587 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:588 -msgid "Hide help entry from navigation menu" -msgstr "Verberg de 'help' uit het navigatiemenu" - -#: ../../mod/admin.php:588 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." - -#: ../../mod/admin.php:589 -msgid "Single user instance" -msgstr "Server voor één gebruiker" - -#: ../../mod/admin.php:589 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." - -#: ../../mod/admin.php:590 -msgid "Maximum image size" -msgstr "Maximum afbeeldingsgrootte" - -#: ../../mod/admin.php:590 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." - -#: ../../mod/admin.php:591 -msgid "Maximum image length" -msgstr "Maximum afbeeldingslengte" - -#: ../../mod/admin.php:591 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." - -#: ../../mod/admin.php:592 -msgid "JPEG image quality" -msgstr "JPEG afbeeldingskwaliteit" - -#: ../../mod/admin.php:592 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." - -#: ../../mod/admin.php:594 -msgid "Register policy" -msgstr "Registratiebeleid" - -#: ../../mod/admin.php:595 -msgid "Maximum Daily Registrations" -msgstr "Maximum aantal registraties per dag" - -#: ../../mod/admin.php:595 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." - -#: ../../mod/admin.php:596 -msgid "Register text" -msgstr "Registratietekst" - -#: ../../mod/admin.php:596 -msgid "Will be displayed prominently on the registration page." -msgstr "Dit zal prominent op de registratiepagina getoond worden." - -#: ../../mod/admin.php:597 -msgid "Accounts abandoned after x days" -msgstr "Verlaten accounts na x dagen" - -#: ../../mod/admin.php:597 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." - -#: ../../mod/admin.php:598 -msgid "Allowed friend domains" -msgstr "Toegelaten vriend domeinen" - -#: ../../mod/admin.php:598 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." - -#: ../../mod/admin.php:599 -msgid "Allowed email domains" -msgstr "Toegelaten e-mail domeinen" - -#: ../../mod/admin.php:599 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." - -#: ../../mod/admin.php:600 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: ../../mod/admin.php:600 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." - -#: ../../mod/admin.php:601 -msgid "Force publish" -msgstr "Dwing publiceren af" - -#: ../../mod/admin.php:601 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." - -#: ../../mod/admin.php:602 -msgid "Global directory update URL" -msgstr "Update-adres van de globale gids" - -#: ../../mod/admin.php:602 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing." - -#: ../../mod/admin.php:603 -msgid "Allow threaded items" -msgstr "Sta threads in conversaties toe" - -#: ../../mod/admin.php:603 -msgid "Allow infinite level threading for items on this site." -msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." - -#: ../../mod/admin.php:604 -msgid "Private posts by default for new users" -msgstr "Privéberichten als standaard voor nieuwe gebruikers" - -#: ../../mod/admin.php:604 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." - -#: ../../mod/admin.php:605 -msgid "Don't include post content in email notifications" -msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" - -#: ../../mod/admin.php:605 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." - -#: ../../mod/admin.php:606 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:606 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:607 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:607 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:608 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Block multiple registrations" -msgstr "Blokkeer meerdere registraties" - -#: ../../mod/admin.php:609 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." - -#: ../../mod/admin.php:610 -msgid "OpenID support" -msgstr "OpenID ondersteuning" - -#: ../../mod/admin.php:610 -msgid "OpenID support for registration and logins." -msgstr "OpenID ondersteuning voor registraties en logins." - -#: ../../mod/admin.php:611 -msgid "Fullname check" -msgstr "Controleer volledige naam" - -#: ../../mod/admin.php:611 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" - -#: ../../mod/admin.php:612 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 reguliere uitdrukkingen" - -#: ../../mod/admin.php:612 -msgid "Use PHP UTF8 regular expressions" -msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" - -#: ../../mod/admin.php:613 -msgid "Show Community Page" -msgstr "Toon Gemeenschapspagina" - -#: ../../mod/admin.php:613 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont." - -#: ../../mod/admin.php:614 -msgid "Enable OStatus support" -msgstr "Activeer OStatus ondersteuning" - -#: ../../mod/admin.php:614 -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 "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden." - -#: ../../mod/admin.php:615 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:615 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: ../../mod/admin.php:616 -msgid "Enable Diaspora support" -msgstr "Activeer Diaspora ondersteuning" - -#: ../../mod/admin.php:616 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." - -#: ../../mod/admin.php:617 -msgid "Only allow Friendica contacts" -msgstr "Laat alleen Friendica contacten toe" - -#: ../../mod/admin.php:617 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." - -#: ../../mod/admin.php:618 -msgid "Verify SSL" -msgstr "Controleer SSL" - -#: ../../mod/admin.php:618 -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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." - -#: ../../mod/admin.php:619 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: ../../mod/admin.php:620 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: ../../mod/admin.php:621 -msgid "Network timeout" -msgstr "Netwerk timeout" - -#: ../../mod/admin.php:621 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." - -#: ../../mod/admin.php:622 -msgid "Delivery interval" -msgstr "Afleverinterval" - -#: ../../mod/admin.php:622 -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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." - -#: ../../mod/admin.php:623 -msgid "Poll interval" -msgstr "Poll-interval" - -#: ../../mod/admin.php:623 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." - -#: ../../mod/admin.php:624 -msgid "Maximum Load Average" -msgstr "Maximum gemiddelde belasting" - -#: ../../mod/admin.php:624 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." - -#: ../../mod/admin.php:626 -msgid "Use MySQL full text engine" -msgstr "Gebruik de tekst-zoekfunctie van MySQL" - -#: ../../mod/admin.php:626 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." - -#: ../../mod/admin.php:627 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:627 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:628 -msgid "Path to item cache" -msgstr "Pad naar cache voor items" - -#: ../../mod/admin.php:629 -msgid "Cache duration in seconds" -msgstr "Cache tijdsduur in seconden" - -#: ../../mod/admin.php:629 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)." - -#: ../../mod/admin.php:630 -msgid "Path for lock file" -msgstr "Pad voor lock bestand" - -#: ../../mod/admin.php:631 -msgid "Temp path" -msgstr "Tijdelijk pad" - -#: ../../mod/admin.php:632 -msgid "Base path to installation" -msgstr "Basispad voor installatie" - -#: ../../mod/admin.php:634 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:652 -msgid "Update has been marked successful" -msgstr "Wijziging succesvol gemarkeerd " - -#: ../../mod/admin.php:662 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na." - -#: ../../mod/admin.php:665 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Wijziging %s geslaagd." - -#: ../../mod/admin.php:669 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." - -#: ../../mod/admin.php:672 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." - -#: ../../mod/admin.php:687 -msgid "No failed updates." -msgstr "Geen misluke wijzigingen" - -#: ../../mod/admin.php:691 -msgid "Failed Updates" -msgstr "Misluke wijzigingen" - -#: ../../mod/admin.php:692 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." - -#: ../../mod/admin.php:693 -msgid "Mark success (if update was manually applied)" -msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" - -#: ../../mod/admin.php:694 -msgid "Attempt to execute this update step automatically" -msgstr "Probeer deze stap automatisch uit te voeren" - -#: ../../mod/admin.php:740 -msgid "Registration successful. Email send to user" -msgstr "" - -#: ../../mod/admin.php:750 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" -msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" - -#: ../../mod/admin.php:757 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s gebruiker verwijderd" -msgstr[1] "%s gebruikers verwijderd" - -#: ../../mod/admin.php:796 -#, php-format -msgid "User '%s' deleted" -msgstr "Gebruiker '%s' verwijderd" - -#: ../../mod/admin.php:804 -#, php-format -msgid "User '%s' unblocked" -msgstr "Gebruiker '%s' niet meer geblokkeerd" - -#: ../../mod/admin.php:804 -#, php-format -msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" - -#: ../../mod/admin.php:899 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:900 -msgid "select all" -msgstr "Alles selecteren" - -#: ../../mod/admin.php:901 -msgid "User registrations waiting for confirm" -msgstr "Gebruikersregistraties wachten op een bevestiging" - -#: ../../mod/admin.php:902 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:903 -msgid "Request date" -msgstr "Registratiedatum" - -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:929 ../../mod/crepair.php:150 -#: ../../mod/settings.php:603 ../../mod/settings.php:629 -msgid "Name" -msgstr "Naam" - -#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 -#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: ../../mod/admin.php:904 -msgid "No registrations." -msgstr "Geen registraties." - -#: ../../mod/admin.php:905 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/admin.php:906 -msgid "Deny" -msgstr "Weiger" - -#: ../../mod/admin.php:908 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/admin.php:909 ../../mod/contacts.php:425 -#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: ../../mod/admin.php:910 -msgid "Site admin" -msgstr "Sitebeheerder" - -#: ../../mod/admin.php:911 -msgid "Account expired" -msgstr "Account verlopen" - -#: ../../mod/admin.php:914 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:915 ../../mod/admin.php:916 -msgid "Register date" -msgstr "Registratiedatum" - -#: ../../mod/admin.php:915 ../../mod/admin.php:916 -msgid "Last login" -msgstr "Laatste login" - -#: ../../mod/admin.php:915 ../../mod/admin.php:916 -msgid "Last item" -msgstr "Laatste item" - -#: ../../mod/admin.php:915 -msgid "Deleted since" -msgstr "" - -#: ../../mod/admin.php:916 -msgid "Account" -msgstr "Account" - -#: ../../mod/admin.php:918 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: ../../mod/admin.php:919 -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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: ../../mod/admin.php:929 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:930 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:930 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:931 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:964 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." - -#: ../../mod/admin.php:968 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld." - -#: ../../mod/admin.php:978 ../../mod/admin.php:1181 -msgid "Disable" -msgstr "Uitschakelen" - -#: ../../mod/admin.php:980 ../../mod/admin.php:1183 -msgid "Enable" -msgstr "Inschakelen" - -#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 -msgid "Toggle" -msgstr "Schakelaar" - -#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 -msgid "Author: " -msgstr "Auteur:" - -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 -msgid "Maintainer: " -msgstr "Onderhoud:" - -#: ../../mod/admin.php:1141 -msgid "No themes found." -msgstr "Geen thema's gevonden." - -#: ../../mod/admin.php:1203 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: ../../mod/admin.php:1249 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: ../../mod/admin.php:1250 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: ../../mod/admin.php:1277 -msgid "Log settings updated." -msgstr "Log instellingen gewijzigd" - -#: ../../mod/admin.php:1333 -msgid "Clear" -msgstr "Wis" - -#: ../../mod/admin.php:1339 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1340 -msgid "Log file" -msgstr "Logbestand" - -#: ../../mod/admin.php:1340 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." - -#: ../../mod/admin.php:1341 -msgid "Log level" -msgstr "Log niveau" - -#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 -msgid "Update now" -msgstr "Wijzig nu" - -#: ../../mod/admin.php:1391 -msgid "Close" -msgstr "Afsluiten" - -#: ../../mod/admin.php:1397 -msgid "FTP Host" -msgstr "FTP Server" - -#: ../../mod/admin.php:1398 -msgid "FTP Path" -msgstr "FTP Pad" - -#: ../../mod/admin.php:1399 -msgid "FTP User" -msgstr "FTP Gebruiker" - -#: ../../mod/admin.php:1400 -msgid "FTP Password" -msgstr "FTP wachtwoord" - -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 -#: ../../include/text.php:935 ../../include/nav.php:118 -msgid "Search" -msgstr "Zoeken" - -#: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 -msgid "No results." -msgstr "Geen resultaten." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde %3$s van %2$s met %4$s" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 -msgid "upload photo" -msgstr "Foto uploaden" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 -msgid "web link" -msgstr "webadres" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 -msgid "video link" -msgstr "video adres" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 -msgid "audio link" -msgstr "audio adres" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 -msgid "set location" -msgstr "Stel uw locatie in" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 -msgid "Public post" -msgstr "Openbare post" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 -msgid "Set title" -msgstr "Titel plaatsen" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Item niet beschikbaar" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "In context bekijken" #: ../../mod/regmod.php:63 msgid "Account approved." @@ -2907,40 +5043,143 @@ msgstr "Registratie ingetrokken voor %s" #: ../../mod/regmod.php:112 msgid "Please login." -msgstr "Log a.u.b. in." +msgstr "Inloggen." -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Op deze website zoeken" +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profielmatch" -#: ../../mod/directory.php:59 ../../mod/contacts.php:685 -msgid "Finding: " -msgstr "Gevonden:" +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Websitegids" +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" -#: ../../mod/directory.php:61 ../../mod/contacts.php:686 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Zoek" +#: ../../mod/item.php:110 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../mod/item.php:319 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../mod/item.php:891 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Over:" +#: ../../mod/item.php:917 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." +#: ../../mod/item.php:919 +#, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: ../../mod/item.php:920 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." + +#: ../../mod/item.php:924 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." + +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stemming" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stel je huidige stemming in, en vertel het je vrienden" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "toevoegen" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nieuw" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Gedeelde links" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Interessante links" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Met ster" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../mod/network.php:457 +#, 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] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." +msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." + +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." + +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Contact: " + +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." + +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Ongeldig contact." #: ../../mod/crepair.php:104 msgid "Contact settings applied." @@ -3016,3622 +5255,529 @@ msgid "" "entries from this contact." msgstr "" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account verplaatsen" +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Jouw profiel pagina" -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Jouw contacten" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account bestand" +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Jouw gebeurtenissen" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Jouw persoonlijke foto's" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Gemeenschapspagina's" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Gemeenschapsprofielen" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Recent leuk gevonden" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "gebeurtenis" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Laatste foto's" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokale gids" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" msgstr "" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Privacyinformatie op afstand niet beschikbaar." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 -msgid "Save" -msgstr "Bewaren" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Help:" - -#: ../../mod/help.php:84 ../../include/nav.php:113 -msgid "Help" -msgstr "Help" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Geen geldig e-mailadres" - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log a.u.b. in met dit profiel." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Verberg dit contact" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Bevestig" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Sluit aan als e-mail volger (Binnenkort)" - -#: ../../mod/dfrn_request.php:829 -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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" - -#: ../../mod/content.php:496 ../../include/conversation.php:686 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../mod/contacts.php:104 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: ../../mod/contacts.php:149 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." - -#: ../../mod/contacts.php:172 -msgid "Contact updated." -msgstr "Contact bijgewerkt." - -#: ../../mod/contacts.php:272 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: ../../mod/contacts.php:272 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: ../../mod/contacts.php:282 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: ../../mod/contacts.php:282 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: ../../mod/contacts.php:293 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: ../../mod/contacts.php:293 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: ../../mod/contacts.php:335 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: ../../mod/contacts.php:373 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: ../../mod/contacts.php:377 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: ../../mod/contacts.php:382 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: ../../mod/contacts.php:399 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: ../../mod/contacts.php:406 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: ../../mod/contacts.php:406 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: ../../mod/contacts.php:408 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:412 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gedeeld contact" -msgstr[1] "%d gedeelde contacten" - -#: ../../mod/contacts.php:420 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: ../../mod/contacts.php:428 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 -#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/contacts.php:434 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 -msgid "Archive" -msgstr "Archiveer" - -#: ../../mod/contacts.php:441 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: ../../mod/contacts.php:444 -msgid "Repair" -msgstr "Herstellen" - -#: ../../mod/contacts.php:447 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: ../../mod/contacts.php:453 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: ../../mod/contacts.php:456 -msgid "Contact Editor" -msgstr "Contactbewerker" - -#: ../../mod/contacts.php:459 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/contacts.php:460 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " - -#: ../../mod/contacts.php:461 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: ../../mod/contacts.php:462 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: ../../mod/contacts.php:468 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: ../../mod/contacts.php:469 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: ../../mod/contacts.php:470 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" - -#: ../../mod/contacts.php:471 -msgid "View conversations" -msgstr "Toon conversaties" - -#: ../../mod/contacts.php:473 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: ../../mod/contacts.php:477 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/contacts.php:479 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: ../../mod/contacts.php:488 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: ../../mod/contacts.php:489 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: ../../mod/contacts.php:490 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: ../../mod/contacts.php:491 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: ../../mod/contacts.php:542 -msgid "Suggestions" -msgstr "Voorstellen" - -#: ../../mod/contacts.php:545 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:548 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: ../../mod/contacts.php:551 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: ../../mod/contacts.php:554 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/contacts.php:557 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" - -#: ../../mod/contacts.php:561 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/contacts.php:564 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: ../../mod/contacts.php:568 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/contacts.php:571 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: ../../mod/contacts.php:575 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/contacts.php:578 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: ../../mod/contacts.php:582 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/contacts.php:585 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: ../../mod/contacts.php:633 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: ../../mod/contacts.php:637 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: ../../mod/contacts.php:641 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: ../../mod/contacts.php:684 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: ../../mod/contacts.php:691 ../../mod/settings.php:126 -#: ../../mod/settings.php:627 -msgid "Update" -msgstr "Wijzigen" - -#: ../../mod/settings.php:28 ../../mod/photos.php:79 -msgid "everybody" -msgstr "iedereen" - -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Account instellingen" - -#: ../../mod/settings.php:40 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Scherminstellingen" - -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Connector instellingen" - -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Plugin instellingen" - -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 -msgid "Remove account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:123 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: ../../mod/settings.php:232 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: ../../mod/settings.php:237 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: ../../mod/settings.php:252 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: ../../mod/settings.php:311 -msgid "Relocate message has been send to your contacts" +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" msgstr "" -#: ../../mod/settings.php:325 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:338 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: ../../mod/settings.php:349 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: ../../mod/settings.php:351 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:416 -msgid " Please use a shorter name." -msgstr "Gebruik a.u.b. een kortere naam." - -#: ../../mod/settings.php:418 -msgid " Name too short." -msgstr "Naam te kort." - -#: ../../mod/settings.php:427 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: ../../mod/settings.php:432 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:438 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: ../../mod/settings.php:493 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum heeft geen privacyrechten . De standaard privacygroep wordt gebruikt." - -#: ../../mod/settings.php:497 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum heeft geen privacyrechten en geen standaard privacygroep." - -#: ../../mod/settings.php:527 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -#: ../../mod/settings.php:662 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: ../../mod/settings.php:604 ../../mod/settings.php:630 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: ../../mod/settings.php:605 ../../mod/settings.php:631 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: ../../mod/settings.php:606 ../../mod/settings.php:632 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -msgid "Icon url" -msgstr "URL pictogram" - -#: ../../mod/settings.php:618 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: ../../mod/settings.php:661 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:665 -msgid "Client key starts with" +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" msgstr "" -#: ../../mod/settings.php:666 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:667 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: ../../mod/settings.php:679 -msgid "No Plugin settings configured" +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" msgstr "" -#: ../../mod/settings.php:687 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Diensten verbinden" -#: ../../mod/settings.php:701 -msgid "Off" -msgstr "Uit" +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "Niet tonen" -#: ../../mod/settings.php:701 -msgid "On" -msgstr "Aan" +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "tonen" -#: ../../mod/settings.php:709 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Stel lettergrootte voor berichten en reacties in" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stel lijnhoogte voor berichten en reacties in" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stel resolutie in voor de middelste kolom. " + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stel kleurenschema in" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stel kleurschema in" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Uitlijning" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Gecentreerd" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Kleurschema" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Lettergrootte berichten" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stel breedte van het thema in" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "Minder tonen" + +#: ../../boot.php:1023 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." -#: ../../mod/settings.php:722 ../../mod/settings.php:723 -msgid "enabled" -msgstr "ingeschakeld" +#: ../../boot.php:1025 +#, php-format +msgid "Update Error at %s" +msgstr "Wijzigingsfout op %s" -#: ../../mod/settings.php:722 ../../mod/settings.php:723 -msgid "disabled" -msgstr "uitgeschakeld" +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Nieuw account aanmaken" -#: ../../mod/settings.php:723 -msgid "StatusNet" -msgstr "StatusNet" +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Uitloggen" -#: ../../mod/settings.php:755 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Login" -#: ../../mod/settings.php:762 -msgid "Connector Settings" -msgstr "Connector Instellingen" +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Bijnaam of e-mailadres:" -#: ../../mod/settings.php:767 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: ../../mod/settings.php:768 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." - -#: ../../mod/settings.php:769 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" - -#: ../../mod/settings.php:771 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: ../../mod/settings.php:772 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: ../../mod/settings.php:773 -msgid "Security:" -msgstr "Beveiliging:" - -#: ../../mod/settings.php:773 ../../mod/settings.php:778 -msgid "None" -msgstr "Geen" - -#: ../../mod/settings.php:774 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: ../../mod/settings.php:775 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: ../../mod/settings.php:776 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: ../../mod/settings.php:777 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: ../../mod/settings.php:778 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: ../../mod/settings.php:778 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: ../../mod/settings.php:778 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: ../../mod/settings.php:779 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: ../../mod/settings.php:854 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: ../../mod/settings.php:860 ../../mod/settings.php:873 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: ../../mod/settings.php:861 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:862 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: ../../mod/settings.php:862 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 seconden, geen maximum" - -#: ../../mod/settings.php:863 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: ../../mod/settings.php:863 ../../mod/settings.php:864 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: ../../mod/settings.php:864 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: ../../mod/settings.php:865 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: ../../mod/settings.php:866 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:942 -msgid "Normal Account Page" -msgstr "Normale account pagina" - -#: ../../mod/settings.php:943 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: ../../mod/settings.php:946 -msgid "Soapbox Page" -msgstr "Zeepkist pagina" - -#: ../../mod/settings.php:947 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." - -#: ../../mod/settings.php:950 -msgid "Community Forum/Celebrity Account" -msgstr "Gemeenschapsforum/Account van beroemdheid" - -#: ../../mod/settings.php:951 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." - -#: ../../mod/settings.php:954 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: ../../mod/settings.php:955 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: ../../mod/settings.php:958 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: ../../mod/settings.php:959 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: ../../mod/settings.php:971 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:971 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: ../../mod/settings.php:981 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: ../../mod/settings.php:987 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: ../../mod/settings.php:995 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" - -#: ../../mod/settings.php:999 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: ../../mod/settings.php:1004 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" - -#: ../../mod/settings.php:1010 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: ../../mod/settings.php:1016 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" - -#: ../../mod/settings.php:1022 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: ../../mod/settings.php:1030 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:1038 -msgid "Your Identity Address is" -msgstr "Jouw Identiteitsadres is" - -#: ../../mod/settings.php:1049 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: ../../mod/settings.php:1049 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: ../../mod/settings.php:1050 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: ../../mod/settings.php:1051 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: ../../mod/settings.php:1052 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: ../../mod/settings.php:1053 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: ../../mod/settings.php:1054 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: ../../mod/settings.php:1055 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: ../../mod/settings.php:1056 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: ../../mod/settings.php:1082 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: ../../mod/settings.php:1090 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: ../../mod/settings.php:1091 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: ../../mod/settings.php:1092 -msgid "Confirm:" -msgstr "Bevestig:" - -#: ../../mod/settings.php:1092 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: ../../mod/settings.php:1093 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: ../../mod/settings.php:1094 -msgid "Password:" +#: ../../boot.php:1164 +msgid "Password: " msgstr "Wachtwoord:" -#: ../../mod/settings.php:1098 -msgid "Basic Settings" -msgstr "Basis Instellingen" +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Onthou me" -#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Volledige Naam:" +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" -#: ../../mod/settings.php:1100 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" -#: ../../mod/settings.php:1101 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" -#: ../../mod/settings.php:1102 -msgid "Default Post Location:" -msgstr "Standaard locatie:" +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "servicevoorwaarden" -#: ../../mod/settings.php:1103 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" -#: ../../mod/settings.php:1106 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "privacybeleid" -#: ../../mod/settings.php:1108 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." -#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Bewerk profiel" -#: ../../mod/settings.php:1109 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" +#: ../../boot.php:1459 +msgid "Message" +msgstr "Bericht" -#: ../../mod/settings.php:1110 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profielen" -#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 -msgid "Show to Groups" -msgstr "Tonen aan groepen" +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "G l j F" -#: ../../mod/settings.php:1121 -msgid "Default Private Post" -msgstr "Standaard Privé Post" +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "d F" -#: ../../mod/settings.php:1122 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[vandaag]" -#: ../../mod/settings.php:1126 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../mod/settings.php:1138 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../mod/settings.php:1141 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Geen beschrijving]" -#: ../../mod/settings.php:1142 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" -#: ../../mod/settings.php:1143 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../mod/settings.php:1144 -msgid "joining a forum/community" -msgstr "Lid worden van een forum of gemeenschap" - -#: ../../mod/settings.php:1145 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: ../../mod/settings.php:1146 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: ../../mod/settings.php:1147 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: ../../mod/settings.php:1148 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: ../../mod/settings.php:1149 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op de muur van je profiel schrijft" - -#: ../../mod/settings.php:1150 -msgid "Someone writes a followup comment" -msgstr "Iemand een commentaar schrijft" - -#: ../../mod/settings.php:1151 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1152 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: ../../mod/settings.php:1153 -msgid "You are tagged in a post" -msgstr "Je bent in een bericht genoemd" - -#: ../../mod/settings.php:1154 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." - -#: ../../mod/settings.php:1157 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1158 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1161 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1162 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: ../../mod/settings.php:1163 -msgid "Resend relocate message to contacts" -msgstr "" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profiel verwijderd" - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen." - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Werk" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Godsdienst" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: ../../mod/profiles.php:352 -msgid "Homepage" +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" msgstr "Tijdlijn" -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Interesses" +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Adres" +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Profieldetails" -#: ../../mod/profiles.php:367 -msgid "Location" -msgstr "Plaats" +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Video's" -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" -#: ../../mod/profiles.php:521 -msgid " and " -msgstr "en" +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" -#: ../../mod/profiles.php:529 -msgid "public profile" -msgstr "publiek profiel" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" -#: ../../mod/profiles.php:533 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../mod/profiles.php:536 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "RTF-tekstverwerker" -#: ../../mod/profiles.php:629 -msgid "Edit Profile Details" -msgstr "Profiel details bewerken" +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" -#: ../../mod/profiles.php:631 -msgid "Change Profile Photo" -msgstr "Profiel foto wijzigen" +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Voorvertoning bericht" -#: ../../mod/profiles.php:632 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: ../../mod/profiles.php:633 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: ../../mod/profiles.php:634 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:635 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:636 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: ../../mod/profiles.php:637 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: ../../mod/profiles.php:638 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: ../../mod/profiles.php:639 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: ../../mod/profiles.php:640 -#, php-format -msgid "Birthday (%s):" -msgstr "Geboortedatum (%s):" - -#: ../../mod/profiles.php:641 -msgid "Street Address:" -msgstr "Postadres:" - -#: ../../mod/profiles.php:642 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: ../../mod/profiles.php:643 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:644 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:645 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: ../../mod/profiles.php:646 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: ../../mod/profiles.php:647 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: ../../mod/profiles.php:648 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: ../../mod/profiles.php:649 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: ../../mod/profiles.php:651 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: ../../mod/profiles.php:654 -msgid "Religious Views:" -msgstr "Geloof:" - -#: ../../mod/profiles.php:655 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: ../../mod/profiles.php:656 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../mod/profiles.php:659 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: ../../mod/profiles.php:660 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: ../../mod/profiles.php:661 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: ../../mod/profiles.php:662 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: ../../mod/profiles.php:663 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: ../../mod/profiles.php:664 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:665 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:666 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: ../../mod/profiles.php:667 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:668 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: ../../mod/profiles.php:669 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: ../../mod/profiles.php:670 -msgid "Work/employment" -msgstr "Werk" - -#: ../../mod/profiles.php:671 -msgid "School/education" -msgstr "School/opleiding" - -#: ../../mod/profiles.php:676 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw publiek profiel.
Het kan zichtbaar zijn voor iedereen op het internet." - -#: ../../mod/profiles.php:725 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Groep aangemaakt." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Groep niet gevonden." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." - -#: ../../mod/group.php:87 -msgid "Save Group" +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Groepsbewerker" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Leden" - -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Bron (bbcode) tekst:" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Bron ingave:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (ruwe HTML):" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Bron ingave (Diaspora formaat):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact toegevoegd" - -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../mod/message.php:9 ../../include/nav.php:159 -msgid "New Message" -msgstr "Nieuw Bericht" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 -msgid "Messages" -msgstr "Privéberichten" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Geen berichten." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s en jij" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: ../../mod/like.php:170 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vind %3$s van %2$s niet leuk" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tijdsconversie" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC tijd: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Huidige Tijdzone: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Omgerekende lokale tijd: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selecteer je tijdzone:" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" +#: ../../include/features.php:33 +msgid "Auto-mention Forums" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Geen contacten." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Mensen Zoeken" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Geen resultaten" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: ../../mod/photos.php:656 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s is gelabeld in %2$s door %3$s" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "een foto" - -#: ../../mod/photos.php:761 -msgid "Image exceeds size limit of " -msgstr "Afbeelding is groter dan de maximale afmeting van" - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." - -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" - -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/photos.php:1088 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "of bestaande albumnaam: " - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Rechten" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Privé foto" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Publieke foto" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Bekijk foto" - -#: ../../mod/photos.php:1286 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Bekijk foto" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Labels: " - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Alle labels verwijderen]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Onderschrift" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: ../../mod/photos.php:1499 +#: ../../include/features.php:33 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Privé foto" - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Publieke foto" - -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 -msgid "Share" -msgstr "Delen" - -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 -msgid "View Album" -msgstr "Album bekijken" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" - -#: ../../mod/videos.php:301 ../../include/text.php:1383 -msgid "View Video" -msgstr "Bekijk Video" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Recente video's" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt %3$s van %2$s" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Account exporteren" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Alles exporteren" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeelding is groter dan de toegestane %d" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 -#: ../../include/message.php:144 -msgid "Wall Photos" +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" -#: ../../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 "Verkleining van de afbeelding [%s] mislukt." +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Zoeken op datum" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Groepsfilter" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Upload bestand:" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Netwerkfilter" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Uploaden" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Deze stap overslaan" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Netwerktabs" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Wijzigingen compleet" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Uploaden van afbeelding gelukt." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profielmatch" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Labelen" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -msgid "Remove" -msgstr "Verwijderen" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:335 ../../include/text.php:1615 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "uur:minuut" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formaat is %s %s. Begindatum en titel zijn vereist." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschrijving:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." - -#: ../../mod/delegate.php:121 ../../include/nav.php:165 -msgid "Delegate Page Management" -msgstr "Paginabeheer uitbesteden" - -#: ../../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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande paginabeheerders" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen gegevens." - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contacten die geen leden zijn van een groep" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Bestanden" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systeem onbeschikbaar wegens onderhoud" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" - -#: ../../mod/item.php:108 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: ../../mod/item.php:317 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: ../../mod/item.php:884 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." - -#: ../../mod/item.php:909 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." - -#: ../../mod/item.php:911 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: ../../mod/item.php:912 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." - -#: ../../mod/item.php:916 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} stuurde jou een berichtje" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} gaf een reactie op het bericht van %s" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} vond het bericht van %s leuk" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} vond het bericht van %s niet leuk" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} is nu bevriend met %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} plaatste" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} labelde %s's bericht met #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} vermeldde je in een bericht" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol fout. Geen ID Gevonden." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Login mislukt." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige request identifier." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Verwerpen" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systeem" - -#: ../../mod/notifications.php:83 ../../include/nav.php:140 -msgid "Network" -msgstr "Netwerk" - -#: ../../mod/notifications.php:98 ../../include/nav.php:149 -msgid "Introductions" -msgstr "Verzoeken" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Notificatiesoort:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "Voorgesteld door %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Bericht over een nieuwe vriend" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "Indien toepasbaar" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Denkt dat u hem of haar kent:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "Ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "Nee" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Goedkeuren als:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Vriend" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Deler" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Bewonderaar" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: ../../mod/notifications.php:220 ../../include/nav.php:150 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Geen netwerknotificaties meer" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Geen persoonlijke notificaties meer" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Geen tijdlijn-notificaties meer" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Totale uitnodigingslimiet overschreden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Geen geldig e-mailadres." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Kom bij ons op Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Aflevering van bericht mislukt." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Je kunt geen uitnodigingen meer sturen" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Verstuur uitnodigingen" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Vul e-mailadressen in, één per lijn:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" - -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" - -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Vrienden van %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Nieuw Contact toevoegen" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Voeg een webadres of -locatie in:" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" - -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Zoek mensen" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Netwerken" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Alle netwerken" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "Bewaarde Mappen" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Alles" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Categorieën" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 -msgid "Click here to upgrade." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/plugin.php:462 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:467 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/api.php:255 ../../include/api.php:266 -#: ../../include/api.php:356 -msgid "User not found." -msgstr "" - -#: ../../include/api.php:1024 -msgid "There is no status with this id." -msgstr "Er is geen status met dit kenmerk" - -#: ../../include/network.php:883 -msgid "view full size" -msgstr "Volledig formaat" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 -msgid "Starts:" -msgstr "Begint:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 -msgid "Finishes:" -msgstr "Eindigt:" - -#: ../../include/notifier.php:774 ../../include/delivery.php:457 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 -msgid "noreply" -msgstr "geen reactie" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" -msgstr "De foutboodschap was:" - -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "Vul a.u.b. de vereiste informatie in." - -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "Naam te kort" - -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: ../../include/user.php:131 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." - -#: ../../include/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: ../../include/user.php:147 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." - -#: ../../include/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:256 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/user.php:288 ../../include/user.php:292 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: ../../include/conversation.php:211 ../../include/text.php:986 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "bericht/item" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markeerde %2$s's %3$s als favoriet" - -#: ../../include/conversation.php:767 -msgid "remove" -msgstr "verwijder" - -#: ../../include/conversation.php:771 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: ../../include/conversation.php:870 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:871 ../../include/Contact.php:229 -msgid "View Status" -msgstr "Bekijk status" - -#: ../../include/conversation.php:872 ../../include/Contact.php:230 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: ../../include/conversation.php:873 ../../include/Contact.php:231 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: ../../include/conversation.php:874 ../../include/Contact.php:232 -#: ../../include/Contact.php:255 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: ../../include/conversation.php:875 ../../include/Contact.php:233 -#: ../../include/Contact.php:255 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: ../../include/conversation.php:876 ../../include/Contact.php:235 -#: ../../include/Contact.php:255 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: ../../include/conversation.php:877 ../../include/Contact.php:228 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:939 -#, php-format -msgid "%s likes this." -msgstr "%s vind dit leuk." - -#: ../../include/conversation.php:939 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vind dit niet leuk." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: ../../include/conversation.php:961 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:967 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: ../../include/conversation.php:969 -#, php-format -msgid "%s like this." -msgstr "%s vind dit leuk." - -#: ../../include/conversation.php:969 -#, php-format -msgid "%s don't like this." -msgstr "%s vind dit niet leuk." - -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: ../../include/conversation.php:1003 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: ../../include/conversation.php:1045 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: ../../include/conversation.php:1101 -msgid "permissions" -msgstr "rechten" - -#: ../../include/conversation.php:1125 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: ../../include/conversation.php:1126 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: ../../include/conversation.php:1127 -msgid "Private post" -msgstr "Privé verzending" - #: ../../include/auth.php:38 msgid "Logged out." msgstr "Uitgelogd." -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Gebruiker '%s' bestaat al op deze server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: ../../include/text.php:300 -msgid "newer" -msgstr "nieuwere berichten" - -#: ../../include/text.php:302 -msgid "older" -msgstr "oudere berichten" - -#: ../../include/text.php:307 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:309 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:341 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:344 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:836 -msgid "No contacts" -msgstr "Geen contacten" - -#: ../../include/text.php:845 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" - -#: ../../include/text.php:986 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:987 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:987 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:988 -msgid "prod" -msgstr "porren" - -#: ../../include/text.php:988 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:989 -msgid "slap" -msgstr "" - -#: ../../include/text.php:989 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:990 -msgid "finger" -msgstr "" - -#: ../../include/text.php:990 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:991 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:991 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "Blij" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "Verdrietig" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "vermoeid" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "onzeker" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "Geïnteresseerd" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "levend" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "verveeld" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "gefrustreerd" - -#: ../../include/text.php:1022 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1023 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1024 -msgid "surprised" -msgstr "verbaasd" - -#: ../../include/text.php:1192 -msgid "Monday" -msgstr "Maandag" - -#: ../../include/text.php:1192 -msgid "Tuesday" -msgstr "Dinsdag" - -#: ../../include/text.php:1192 -msgid "Wednesday" -msgstr "Woensdag" - -#: ../../include/text.php:1192 -msgid "Thursday" -msgstr "Donderdag" - -#: ../../include/text.php:1192 -msgid "Friday" -msgstr "Vrijdag" - -#: ../../include/text.php:1192 -msgid "Saturday" -msgstr "Zaterdag" - -#: ../../include/text.php:1192 -msgid "Sunday" -msgstr "Zondag" - -#: ../../include/text.php:1196 -msgid "January" -msgstr "Januari" - -#: ../../include/text.php:1196 -msgid "February" -msgstr "Februari" - -#: ../../include/text.php:1196 -msgid "March" -msgstr "Maart" - -#: ../../include/text.php:1196 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1196 -msgid "May" -msgstr "Mei" - -#: ../../include/text.php:1196 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1196 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1196 -msgid "August" -msgstr "Augustus" - -#: ../../include/text.php:1196 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1196 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1196 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1196 -msgid "December" -msgstr "December" - -#: ../../include/text.php:1415 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1439 ../../include/text.php:1451 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: ../../include/text.php:1670 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1926 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:1929 -msgid "post" -msgstr "bericht" - -#: ../../include/text.php:2084 -msgid "Item filed" -msgstr "Item bewaard" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Bedankt" - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: ../../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:Notificatie] Nieuw bericht ontvangen op %s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "een prive bericht" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:90 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" - -#: ../../include/enotify.php:97 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" - -#: ../../include/enotify.php:105 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" - -#: ../../include/enotify.php:115 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:116 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:128 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificatie] %s heeft jou genoemd" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou aangestoten op %2$s" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: ../../include/enotify.php:174 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." - -#: ../../include/enotify.php:190 ../../include/enotify.php:208 -#, php-format -msgid "You may visit their profile at %s" -msgstr "U kunt hun profiel bezoeken op %s" - -#: ../../include/enotify.php:192 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bezoek %s om het verzoek goed of af te keuren." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:201 -#, php-format +#: ../../include/auth.php:128 ../../include/user.php:66 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../include/enotify.php:206 -msgid "Name:" -msgstr "Naam:" +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "De foutboodschap was:" -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Foto: " +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Begint:" -#: ../../include/enotify.php:210 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: ../../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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "verander" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Verander groep" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "volgend" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Maak een accoount" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Gids" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Personengids" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "Inbox" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Beheren" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "Navigatie" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Sitemap" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Eindigt:" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -6698,360 +5844,396 @@ msgstr "Werk/beroep:" msgid "School/education:" msgstr "School/opleiding:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 -#: ../../include/bbcode.php:621 -msgid "Image/photo" -msgstr "Afbeelding/foto" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/bbcode.php:285 +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr " op Last.fm" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "nieuwere berichten" + +#: ../../include/text.php:298 +msgid "older" +msgstr "oudere berichten" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:305 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:337 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:340 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:853 +msgid "No contacts" +msgstr "Geen contacten" + +#: ../../include/text.php:862 #, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schreef het volgende bericht" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" -#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/text.php:1003 +msgid "poke" +msgstr "aanstoten" -#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "aangestoten" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Onbekend | Niet " +#: ../../include/text.php:1004 +msgid "ping" +msgstr "ping" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Onmiddellijk blokkeren" +#: ../../include/text.php:1004 +msgid "pinged" +msgstr "gepingd" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" +#: ../../include/text.php:1005 +msgid "prod" +msgstr "porren" + +#: ../../include/text.php:1005 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1006 +msgid "slap" msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekend, maar geen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, waarschijnlijk onschadelijk" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gerenommeerd, heeft mijn vertrouwen" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "maandelijks" - -#: ../../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 "Linkedln" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "Myspace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" +#: ../../include/text.php:1006 +msgid "slapped" msgstr "" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" +#: ../../include/text.php:1007 +msgid "finger" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../include/text.php:1007 +msgid "fingered" +msgstr "" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "jaar" +#: ../../include/text.php:1008 +msgid "rebuff" +msgstr "" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "maand" +#: ../../include/text.php:1008 +msgid "rebuffed" +msgstr "" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "dag" +#: ../../include/text.php:1022 +msgid "happy" +msgstr "Blij" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nooit" +#: ../../include/text.php:1023 +msgid "sad" +msgstr "Verdrietig" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../include/text.php:1024 +msgid "mellow" +msgstr "" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "jaren" +#: ../../include/text.php:1025 +msgid "tired" +msgstr "vermoeid" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "maanden" +#: ../../include/text.php:1026 +msgid "perky" +msgstr "" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "week" +#: ../../include/text.php:1027 +msgid "angry" +msgstr "boos" -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "weken" +#: ../../include/text.php:1028 +msgid "stupified" +msgstr "" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "dagen" +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "onzeker" -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "uur" +#: ../../include/text.php:1030 +msgid "interested" +msgstr "Geïnteresseerd" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "uren" +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "bitter" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuut" +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "vrolijk" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuten" +#: ../../include/text.php:1033 +msgid "alive" +msgstr "levend" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "seconde" +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "verveeld" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondes" +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "" -#: ../../include/datetime.php:300 +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "gefrustreerd" + +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1041 +msgid "surprised" +msgstr "verbaasd" + +#: ../../include/text.php:1209 +msgid "Monday" +msgstr "Maandag" + +#: ../../include/text.php:1209 +msgid "Tuesday" +msgstr "Dinsdag" + +#: ../../include/text.php:1209 +msgid "Wednesday" +msgstr "Woensdag" + +#: ../../include/text.php:1209 +msgid "Thursday" +msgstr "Donderdag" + +#: ../../include/text.php:1209 +msgid "Friday" +msgstr "Vrijdag" + +#: ../../include/text.php:1209 +msgid "Saturday" +msgstr "Zaterdag" + +#: ../../include/text.php:1209 +msgid "Sunday" +msgstr "Zondag" + +#: ../../include/text.php:1213 +msgid "January" +msgstr "Januari" + +#: ../../include/text.php:1213 +msgid "February" +msgstr "Februari" + +#: ../../include/text.php:1213 +msgid "March" +msgstr "Maart" + +#: ../../include/text.php:1213 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1213 +msgid "May" +msgstr "Mei" + +#: ../../include/text.php:1213 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1213 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1213 +msgid "August" +msgstr "Augustus" + +#: ../../include/text.php:1213 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1213 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1213 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1213 +msgid "December" +msgstr "December" + +#: ../../include/text.php:1432 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1456 ../../include/text.php:1468 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1701 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1957 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:1960 +msgid "post" +msgstr "bericht" + +#: ../../include/text.php:2128 +msgid "Item filed" +msgstr "Item bewaard" + +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "" + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Er is geen status met dit kenmerk" + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "" + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/items.php:1981 ../../include/datetime.php:472 #, php-format msgid "%s's birthday" msgstr "%s's verjaardag" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/items.php:1982 ../../include/datetime.php:473 #, php-format msgid "Happy Birthday %s" msgstr "Gefeliciteerd %s" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "RTF-tekstverwerker" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2269 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/items.php:3539 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " msgstr "" -#: ../../include/items.php:3539 +#: ../../include/items.php:3710 msgid "You have a new follower at " msgstr "Je hebt een nieuwe volger op " -#: ../../include/items.php:4062 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" msgstr "Wil je echt dit item verwijderen?" -#: ../../include/items.php:4285 +#: ../../include/items.php:4460 msgid "Archives" msgstr "Archieven" -#: ../../include/oembed.php:140 -msgid "Embedded content" -msgstr "Ingebedde inhoud" +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(geen onderwerp)" -#: ../../include/oembed.php:149 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "geen reactie" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "volgend" #: ../../include/security.php:22 msgid "Welcome " @@ -7215,6 +6397,11 @@ msgstr "Ontrouw" msgid "Sex Addict" msgstr "Seksverslaafd" +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "Vrienden" + #: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Vriendschap plus" @@ -7299,6 +6486,787 @@ msgstr "Kan me niet schelen" msgid "Ask me" msgstr "Vraag me" +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Gebruiker '%s' bestaat al op deze server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "bericht/item" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markeerde %2$s's %3$s als favoriet" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "verwijder" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Bekijk status" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Bewerk contact" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "%s vind dit leuk." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vind dit niet leuk." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "%s vind dit leuk." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "%s vind dit niet leuk." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Label:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "rechten" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Privé verzending" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Nieuw Contact toevoegen" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Voeg een webadres of -locatie in:" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Zoek mensen" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Willekeurig Profiel" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Netwerken" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Alle netwerken" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Maak een accoount" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Gids" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Personengids" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Inbox" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Beheren" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Account instellingen" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigatie" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Sitemap" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Onbekend | Niet " + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Onmiddellijk blokkeren" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekend, maar geen mening" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, waarschijnlijk onschadelijk" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gerenommeerd, heeft mijn vertrouwen" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "wekelijks" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "maandelijks" + +#: ../../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 "Linkedln" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "Myspace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Bedankt" + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s Beheerder" + +#: ../../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:Notificatie] Nieuw bericht ontvangen op %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "een prive bericht" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." + +#: ../../include/enotify.php:91 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" + +#: ../../include/enotify.php:98 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" + +#: ../../include/enotify.php:106 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" + +#: ../../include/enotify.php:116 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:117 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." + +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." + +#: ../../include/enotify.php:127 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:142 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificatie] %s heeft jou genoemd" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s heeft jou in %2$s genoemd" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: ../../include/enotify.php:169 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" + +#: ../../include/enotify.php:170 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s heeft jou aangestoten op %2$s" + +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s heeft jouw bericht gelabeld in %2$s" + +#: ../../include/enotify.php:188 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" + +#: ../../include/enotify.php:201 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." + +#: ../../include/enotify.php:204 ../../include/enotify.php:222 +#, php-format +msgid "You may visit their profile at %s" +msgstr "U kunt hun profiel bezoeken op %s" + +#: ../../include/enotify.php:206 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bezoek %s om het verzoek goed of af te keuren." + +#: ../../include/enotify.php:213 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:214 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:215 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:220 +msgid "Name:" +msgstr "Naam:" + +#: ../../include/enotify.php:221 +msgid "Photo:" +msgstr "Foto: " + +#: ../../include/enotify.php:224 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Naam te kort" + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: ../../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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Iedereen" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "verander" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Verander groep" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "" + #: ../../include/Contact.php:115 msgid "stopped following" msgstr "" @@ -7307,7 +7275,79 @@ msgstr "" msgid "Drop Contact" msgstr "" -#: ../../include/dba.php:44 +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondes" + +#: ../../include/datetime.php:300 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/network.php:886 +msgid "view full size" +msgstr "Volledig formaat" diff --git a/view/nl/strings.php b/view/nl/strings.php index 2b75789853..4f6e5476b0 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -52,346 +52,132 @@ $a->strings["Image"] = "Afbeelding"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; $a->strings["Preview"] = "Voorvertoning"; -$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; $a->strings["Not Found"] = "Niet gevonden"; $a->strings["Page not found."] = "Pagina niet gevonden"; $a->strings["Permission denied"] = "Toegang geweigerd"; $a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["toggle mobile"] = "mobiel thema omwisselen"; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["Your events"] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; -$a->strings["Community"] = "Gemeenschap"; -$a->strings["don't show"] = "Niet tonen"; -$a->strings["show"] = "tonen"; -$a->strings["Theme settings"] = "Thema instellingen"; -$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Contacts"] = "Contacten"; -$a->strings["Your contacts"] = "Jouw contacten"; -$a->strings["Community Pages"] = "Gemeenschapspagina's"; -$a->strings["Community Profiles"] = "Gemeenschapsprofielen"; -$a->strings["Last users"] = "Laatste gebruikers"; -$a->strings["Last likes"] = "Recent leuk gevonden"; -$a->strings["event"] = "gebeurtenis"; -$a->strings["status"] = "Status"; -$a->strings["photo"] = "Foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk"; -$a->strings["Last photos"] = "Laatste foto's"; -$a->strings["Contact Photos"] = "Contactfoto's"; -$a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Find Friends"] = "Zoek vrienden"; -$a->strings["Local Directory"] = "Lokale gids"; -$a->strings["Global Directory"] = "Globale gids"; -$a->strings["Similar Interests"] = "Dezelfde interesses"; -$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Earth Layers"] = "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"] = "Diensten verbinden"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set color scheme"] = "Stel kleurenschema in"; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Alignment"] = "Uitlijning"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Gecentreerd"; -$a->strings["Color scheme"] = "Kleurschema"; -$a->strings["Posts font size"] = "Lettergrootte berichten"; -$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; -$a->strings["Set colour scheme"] = "Stel kleurschema in"; -$a->strings["default"] = "standaard"; -$a->strings["Background Image"] = ""; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; -$a->strings["Background Color"] = ""; -$a->strings["HEX value for the background color. Don't include the #"] = ""; -$a->strings["font size"] = ""; -$a->strings["base font size for your interface"] = ""; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set theme width"] = "Stel breedte van het thema in"; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["show fewer"] = "Minder tonen"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["Update Error at %s"] = "Wijzigingsfout op %s"; -$a->strings["Create a New Account"] = "Nieuw account aanmaken"; -$a->strings["Register"] = "Registreer"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["Login"] = "Login"; -$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthou me"; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; -$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; -$a->strings["terms of service"] = "servicevoorwaarden"; -$a->strings["Website Privacy Policy"] = "Privacybeleid website"; -$a->strings["privacy policy"] = "privacybeleid"; -$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Change profile photo"] = "Profiel foto wijzigen"; -$a->strings["Create New Profile"] = "Maak nieuw profiel"; -$a->strings["Profile Image"] = "Profiel afbeelding"; -$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; -$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Tijdlijn:"; -$a->strings["Homepage:"] = "Jouw tijdlijn:"; -$a->strings["g A l F d"] = "G l j F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen beschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile Details"] = "Profiel Details"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Videos"] = "Video's"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Stel vrienden voor"; +$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; +$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; +$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", + 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", +); +$a->strings["Introduction complete."] = "Verzoek voltooid."; +$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; +$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; +$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; +$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; +$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; +$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; +$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; +$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; +$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; +$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; +$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; +$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; +$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; +$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; +$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; +$a->strings["Hide this contact"] = "Verberg dit contact"; +$a->strings["Welcome home %s."] = "Welkom terug %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; +$a->strings["Confirm"] = "Bevestig"; +$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; $a->strings["Public access denied."] = "Niet vrij toegankelijk"; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Item has been removed."] = "Item is verwijderd."; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; -$a->strings["running at web location"] = "draaiend op web-adres"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; -$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$a->strings["Registration details for %s"] = "Registratie details voor %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; -$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht."; -$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; -$a->strings["Registration request at %s"] = "Registratieverzoek op %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Je registratie wacht op goedkeuring van de beheerder."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; -$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; -$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Sluit aan als e-mail volger (Binnenkort)"; +$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."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; +$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["Does %s know you?"] = "Kent %s jou?"; $a->strings["Yes"] = "Ja"; $a->strings["No"] = "Nee"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Import"] = "Importeren"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["Profile not found."] = "Profiel niet gevonden"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; -$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; -$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; -$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; -$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; -$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; -$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; -$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; -$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; -$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; -$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = "Log in om verder te gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; -$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; -$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; -$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; -$a->strings["click here to login"] = "klik hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; -$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; -$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; -$a->strings["Reset"] = "Opnieuw"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; -$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; -$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; -$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; -$a->strings["Message sent."] = "Bericht verzonden."; -$a->strings["No recipient."] = "Geen ontvanger."; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Send Private Message"] = "Verstuur privébericht"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["Insert web link"] = "Voeg een webadres in"; -$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; -$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; -$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; -$a->strings["Getting Started"] = "Aan de slag"; -$a->strings["Friendica Walk-Through"] = "Doorloop 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."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; -$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; -$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."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale 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."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$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."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; -$a->strings["Edit Your Profile"] = "Bewerk je profiel"; -$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."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; -$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; -$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; -$a->strings["Connecting"] = "Verbinding aan het maken"; -$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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; -$a->strings["Importing Emails"] = "E-mails importeren"; -$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"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; -$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; -$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."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; -$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; -$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; -$a->strings["Finding New People"] = "Nieuwe mensen vinden"; -$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; -$a->strings["Groups"] = "Groepen"; -$a->strings["Group Your Contacts"] = "Groepeer je contacten"; -$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; -$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; -$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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; -$a->strings["Getting Help"] = "Hulp krijgen"; -$a->strings["Go to the Help Section"] = "Ga naar de help"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; -$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; +$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; +$a->strings["Submit Request"] = "Aanvraag indienen"; $a->strings["Cancel"] = "Annuleren"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["add"] = "toevoegen"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; +$a->strings["Invalid request identifier."] = "Ongeldige request identifier."; +$a->strings["Discard"] = "Verwerpen"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["System"] = "Systeem"; +$a->strings["Network"] = "Netwerk"; $a->strings["Personal"] = "Persoonlijk"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Shared Links"] = "Gedeelde links"; -$a->strings["Interesting Links"] = "Interessante links"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", - 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; -$a->strings["No such group"] = "Zo'n groep bestaat niet"; -$a->strings["Group is empty"] = "De groep is leeg"; -$a->strings["Group: "] = "Groep:"; -$a->strings["Contact: "] = "Contact: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; -$a->strings["Invalid contact."] = "Ongeldig contact."; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; -$a->strings["Could not create table."] = "Kon tabel niet aanmaken."; -$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; -$a->strings["System check"] = "Systeemcontrole"; -$a->strings["Next"] = "Volgende"; -$a->strings["Check again"] = "Controleer opnieuw"; -$a->strings["Database connection"] = "Verbinding met database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."; -$a->strings["Database Server Name"] = "Servernaam database"; -$a->strings["Database Login Name"] = "Gebruikersnaam database"; -$a->strings["Database Login Password"] = "Wachtwoord database"; -$a->strings["Database Name"] = "Naam database"; -$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; -$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; -$a->strings["Site settings"] = "Website-instellingen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; -$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'"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'"; -$a->strings["PHP executable path"] = "PATH van het PHP commando"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."; -$a->strings["Command line PHP"] = "PHP-opdrachtregel"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = "Gevonden PHP versie:"; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."; -$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken."; -$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"] = ""; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."; -$a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli PHP module"] = "mysqli PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."; -$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."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."; -$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."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."; -$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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar"; -$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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; -$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; -$a->strings["

What next

"] = "

Wat nu

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; -$a->strings["Theme settings updated."] = "Thema instellingen aangepast."; +$a->strings["Home"] = "Tijdlijn"; +$a->strings["Introductions"] = "Verzoeken"; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; +$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; +$a->strings["Notification type: "] = "Notificatiesoort:"; +$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; +$a->strings["suggested by %s"] = "Voorgesteld door %s"; +$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; +$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend"; +$a->strings["if applicable"] = "Indien toepasbaar"; +$a->strings["Approve"] = "Goedkeuren"; +$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:"; +$a->strings["yes"] = "Ja"; +$a->strings["no"] = "Nee"; +$a->strings["Approve as: "] = "Goedkeuren als:"; +$a->strings["Friend"] = "Vriend"; +$a->strings["Sharer"] = "Deler"; +$a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; +$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; +$a->strings["New Follower"] = "Nieuwe Volger"; +$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; +$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; +$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; +$a->strings["%s created a new post"] = "%s schreef een nieuw bericht"; +$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s"; +$a->strings["No more network notifications."] = "Geen netwerknotificaties meer"; +$a->strings["Network Notifications"] = "Netwerknotificaties"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer"; +$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; +$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; +$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; +$a->strings["Login failed."] = "Login mislukt."; +$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; +$a->strings["Source input: "] = "Bron ingave:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Theme settings updated."] = "Thema-instellingen aangepast."; $a->strings["Site"] = "Website"; $a->strings["Users"] = "Gebruiker"; $a->strings["Plugins"] = "Plugins"; @@ -401,6 +187,7 @@ $a->strings["Logs"] = "Logs"; $a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plugin Functies"; $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; +$a->strings["Item not found."] = "Item niet gevonden."; $a->strings["Normal Account"] = "Normale Account"; $a->strings["Soapbox Account"] = "Zeepkist Account"; $a->strings["Community/Celebrity Account"] = "Gemeenschap/Beroemdheid Account"; @@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "Site instellingen gewijzigd."; $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["Never"] = "Nooit"; +$a->strings["At post arrival"] = ""; $a->strings["Frequently"] = "Frequent"; $a->strings["Hourly"] = "elk uur"; $a->strings["Twice daily"] = "Twee keer per dag"; @@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"; $a->strings["Save Settings"] = ""; +$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Advanced"] = "Geavanceerd"; @@ -478,7 +267,7 @@ $a->strings["URL to update the global directory. If this is not set, the global $a->strings["Allow threaded items"] = "Sta threads in conversaties toe"; $a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe."; $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."; $a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties"; $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."; $a->strings["Disallow public access to addons listed in the apps menu."] = ""; @@ -498,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere ui $a->strings["Show Community Page"] = "Toon Gemeenschapspagina"; $a->strings["Display a Community page showing all recent public postings on this site."] = "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont."; $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning"; -$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."] = "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden."; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; $a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning"; @@ -538,6 +327,7 @@ $a->strings["Failed Updates"] = "Misluke wijzigingen"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."; $a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)"; $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren"; +$a->strings["Registration details for %s"] = "Registratie details voor %s"; $a->strings["Registration successful. Email send to user"] = ""; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s gebruiker geblokkeerd/niet geblokkeerd", @@ -558,7 +348,6 @@ $a->strings["Request date"] = "Registratiedatum"; $a->strings["Name"] = "Naam"; $a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Geen registraties."; -$a->strings["Approve"] = "Goedkeuren"; $a->strings["Deny"] = "Weiger"; $a->strings["Block"] = "Blokkeren"; $a->strings["Unblock"] = "Blokkering opheffen"; @@ -581,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld."; $a->strings["Disable"] = "Uitschakelen"; $a->strings["Enable"] = "Inschakelen"; $a->strings["Toggle"] = "Schakelaar"; +$a->strings["Settings"] = "Instellingen"; $a->strings["Author: "] = "Auteur:"; $a->strings["Maintainer: "] = "Onderhoud:"; $a->strings["No themes found."] = "Geen thema's gevonden."; @@ -599,11 +389,36 @@ $a->strings["FTP Host"] = "FTP Server"; $a->strings["FTP Path"] = "FTP Pad"; $a->strings["FTP User"] = "FTP Gebruiker"; $a->strings["FTP Password"] = "FTP wachtwoord"; -$a->strings["Search"] = "Zoeken"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; -$a->strings["link"] = "link"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; +$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; +$a->strings["Message sent."] = "Bericht verzonden."; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Conversation removed."] = "Gesprek verwijderd."; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Send Private Message"] = "Verstuur privébericht"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d bericht", + 1 => "%d berichten", +); +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; +$a->strings["Send Reply"] = "Verstuur Antwoord"; $a->strings["Item not found"] = "Item niet gevonden"; $a->strings["Edit post"] = "Bericht bewerken"; $a->strings["upload photo"] = "Foto uploaden"; @@ -624,95 +439,169 @@ $a->strings["Public post"] = "Openbare post"; $a->strings["Set title"] = "Titel plaatsen"; $a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["Item not available."] = "Item niet beschikbaar"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Please login."] = "Log a.u.b. in."; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Finding: "] = "Gevonden:"; -$a->strings["Site Directory"] = "Websitegids"; -$a->strings["Find"] = "Zoek"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["About:"] = "Over:"; -$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; -$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; -$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; -$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["Account Nickname"] = "Bijnaam account"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; -$a->strings["Account URL"] = "URL account"; -$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; -$a->strings["Friend Confirm URL"] = ""; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = "URL poll/feed"; -$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Move account"] = "Account verplaatsen"; -$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; -$a->strings["Account file"] = "Account bestand"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Profile not found."] = "Profiel niet gevonden"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; +$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; +$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; +$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; +$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; +$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; +$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; +$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; +$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; +$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; +$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["link to source"] = "Verwijzing naar bron"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["hour:minute"] = "uur:minuut"; +$a->strings["Event details"] = "Gebeurtenis details"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist."; +$a->strings["Event Starts:"] = "Gebeurtenis begint:"; +$a->strings["Required"] = "Vereist"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; +$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:"; +$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker"; +$a->strings["Description:"] = "Beschrijving:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Welcome to %s"] = "Welkom op %s"; $a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; $a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["Save"] = "Bewaren"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; +$a->strings["No recipient."] = "Geen ontvanger."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; +$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; +$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; +$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; +$a->strings["running at web location"] = "draaiend op web-adres"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; +$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; +$a->strings["Remove My Account"] = "Verwijder mijn account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; +$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Wall Photos"] = ""; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = "Log in om verder te gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Contact Photos"] = "Contactfoto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["a photo"] = "een foto"; +$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["Public Photo"] = "Publieke foto"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Show Newest First"] = "Toon niewste eerst"; +$a->strings["Show Oldest First"] = "Toon oudste eerst"; +$a->strings["View Photo"] = "Bekijk foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; +$a->strings["Photo not available"] = "Foto is niet beschikbaar"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Onderschrift"; +$a->strings["Add a Tag"] = "Een label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Share"] = "Delen"; +$a->strings["View Album"] = "Album bekijken"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; +$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht."; +$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; +$a->strings["Registration request at %s"] = "Registratieverzoek op %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; +$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; +$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Register"] = "Registreer"; +$a->strings["Import"] = "Importeren"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; +$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; +$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; +$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; +$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; +$a->strings["click here to login"] = "klik hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; +$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; +$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; +$a->strings["Reset"] = "Opnieuw"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; $a->strings["Help:"] = "Help:"; $a->strings["Help"] = "Help"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; -$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", - 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", -); -$a->strings["Introduction complete."] = "Verzoek voltooid."; -$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; -$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; -$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; -$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; -$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; -$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; -$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; -$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; -$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; -$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; -$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; -$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; -$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; -$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; -$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log a.u.b. in met dit profiel."; -$a->strings["Hide this contact"] = "Verberg dit contact"; -$a->strings["Welcome home %s."] = "Welkom terug %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; -$a->strings["Confirm"] = "Bevestig"; -$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Sluit aan als e-mail volger (Binnenkort)"; -$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."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; -$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk."; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; -$a->strings["View in context"] = "In context bekijken"; $a->strings["%d contact edited."] = array( 0 => "", 1 => "", @@ -743,7 +632,6 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Alle contacten zien"; $a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; $a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Ignore"] = "Negeren"; $a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; $a->strings["Unarchive"] = "Archiveer niet meer"; $a->strings["Archive"] = "Archiveer"; @@ -756,7 +644,6 @@ $a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; $a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; $a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; -$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; $a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; $a->strings["Ignore contact"] = "Negeer contact"; $a->strings["Repair URL settings"] = "Repareer URL-instellingen"; @@ -767,8 +654,10 @@ $a->strings["Update public posts"] = "Openbare posts aanpassen"; $a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; $a->strings["Currently ignored"] = "Op dit moment genegeerd"; $a->strings["Currently archived"] = "Op dit moment gearchiveerd"; -$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; $a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Fetch further information for feeds"] = ""; $a->strings["Suggestions"] = "Voorstellen"; $a->strings["Suggest potential friends"] = "Stel vrienden voor"; $a->strings["All Contacts"] = "Alle Contacten"; @@ -786,15 +675,94 @@ $a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; $a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; $a->strings["is a fan of yours"] = "Is een fan van jou"; $a->strings["you are a fan of"] = "Jij bent een fan van"; -$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["Contacts"] = "Contacten"; $a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Finding: "] = "Gevonden:"; +$a->strings["Find"] = "Zoek"; $a->strings["Update"] = "Wijzigen"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Account settings"] = "Account instellingen"; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["Contact added"] = "Contact toegevoegd"; +$a->strings["Move account"] = "Account verplaatsen"; +$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; +$a->strings["Account file"] = "Account bestand"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; +$a->strings["Friends of %s"] = "Vrienden van %s"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Tag removed"] = "Label verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder label van item"; +$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; +$a->strings["Remove"] = "Verwijderen"; +$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; +$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; +$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; +$a->strings["Getting Started"] = "Aan de slag"; +$a->strings["Friendica Walk-Through"] = "Doorloop 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."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; +$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; +$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."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale 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."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; +$a->strings["Profile"] = "Profiel"; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$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."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; +$a->strings["Edit Your Profile"] = "Bewerk je profiel"; +$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."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; +$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; +$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; +$a->strings["Connecting"] = "Verbinding aan het maken"; +$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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; +$a->strings["Importing Emails"] = "E-mails importeren"; +$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"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; +$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; +$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."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; +$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; +$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; +$a->strings["Finding New People"] = "Nieuwe mensen vinden"; +$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; +$a->strings["Groups"] = "Groepen"; +$a->strings["Group Your Contacts"] = "Groepeer je contacten"; +$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; +$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; +$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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; +$a->strings["Getting Help"] = "Hulp krijgen"; +$a->strings["Go to the Help Section"] = "Ga naar de help"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Search"] = "Zoeken"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; +$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; +$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; +$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; +$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; +$a->strings["Send invitations"] = "Verstuur uitnodigingen"; +$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; $a->strings["Additional features"] = "Extra functies"; -$a->strings["Display settings"] = "Scherminstellingen"; -$a->strings["Connector settings"] = "Connector instellingen"; -$a->strings["Plugin settings"] = "Plugin instellingen"; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Delegations"] = ""; $a->strings["Connected apps"] = "Verbonden applicaties"; $a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; $a->strings["Remove account"] = "Account verwijderen"; @@ -808,7 +776,7 @@ $a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wach $a->strings["Wrong password."] = "Verkeerd wachtwoord."; $a->strings["Password changed."] = "Wachtwoord gewijzigd."; $a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; -$a->strings[" Please use a shorter name."] = "Gebruik a.u.b. een kortere naam."; +$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; $a->strings[" Name too short."] = "Naam te kort."; $a->strings["Wrong Password"] = "Verkeerd wachtwoord"; $a->strings[" Not valid email."] = "Geen geldig e-mailadres."; @@ -836,7 +804,6 @@ $a->strings["enabled"] = "ingeschakeld"; $a->strings["disabled"] = "uitgeschakeld"; $a->strings["StatusNet"] = "StatusNet"; $a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; -$a->strings["Connector Settings"] = "Connector Instellingen"; $a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; $a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; @@ -861,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Aantal items te tonen per $a->strings["Maximum of 100 items"] = "Maximum 100 items"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; $a->strings["Don't show emoticons"] = "Emoticons niet tonen"; +$a->strings["Don't show notices"] = ""; $a->strings["Infinite scroll"] = ""; +$a->strings["User Types"] = ""; +$a->strings["Community Types"] = ""; $a->strings["Normal Account Page"] = "Normale account pagina"; $a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; $a->strings["Soapbox Page"] = "Zeepkist pagina"; @@ -913,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoe $a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; $a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; $a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; $a->strings["Default Private Post"] = "Standaard Privé Post"; $a->strings["Default Public Post"] = "Standaard Publieke Post"; $a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; @@ -927,17 +895,20 @@ $a->strings["making an interesting profile change"] = "Een interess $a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; $a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; $a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op de muur van je profiel schrijft"; -$a->strings["Someone writes a followup comment"] = "Iemand een commentaar schrijft"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; $a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; $a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; -$a->strings["You are tagged in a post"] = "Je bent in een bericht genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; $a->strings["Advanced Account/Page Type Settings"] = ""; $a->strings["Change the behaviour of this account for special situations"] = ""; $a->strings["Relocate"] = ""; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; $a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Item has been removed."] = "Item is verwijderd."; +$a->strings["People Search"] = "Mensen Zoeken"; +$a->strings["No matches"] = "Geen resultaten"; $a->strings["Profile deleted."] = "Profiel verwijderd"; $a->strings["Profile-"] = "Profiel-"; $a->strings["New profile created."] = "Nieuw profiel aangemaakt."; @@ -963,8 +934,8 @@ $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2 $a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; -$a->strings["Edit Profile Details"] = "Profiel details bewerken"; -$a->strings["Change Profile Photo"] = "Profiel foto wijzigen"; +$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; $a->strings["View this profile"] = "Dit profiel bekijken"; $a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; $a->strings["Clone this profile"] = "Dit profiel klonen"; @@ -1006,57 +977,79 @@ $a->strings["Love/romance"] = "Liefde/romance"; $a->strings["Work/employment"] = "Werk"; $a->strings["School/education"] = "School/opleiding"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
Het kan zichtbaar zijn voor iedereen op het internet."; +$a->strings["Age: "] = "Leeftijd:"; $a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; -$a->strings["Group created."] = "Groep aangemaakt."; -$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; -$a->strings["Group not found."] = "Groep niet gevonden."; -$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Group Editor"] = "Groepsbewerker"; -$a->strings["Members"] = "Leden"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; -$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; -$a->strings["Source input: "] = "Bron ingave:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Change profile photo"] = "Profiel foto wijzigen"; +$a->strings["Create New Profile"] = "Maak nieuw profiel"; +$a->strings["Profile Image"] = "Profiel afbeelding"; +$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; +$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; +$a->strings["link"] = "link"; +$a->strings["Export account"] = "Account exporteren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; +$a->strings["Export all"] = "Alles exporteren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; +$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; +$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk"; +$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; +$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; +$a->strings["{0} posted"] = "{0} plaatste"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; $a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Contact added"] = "Contact toegevoegd"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; -$a->strings["New Message"] = "Nieuw Bericht"; -$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Conversation removed."] = "Gesprek verwijderd."; -$a->strings["No messages."] = "Geen berichten."; -$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d bericht", - 1 => "%d berichten", -); -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; -$a->strings["Send Reply"] = "Verstuur Antwoord"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk"; -$a->strings["Post successful."] = "Bericht succesvol geplaatst."; +$a->strings["Community"] = "Gemeenschap"; +$a->strings["Save to Folder:"] = "Bewaren in map:"; +$a->strings["- select -"] = "- Kies -"; +$a->strings["Save"] = "Bewaren"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; +$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; +$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; +$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; +$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; +$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; +$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; +$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen gegevens."; +$a->strings["No contacts."] = "Geen contacten."; +$a->strings["View Contacts"] = "Bekijk contacten"; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["Global Directory"] = "Globale gids"; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Site Directory"] = "Websitegids"; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Tijdlijn:"; +$a->strings["Homepage:"] = "Jouw tijdlijn:"; +$a->strings["About:"] = "Over:"; +$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Tijdsconversie"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; @@ -1064,82 +1057,7 @@ $a->strings["UTC time: %s"] = "UTC tijd: %s"; $a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; $a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; $a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["- select -"] = "- Kies -"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; -$a->strings["No contacts."] = "Geen contacten."; -$a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["People Search"] = "Mensen Zoeken"; -$a->strings["No matches"] = "Geen resultaten"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["a photo"] = "een foto"; -$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; -$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; -$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; -$a->strings["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["Public Photo"] = "Publieke foto"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Show Newest First"] = "Toon niewste eerst"; -$a->strings["Show Oldest First"] = "Toon oudste eerst"; -$a->strings["View Photo"] = "Bekijk foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; -$a->strings["Photo not available"] = "Foto is niet beschikbaar"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Onderschrift"; -$a->strings["Add a Tag"] = "Een label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Share"] = "Delen"; -$a->strings["View Album"] = "Album bekijken"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["No videos selected"] = "Geen video's geselecteerd"; -$a->strings["View Video"] = "Bekijk Video"; -$a->strings["Recent Videos"] = "Recente video's"; -$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Dit bericht privé maken"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; -$a->strings["Export account"] = "Account exporteren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; -$a->strings["Export all"] = "Alles exporteren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; -$a->strings["Wall Photos"] = ""; +$a->strings["Post successful."] = "Bericht succesvol geplaatst."; $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; @@ -1153,51 +1071,89 @@ $a->strings["Crop Image"] = "Afbeelding bijsnijden"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; $a->strings["Done Editing"] = "Wijzigingen compleet"; $a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; -$a->strings["Applications"] = "Toepassingen"; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; +$a->strings["Could not create table."] = "Kon tabel niet aanmaken."; +$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; +$a->strings["System check"] = "Systeemcontrole"; +$a->strings["Check again"] = "Controleer opnieuw"; +$a->strings["Database connection"] = "Verbinding met database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."; +$a->strings["Database Server Name"] = "Servernaam database"; +$a->strings["Database Login Name"] = "Gebruikersnaam database"; +$a->strings["Database Login Password"] = "Wachtwoord database"; +$a->strings["Database Name"] = "Naam database"; +$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; +$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; +$a->strings["Site settings"] = "Website-instellingen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; +$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'"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'"; +$a->strings["PHP executable path"] = "PATH van het PHP commando"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."; +$a->strings["Command line PHP"] = "PHP-opdrachtregel"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = "Gevonden PHP versie:"; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."; +$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken."; +$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"] = ""; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."; +$a->strings["Generate encryption keys"] = ""; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli PHP module"] = "mysqli PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."; +$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."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."; +$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."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."; +$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."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar"; +$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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; +$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; +$a->strings["

What next

"] = "

Wat nu

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; +$a->strings["Group created."] = "Groep aangemaakt."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Group removed."] = "Groep verwijderd."; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Group Editor"] = "Groepsbewerker"; +$a->strings["Members"] = "Leden"; +$a->strings["No such group"] = "Zo'n groep bestaat niet"; +$a->strings["Group is empty"] = "De groep is leeg"; +$a->strings["Group: "] = "Groep:"; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; $a->strings["Profile Match"] = "Profielmatch"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; $a->strings["is interested in:"] = "Is geïnteresseerd in:"; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder label van item"; -$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; -$a->strings["Previous"] = "Vorige"; -$a->strings["hour:minute"] = "uur:minuut"; -$a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist."; -$a->strings["Event Starts:"] = "Gebeurtenis begint:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; -$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:"; -$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker"; -$a->strings["Description:"] = "Beschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; -$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; -$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; -$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; -$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen gegevens."; -$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; -$a->strings["Files"] = "Bestanden"; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["Remove My Account"] = "Verwijder mijn account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; -$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; -$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Stel vrienden voor"; -$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; $a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; $a->strings["Empty post discarded."] = "Lege post weggegooid."; $a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; @@ -1205,170 +1161,187 @@ $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"] = "Je kunt ze online bezoeken op %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; $a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} sent you a message"] = "{0} stuurde jou een berichtje"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; -$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk"; -$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; -$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; -$a->strings["{0} posted"] = "{0} plaatste"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; -$a->strings["Login failed."] = "Login mislukt."; -$a->strings["Invalid request identifier."] = "Ongeldige request identifier."; -$a->strings["Discard"] = "Verwerpen"; -$a->strings["System"] = "Systeem"; -$a->strings["Network"] = "Netwerk"; -$a->strings["Introductions"] = "Verzoeken"; -$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; -$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; -$a->strings["Notification type: "] = "Notificatiesoort:"; -$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; -$a->strings["suggested by %s"] = "Voorgesteld door %s"; -$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend"; -$a->strings["if applicable"] = "Indien toepasbaar"; -$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:"; -$a->strings["yes"] = "Ja"; -$a->strings["no"] = "Nee"; -$a->strings["Approve as: "] = "Goedkeuren als:"; -$a->strings["Friend"] = "Vriend"; -$a->strings["Sharer"] = "Deler"; -$a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; -$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; -$a->strings["New Follower"] = "Nieuwe Volger"; -$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; -$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; -$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; -$a->strings["%s created a new post"] = "%s schreef een nieuw bericht"; -$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s"; -$a->strings["No more network notifications."] = "Geen netwerknotificaties meer"; -$a->strings["Network Notifications"] = "Netwerknotificaties"; -$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer"; -$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; -$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; -$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; -$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; -$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; -$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; -$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", +$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["Search Results For:"] = "Zoekresultaten voor:"; +$a->strings["add"] = "toevoegen"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Shared Links"] = "Gedeelde links"; +$a->strings["Interesting Links"] = "Interessante links"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", + 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", ); -$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; -$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; -$a->strings["Send invitations"] = "Verstuur uitnodigingen"; -$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; -$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; -$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["Friends of %s"] = "Vrienden van %s"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; -$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Find People"] = "Zoek mensen"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; -$a->strings["Random Profile"] = "Willekeurig Profiel"; -$a->strings["Networks"] = "Netwerken"; -$a->strings["All Networks"] = "Alle netwerken"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; +$a->strings["Contact: "] = "Contact: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; +$a->strings["Invalid contact."] = "Ongeldig contact."; +$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; +$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; +$a->strings["Account Nickname"] = "Bijnaam account"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; +$a->strings["Account URL"] = "URL account"; +$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; +$a->strings["Friend Confirm URL"] = ""; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = "URL poll/feed"; +$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profiel pagina"; +$a->strings["Your contacts"] = "Jouw contacten"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; +$a->strings["Community Pages"] = "Gemeenschapspagina's"; +$a->strings["Community Profiles"] = "Gemeenschapsprofielen"; +$a->strings["Last users"] = "Laatste gebruikers"; +$a->strings["Last likes"] = "Recent leuk gevonden"; +$a->strings["event"] = "gebeurtenis"; +$a->strings["Last photos"] = "Laatste foto's"; +$a->strings["Find Friends"] = "Zoek vrienden"; +$a->strings["Local Directory"] = "Lokale gids"; +$a->strings["Similar Interests"] = "Dezelfde interesses"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Earth Layers"] = "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"] = "Diensten verbinden"; +$a->strings["don't show"] = "Niet tonen"; +$a->strings["show"] = "tonen"; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; +$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; +$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; +$a->strings["Set color scheme"] = "Stel kleurenschema in"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Set style"] = ""; +$a->strings["Set colour scheme"] = "Stel kleurschema in"; +$a->strings["Alignment"] = "Uitlijning"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Gecentreerd"; +$a->strings["Color scheme"] = "Kleurschema"; +$a->strings["Posts font size"] = "Lettergrootte berichten"; +$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set theme width"] = "Stel breedte van het thema in"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["show fewer"] = "Minder tonen"; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["Update Error at %s"] = "Wijzigingsfout op %s"; +$a->strings["Create a New Account"] = "Nieuw account aanmaken"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["Login"] = "Login"; +$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthou me"; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; +$a->strings["terms of service"] = "servicevoorwaarden"; +$a->strings["Website Privacy Policy"] = "Privacybeleid website"; +$a->strings["privacy policy"] = "privacybeleid"; +$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["Message"] = "Bericht"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["g A l F d"] = "G l j F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen beschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Videos"] = "Video's"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Richtext Editor"] = "RTF-tekstverwerker"; +$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; +$a->strings["Post Preview"] = "Voorvertoning bericht"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; +$a->strings["Search by Date"] = "Zoeken op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; +$a->strings["Group Filter"] = "Groepsfilter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; +$a->strings["Network Filter"] = "Netwerkfilter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Tabs"] = "Netwerktabs"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; +$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; +$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; +$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; +$a->strings["Tagging"] = "Labelen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; $a->strings["Saved Folders"] = "Bewaarde Mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$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["User not found."] = ""; -$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; -$a->strings["view full size"] = "Volledig formaat"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["noreply"] = "geen reactie"; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; -$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Logged out."] = "Uitgelogd."; $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:"] = "De foutboodschap was:"; -$a->strings["Please enter the required information."] = "Vul a.u.b. de vereiste informatie in."; -$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; -$a->strings["Name too short."] = "Naam te kort"; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; -$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; -$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; -$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$a->strings["Friends"] = "Vrienden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; -$a->strings["poked"] = "aangestoten"; -$a->strings["post/item"] = "bericht/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; -$a->strings["remove"] = "verwijder"; -$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["View Status"] = "Bekijk status"; -$a->strings["View Profile"] = "Bekijk profiel"; -$a->strings["View Photos"] = "Bekijk foto's"; -$a->strings["Network Posts"] = "Netwerkberichten"; -$a->strings["Edit Contact"] = "Bewerk contact"; -$a->strings["Send PM"] = "Stuur een privébericht"; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["%s likes this."] = "%s vind dit leuk."; -$a->strings["%s doesn't like this."] = "%s vind dit niet leuk."; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%s like this."] = "%s vind dit leuk."; -$a->strings["%s don't like this."] = "%s vind dit niet leuk."; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Where are you right now?"] = "Waar ben je nu?"; -$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["permissions"] = "rechten"; -$a->strings["Post to Groups"] = "Verzenden naar Groepen"; -$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; -$a->strings["Private post"] = "Privé verzending"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; -$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; -$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact werd niet geïmporteerd", - 1 => "%d contacten werden niet geïmporteerd", -); -$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["Musical interests:"] = "Muzikale interesse "; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; +$a->strings["Love/Romance:"] = "Liefde/romance:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings[" on Last.fm"] = " op Last.fm"; $a->strings["newer"] = "nieuwere berichten"; $a->strings["older"] = "oudere berichten"; $a->strings["prev"] = "vorige"; @@ -1381,6 +1354,7 @@ $a->strings["%d Contact"] = array( 1 => "%d contacten", ); $a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "gepingd"; $a->strings["prod"] = "porren"; @@ -1432,56 +1406,25 @@ $a->strings["November"] = "November"; $a->strings["December"] = "December"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["default"] = "standaard"; $a->strings["Select an alternate language"] = "Kies een andere taal"; $a->strings["activity"] = "activiteit"; $a->strings["post"] = "bericht"; $a->strings["Item filed"] = "Item bewaard"; -$a->strings["Friendica Notification"] = "Friendica Notificatie"; -$a->strings["Thank You,"] = "Bedankt"; -$a->strings["%s Administrator"] = "%s Beheerder"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; -$a->strings["a private message"] = "een prive bericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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 gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; -$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"] = "[Friendica:Notificatie] %s heeft jou genoemd"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; -$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; -$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:"] = "Naam:"; -$a->strings["Photo:"] = "Foto: "; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings[" on Last.fm"] = " op Last.fm"; -$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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Contacts not in any group"] = ""; +$a->strings["User not found."] = ""; +$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; +$a->strings["There is no conversation with this id."] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$a->strings["A new person is sharing with you at "] = ""; +$a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op "; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; +$a->strings["Archives"] = "Archieven"; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["noreply"] = "geen reactie"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; $a->strings["Connect URL missing."] = ""; $a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; @@ -1494,138 +1437,6 @@ $a->strings["The profile address specified belongs to a network which has been d $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; $a->strings["Unable to retrieve contact information."] = ""; $a->strings["following"] = "volgend"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Conversations on this site"] = "Conversaties op deze website"; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; -$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; -$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["See all notifications"] = "Toon alle notificaties"; -$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Verzonden berichten"; -$a->strings["Manage"] = "Beheren"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Delegations"] = ""; -$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["Hobbies/Interests:"] = "Hobby:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["Musical interests:"] = "Muzikale interesse "; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; -$a->strings["Love/Romance:"] = "Liefde/romance:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%s wrote the following post"] = "%s schreef het volgende bericht"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; -$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; -$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; -$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; -$a->strings["Weekly"] = "wekelijks"; -$a->strings["Monthly"] = "maandelijks"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "Linkedln"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "Myspace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Richtext Editor"] = "RTF-tekstverwerker"; -$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; -$a->strings["Post Preview"] = "Voorvertoning bericht"; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; -$a->strings["Search by Date"] = "Zoeken op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; -$a->strings["Group Filter"] = "Groepsfilter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; -$a->strings["Network Filter"] = "Netwerkfilter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Tabs"] = "Netwerktabs"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; -$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; -$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; -$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; -$a->strings["Tagging"] = "Labelen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Sharing notification from Diaspora network"] = ""; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["A new person is sharing with you at "] = ""; -$a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op "; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Embedded content"] = "Ingebedde inhoud"; -$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; $a->strings["Welcome "] = "Welkom"; $a->strings["Please upload a profile photo."] = "Upload een profielfoto."; $a->strings["Welcome back "] = "Welkom terug "; @@ -1666,6 +1477,7 @@ $a->strings["Infatuated"] = ""; $a->strings["Dating"] = "Aan het daten"; $a->strings["Unfaithful"] = "Ontrouw"; $a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends"] = "Vrienden"; $a->strings["Friends/Benefits"] = "Vriendschap plus"; $a->strings["Casual"] = ""; $a->strings["Engaged"] = "Verloofd"; @@ -1687,6 +1499,208 @@ $a->strings["Uncertain"] = "Onzeker"; $a->strings["It's complicated"] = "Het is gecompliceerd"; $a->strings["Don't care"] = "Kan me niet schelen"; $a->strings["Ask me"] = "Vraag me"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; +$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; +$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact werd niet geïmporteerd", + 1 => "%d contacten werden niet geïmporteerd", +); +$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; +$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["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["post/item"] = "bericht/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; +$a->strings["remove"] = "verwijder"; +$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["Edit Contact"] = "Bewerk contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["%s likes this."] = "%s vind dit leuk."; +$a->strings["%s doesn't like this."] = "%s vind dit niet leuk."; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%s like this."] = "%s vind dit leuk."; +$a->strings["%s don't like this."] = "%s vind dit niet leuk."; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Where are you right now?"] = "Waar ben je nu?"; +$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; +$a->strings["Post to Email"] = "Verzenden per e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["permissions"] = "rechten"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; +$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Find People"] = "Zoek mensen"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbind/Volg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; +$a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Networks"] = "Netwerken"; +$a->strings["All Networks"] = "Alle netwerken"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Create an account"] = "Maak een accoount"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; +$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; +$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; +$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; +$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; +$a->strings["See all notifications"] = "Toon alle notificaties"; +$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["Manage"] = "Beheren"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; +$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; +$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; +$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; +$a->strings["Weekly"] = "wekelijks"; +$a->strings["Monthly"] = "maandelijks"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "Linkedln"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "Myspace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["Statusnet"] = ""; +$a->strings["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Thank You,"] = "Bedankt"; +$a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; +$a->strings["a private message"] = "een prive bericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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 gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; +$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"] = "[Friendica:Notificatie] %s heeft jou genoemd"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; +$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; +$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:"] = "Naam:"; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; +$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; +$a->strings["Name too short."] = "Naam te kort"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; +$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; +$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%s wrote the following post"] = ""; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Contacts not in any group"] = ""; $a->strings["stopped following"] = ""; $a->strings["Drop Contact"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["year"] = "jaar"; +$a->strings["month"] = "maand"; +$a->strings["day"] = "dag"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["years"] = "jaren"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["view full size"] = "Volledig formaat"; From e908d88e473de2ea45474e0b58aeef52ba848cbc Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 19 May 2014 08:09:49 +0200 Subject: [PATCH 24/30] PT BR: update to the strings --- view/pt-br/messages.po | 11571 ++++++++++++++++++++------------------- view/pt-br/strings.php | 1891 +++---- 2 files changed, 6785 insertions(+), 6677 deletions(-) diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po index 5d257be0b8..3b06d0d282 100644 --- a/view/pt-br/messages.po +++ b/view/pt-br/messages.po @@ -14,15 +14,15 @@ # Frederico Aracnus , 2011 # FULL NAME , 2011 # Ricardo Pereira , 2012 -# Sérgio F. de Lima , 2013 +# Sérgio F. de Lima , 2013-2014 # Sérgio F. de Lima , 2012 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-17 15:44+0100\n" -"PO-Revision-Date: 2013-11-18 20:14+0000\n" -"Last-Translator: Frederico Aracnus \n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-17 16:26+0000\n" +"Last-Translator: Sérgio F. de Lima \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,25 +34,26 @@ msgstr "" msgid "This entry was edited" msgstr "Essa entrada foi editada" -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1351 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "Mensagem privada" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:659 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "Editar" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:611 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 +#: ../../include/conversation.php:612 msgid "Select" msgstr "Selecionar" -#: ../../object/Item.php:127 ../../mod/admin.php:902 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/settings.php:660 -#: ../../mod/group.php:171 ../../mod/photos.php:1637 -#: ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "Excluir" @@ -80,8 +81,8 @@ msgstr "marcado com estrela" msgid "add tag" msgstr "adicionar etiqueta" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1529 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "Eu gostei disso (alternar)" @@ -89,8 +90,8 @@ msgstr "Eu gostei disso (alternar)" msgid "like" msgstr "gostei" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1530 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "Eu não gostei disso (alternar)" @@ -106,928 +107,1869 @@ msgstr "Compartilhar isso" msgid "share" msgstr "compartilhar" -#: ../../object/Item.php:278 ../../include/conversation.php:663 +#: ../../object/Item.php:298 ../../include/conversation.php:665 msgid "Categories:" msgstr "Categorias:" -#: ../../object/Item.php:279 ../../include/conversation.php:664 +#: ../../object/Item.php:299 ../../include/conversation.php:666 msgid "Filed under:" msgstr "Arquivado sob:" -#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../object/Item.php:307 ../../object/Item.php:308 #: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../include/conversation.php:651 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Ver o perfil de %s @ %s" -#: ../../object/Item.php:289 ../../mod/content.php:853 +#: ../../object/Item.php:309 ../../mod/content.php:853 msgid "to" msgstr "para" -#: ../../object/Item.php:290 +#: ../../object/Item.php:310 msgid "via" msgstr "via" -#: ../../object/Item.php:291 ../../mod/content.php:854 +#: ../../object/Item.php:311 ../../mod/content.php:854 msgid "Wall-to-Wall" msgstr "Mural-para-mural" -#: ../../object/Item.php:292 ../../mod/content.php:855 +#: ../../object/Item.php:312 ../../mod/content.php:855 msgid "via Wall-To-Wall:" msgstr "via Mural-para-mural" -#: ../../object/Item.php:301 ../../mod/content.php:481 -#: ../../mod/content.php:863 ../../include/conversation.php:671 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685 -#: ../../mod/content.php:708 ../../mod/photos.php:1551 -#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "Comentar" -#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1532 -#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Por favor, espere" -#: ../../object/Item.php:343 ../../mod/content.php:602 +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentário" msgstr[1] "%d comentários" -#: ../../object/Item.php:345 ../../object/Item.php:358 -#: ../../mod/content.php:604 ../../include/text.php:1919 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "comentário" msgstr[1] "comentários" -#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "exibir mais" -#: ../../object/Item.php:631 ../../mod/content.php:706 -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "Este(a) é você" -#: ../../object/Item.php:634 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:166 ../../mod/content.php:709 -#: ../../mod/contacts.php:386 ../../mod/profiles.php:630 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "Enviar" -#: ../../object/Item.php:635 ../../mod/content.php:710 +#: ../../object/Item.php:659 ../../mod/content.php:710 msgid "Bold" msgstr "Negrito" -#: ../../object/Item.php:636 ../../mod/content.php:711 +#: ../../object/Item.php:660 ../../mod/content.php:711 msgid "Italic" msgstr "Itálico" -#: ../../object/Item.php:637 ../../mod/content.php:712 +#: ../../object/Item.php:661 ../../mod/content.php:712 msgid "Underline" msgstr "Sublinhado" -#: ../../object/Item.php:638 ../../mod/content.php:713 +#: ../../object/Item.php:662 ../../mod/content.php:713 msgid "Quote" msgstr "Citação" -#: ../../object/Item.php:639 ../../mod/content.php:714 +#: ../../object/Item.php:663 ../../mod/content.php:714 msgid "Code" msgstr "Código" -#: ../../object/Item.php:640 ../../mod/content.php:715 +#: ../../object/Item.php:664 ../../mod/content.php:715 msgid "Image" msgstr "Imagem" -#: ../../object/Item.php:641 ../../mod/content.php:716 +#: ../../object/Item.php:665 ../../mod/content.php:716 msgid "Link" msgstr "Link" -#: ../../object/Item.php:642 ../../mod/content.php:717 +#: ../../object/Item.php:666 ../../mod/content.php:717 msgid "Video" msgstr "Vídeo" -#: ../../object/Item.php:643 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1553 -#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 -#: ../../include/conversation.php:1116 +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "Pré-visualização" -#: ../../index.php:199 ../../mod/apps.php:7 +#: ../../index.php:203 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Você precisa estar logado para usar os addons." -#: ../../index.php:243 ../../mod/help.php:90 +#: ../../index.php:247 ../../mod/help.php:90 msgid "Not Found" msgstr "Não encontrada" -#: ../../index.php:246 ../../mod/help.php:93 +#: ../../index.php:250 ../../mod/help.php:93 msgid "Page not found." msgstr "Página não encontrada." -#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Permissão negada" -#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 -#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:115 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:147 -#: ../../mod/settings.php:96 ../../mod/settings.php:579 -#: ../../mod/settings.php:584 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 -#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4187 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "Permissão negada." -#: ../../index.php:415 +#: ../../index.php:419 msgid "toggle mobile" msgstr "habilita mobile" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Conteúdo incorporado - recarregue a página para ver]" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "O contato não foi encontrado." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "A sugestão de amigo foi enviada" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerir amigos" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugerir um amigo para %s" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Esta apresentação já foi aceita." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "A localização do perfil não é válida ou não contém uma informação de perfil." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida" +msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "A apresentação foi finalizada." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Ocorreu um erro irrecuperável de protocolo." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "O perfil não está disponível." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s recebeu solicitações de conexão em excesso hoje." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "As medidas de proteção contra spam foram ativadas." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Os amigos foram notificados para tentar novamente em 24 horas." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Localizador inválido" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Endereço de e-mail inválido." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Não foi possível encontrar a sua identificação no endereço indicado." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Você já fez a sua apresentação aqui." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Aparentemente você já é amigo de %s." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "URL de perfil inválida." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "URL de perfil não permitida." + +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Não foi possível atualizar o registro do contato." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "A sua apresentação foi enviada." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Por favor, autentique-se para confirmar a apresentação." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "A identidade autenticada está incorreta. Por favor, entre como este perfil." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Ocultar este contato" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bem-vindo(a) à sua página pessoal %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Confirmar" + +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Nome não revelado]" + +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Acesso público negado." + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Conectar como um acompanhante por e-mail (Em breve)" + +#: ../../mod/dfrn_request.php:829 +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 "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Solicitação de amizade/conexão" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Por favor, entre com as informações solicitadas:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "%s conhece você?" + +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 +msgid "Yes" +msgstr "Sim" + +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 +#: ../../mod/profiles.php:615 +msgid "No" +msgstr "Não" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Adicione uma anotação pessoal:" + +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Seu endereço de identificação:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Enviar solicitação" + +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Ver Vídeo" + +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Perfil solicitado não está disponível." + +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "O acesso a este perfil está restrito." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Dicas para novos membros" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identificador de solicitação inválido" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Descartar" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Rede" + +#: ../../mod/notifications.php:88 ../../mod/network.php:365 +msgid "Personal" +msgstr "Pessoal" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 msgid "Home" msgstr "Pessoal" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:143 -msgid "Your posts and conversations" -msgstr "Suas publicações e conversas" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Apresentações" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1963 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" -msgstr "Perfil " +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Mensagens" -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Sua página de perfil" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Exibir solicitações ignoradas" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1970 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "Fotos" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Ocultar solicitações ignoradas" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Suas fotos" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tipo de notificação:" -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1987 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "Eventos" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Sugestão de amigo" -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "Seus eventos" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerido por %s" -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Suas anotações pessoais" +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Ocultar este contato dos outros" -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Suas fotos pessoais" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Publicar a adição de amigo" -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Comunidade" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "se aplicável" -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "don't show" -msgstr "não exibir" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Aprovar" -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 -msgid "show" -msgstr "exibir" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Alega ser conhecido por você: " -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Configurações do tema" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "sim" -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Escolha o tamanho da fonte para publicações e comentários" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "não" -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Escolha comprimento da linha para publicações e comentários" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Aprovar como:" -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Escolha a resolução para a coluna do meio" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Amigo" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607 -#: ../../include/nav.php:171 -msgid "Contacts" -msgstr "Contatos" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Compartilhador" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Seus contatos" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fã/Admirador" -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Páginas da Comunidade" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Solicitação de amizade/conexão" -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Profiles Comunitários" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Novo acompanhante" -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Últimos usuários" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Sem apresentações." -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Últimas gostadas" +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Notificações" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1913 -msgid "event" -msgstr "evento" +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s gostou da publicação de %s" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1874 -msgid "status" -msgstr "status" +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s desgostou da publicação de %s" -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:151 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1915 ../../include/diaspora.php:1874 +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s agora é amigo de %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s criou uma nova publicação" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s comentou uma publicação de %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nenhuma notificação de rede." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notificações de rede" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Não fazer notificações de sistema." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notificações de sistema" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nenhuma notificação pessoal." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notificações pessoais" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Não existe mais nenhuma notificação pessoal." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Notificações pessoais" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 msgid "photo" msgstr "foto" -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1890 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "status" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gosta de %3$s de %2$s" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Últimas fotos" +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s não gosta de %3$s de %2$s" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 -#: ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 -msgid "Contact Photos" -msgstr "Fotos dos contatos" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID." -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:331 -#: ../../include/user.php:338 ../../include/user.php:345 -msgid "Profile Photos" -msgstr "Fotos do perfil" - -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Encontrar amigos" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Diretório Local" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Diretório global" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Interesses Parecidos" - -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Sugestões de amigos" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Convidar amigos" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:999 ../../mod/admin.php:1207 ../../mod/settings.php:79 -#: ../../mod/uexport.php:48 ../../include/nav.php:167 -msgid "Settings" -msgstr "Configurações" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Camadas da Terra" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Configure o zoom para Camadas da Terra" - -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Configure longitude (X) para Camadas da Terra" - -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Configure latitude (Y) para Camadas da Terra" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Ajuda ou @NewHere ?" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Conectar serviços" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostre/esconda caixas na coluna à direita:" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Configure o esquema de cores" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Configure o zoom para Camadas da Terra" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Alinhamento" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Esquerda" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centro" - -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Esquema de cores" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Tamanho da fonte para publicações" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Tamanho da fonte para campos texto" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Configure o esquema de cores" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:243 -#: ../../include/text.php:1649 -msgid "default" -msgstr "padrão" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "Imagem de fundo" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/openid.php:53 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela." +"Account not found and OpenID registration is not permitted on this site." +msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site." -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" -msgstr "Cor do fundo" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Não foi possível autenticar." -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "Valor hexadecimal para a cor do fundo. Não inclua o #." +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texto fonte (bbcode):" -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "tamanho da fonte" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texto fonte (Diaspora) a converter para BBcode:" -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "tamanho base da fonte para a sua interface" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada fonte:" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML puro):" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Configure a largura do tema" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../boot.php:684 -msgid "Delete this item?" -msgstr "Excluir este item?" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../boot.php:687 -msgid "show fewer" -msgstr "exibir menos" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../boot.php:1015 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Atualização %s falhou. Vide registro de erros (log)." +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../boot.php:1017 -#, php-format -msgid "Update Error at %s" -msgstr "Erro de Atualização em %s" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../boot.php:1127 -msgid "Create a New Account" -msgstr "Criar uma nova conta" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108 -msgid "Register" -msgstr "Registrar" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Fonte de entrada (formato Diaspora):" -#: ../../boot.php:1152 ../../include/nav.php:73 -msgid "Logout" -msgstr "Sair" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../boot.php:1153 ../../include/nav.php:91 -msgid "Login" -msgstr "Entrar" +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "As configurações do tema foram atualizadas." -#: ../../boot.php:1155 -msgid "Nickname or Email address: " -msgstr "Identificação ou endereço de e-mail: " +#: ../../mod/admin.php:102 ../../mod/admin.php:573 +msgid "Site" +msgstr "Site" -#: ../../boot.php:1156 -msgid "Password: " -msgstr "Senha: " +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 +msgid "Users" +msgstr "Usuários" -#: ../../boot.php:1157 -msgid "Remember me" -msgstr "Lembre-se de mim" +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Plugins" -#: ../../boot.php:1160 -msgid "Or login using OpenID: " -msgstr "Ou login usando OpendID:" +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 +msgid "Themes" +msgstr "Temas" -#: ../../boot.php:1166 -msgid "Forgot your password?" -msgstr "Esqueceu a sua senha?" +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "Atualizações do BD" -#: ../../boot.php:1167 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "Reiniciar a senha" +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 +msgid "Logs" +msgstr "Relatórios" -#: ../../boot.php:1169 -msgid "Website Terms of Service" -msgstr "Termos de Serviço do Website" +#: ../../mod/admin.php:126 ../../include/nav.php:180 +msgid "Admin" +msgstr "Admin" -#: ../../boot.php:1170 -msgid "terms of service" -msgstr "termos de serviço" +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "Recursos do plugin" -#: ../../boot.php:1172 -msgid "Website Privacy Policy" -msgstr "Política de Privacidade do Website" +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Cadastros de novos usuários aguardando confirmação" -#: ../../boot.php:1173 -msgid "privacy policy" -msgstr "política de privacidade" - -#: ../../boot.php:1302 -msgid "Requested account is not available." -msgstr "Conta solicitada não disponível" - -#: ../../boot.php:1341 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Perfil solicitado não está disponível." - -#: ../../boot.php:1381 ../../boot.php:1485 -msgid "Edit profile" -msgstr "Editar perfil" - -#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Conectar" - -#: ../../boot.php:1447 -msgid "Message" -msgstr "Mensagem" - -#: ../../boot.php:1455 ../../include/nav.php:169 -msgid "Profiles" -msgstr "Perfis" - -#: ../../boot.php:1455 -msgid "Manage/edit profiles" -msgstr "Gerenciar/editar perfis" - -#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 -msgid "Change profile photo" -msgstr "Mudar a foto do perfil" - -#: ../../boot.php:1462 ../../mod/profiles.php:727 -msgid "Create New Profile" -msgstr "Criar um novo perfil" - -#: ../../boot.php:1472 ../../mod/profiles.php:738 -msgid "Profile Image" -msgstr "Imagem do perfil" - -#: ../../boot.php:1475 ../../mod/profiles.php:740 -msgid "visible to everybody" -msgstr "visível para todos" - -#: ../../boot.php:1476 ../../mod/profiles.php:741 -msgid "Edit visibility" -msgstr "Editar a visibilidade" - -#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 -msgid "Location:" -msgstr "Localização:" - -#: ../../boot.php:1503 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Gênero:" - -#: ../../boot.php:1506 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Situação:" - -#: ../../boot.php:1508 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Página web:" - -#: ../../boot.php:1584 ../../boot.php:1670 -msgid "g A l F d" -msgstr "G l d F" - -#: ../../boot.php:1585 ../../boot.php:1671 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1630 ../../boot.php:1711 -msgid "[today]" -msgstr "[hoje]" - -#: ../../boot.php:1642 -msgid "Birthday Reminders" -msgstr "Lembretes de aniversário" - -#: ../../boot.php:1643 -msgid "Birthdays this week:" -msgstr "Aniversários nesta semana:" - -#: ../../boot.php:1704 -msgid "[No description]" -msgstr "[Sem descrição]" - -#: ../../boot.php:1722 -msgid "Event Reminders" -msgstr "Lembretes de eventos" - -#: ../../boot.php:1723 -msgid "Events this week:" -msgstr "Eventos esta semana:" - -#: ../../boot.php:1956 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:1959 -msgid "Status Messages and Posts" -msgstr "Mensagem de Estado (status) e Publicações" - -#: ../../boot.php:1966 -msgid "Profile Details" -msgstr "Detalhe do Perfil" - -#: ../../boot.php:1973 ../../mod/photos.php:51 -msgid "Photo Albums" -msgstr "Álbuns de fotos" - -#: ../../boot.php:1977 ../../boot.php:1980 -msgid "Videos" -msgstr "Vídeos" - -#: ../../boot.php:1990 -msgid "Events and Calendar" -msgstr "Eventos e Agenda" - -#: ../../boot.php:1994 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notas pessoais" - -#: ../../boot.php:1997 -msgid "Only You Can See This" -msgstr "Somente Você Pode Ver Isso" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s atualmente está %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humor" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Defina o seu humor e conte aos seus amigos" - -#: ../../mod/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 -#: ../../mod/videos.php:115 -msgid "Public access denied." -msgstr "Acesso público negado." - -#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:947 ../../mod/admin.php:1147 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:3995 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 msgid "Item not found." msgstr "O item não foi encontrado." -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "O acesso a este perfil está restrito." +#: ../../mod/admin.php:188 ../../mod/admin.php:855 +msgid "Normal Account" +msgstr "Conta normal" -#: ../../mod/display.php:239 -msgid "Item has been removed." -msgstr "O item foi removido." +#: ../../mod/admin.php:189 ../../mod/admin.php:856 +msgid "Soapbox Account" +msgstr "Conta de vitrine" -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Acesso negado." +#: ../../mod/admin.php:190 ../../mod/admin.php:857 +msgid "Community/Celebrity Account" +msgstr "Conta de comunidade/celebridade" -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Este é o Friendica, versão" +#: ../../mod/admin.php:191 ../../mod/admin.php:858 +msgid "Automatic Friend Account" +msgstr "Conta de amigo automático" -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "sendo executado no endereço web" +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Conta de blog" -#: ../../mod/friendica.php:58 +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "Fórum privado" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "Fila de mensagens" + +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 +msgid "Administration" +msgstr "Administração" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "Resumo" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "Usuários registrados" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Registros pendentes" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "Versão" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "Plugins ativos" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos ://" + +#: ../../mod/admin.php:485 +msgid "Site settings updated." +msgstr "As configurações do site foram atualizadas." + +#: ../../mod/admin.php:514 ../../mod/settings.php:823 +msgid "No special theme for mobile devices" +msgstr "Nenhum tema especial para dispositivos móveis" + +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 +msgid "Never" +msgstr "Nunca" + +#: ../../mod/admin.php:532 +msgid "At post arrival" +msgstr "Na chegada da publicação" + +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "De hora em hora" + +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Duas vezes ao dia" + +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diariamente" + +#: ../../mod/admin.php:541 +msgid "Multi user instance" +msgstr "Instância multi usuário" + +#: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Fechado" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Requer aprovação" + +#: ../../mod/admin.php:561 +msgid "Open" +msgstr "Aberto" + +#: ../../mod/admin.php:565 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página" + +#: ../../mod/admin.php:566 +msgid "Force all links to use SSL" +msgstr "Forçar todos os links a utilizar SSL" + +#: ../../mod/admin.php:567 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)" + +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 +msgid "Save Settings" +msgstr "Salvar configurações" + +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "Registro" + +#: ../../mod/admin.php:576 +msgid "File upload" +msgstr "Envio de arquivo" + +#: ../../mod/admin.php:577 +msgid "Policies" +msgstr "Políticas" + +#: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Avançado" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Performance" + +#: ../../mod/admin.php:580 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica." +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível." -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" +#: ../../mod/admin.php:583 +msgid "Site name" +msgstr "Nome do site" -#: ../../mod/friendica.php:61 +#: ../../mod/admin.php:584 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:585 +msgid "Additional Info" +msgstr "Informação adicional" + +#: ../../mod/admin.php:585 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo." -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/complementos/aplicações instaladas:" +#: ../../mod/admin.php:586 +msgid "System language" +msgstr "Idioma do sistema" -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Nenhum plugin/complemento/aplicativo instalado" +#: ../../mod/admin.php:587 +msgid "System theme" +msgstr "Tema do sistema" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/admin.php:587 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário - alterar configurações do tema" + +#: ../../mod/admin.php:588 +msgid "Mobile system theme" +msgstr "Tema do sistema para dispositivos móveis" + +#: ../../mod/admin.php:588 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móveis" + +#: ../../mod/admin.php:589 +msgid "SSL link policy" +msgstr "Política de link SSL" + +#: ../../mod/admin.php:589 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se os links gerados devem ser forçados a utilizar SSL" + +#: ../../mod/admin.php:590 +msgid "Old style 'Share'" +msgstr "Estilo antigo do 'Compartilhar' " + +#: ../../mod/admin.php:590 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens." + +#: ../../mod/admin.php:591 +msgid "Hide help entry from navigation menu" +msgstr "Oculta a entrada 'Ajuda' do menu de navegação" + +#: ../../mod/admin.php:591 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente." + +#: ../../mod/admin.php:592 +msgid "Single user instance" +msgstr "Instância de usuário único" + +#: ../../mod/admin.php:592 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão" + +#: ../../mod/admin.php:593 +msgid "Maximum image size" +msgstr "Tamanho máximo da imagem" + +#: ../../mod/admin.php:593 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites" + +#: ../../mod/admin.php:594 +msgid "Maximum image length" +msgstr "Tamanho máximo da imagem" + +#: ../../mod/admin.php:594 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites." + +#: ../../mod/admin.php:595 +msgid "JPEG image quality" +msgstr "Qualidade da imagem JPEG" + +#: ../../mod/admin.php:595 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade." + +#: ../../mod/admin.php:597 +msgid "Register policy" +msgstr "Política de registro" + +#: ../../mod/admin.php:598 +msgid "Maximum Daily Registrations" +msgstr "Registros Diários Máximos" + +#: ../../mod/admin.php:598 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' , essa configuração não tem efeito." + +#: ../../mod/admin.php:599 +msgid "Register text" +msgstr "Texto de registro" + +#: ../../mod/admin.php:599 +msgid "Will be displayed prominently on the registration page." +msgstr "Será exibido com destaque na página de registro." + +#: ../../mod/admin.php:600 +msgid "Accounts abandoned after x days" +msgstr "Contas abandonadas após x dias" + +#: ../../mod/admin.php:600 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo." + +#: ../../mod/admin.php:601 +msgid "Allowed friend domains" +msgstr "Domínios de amigos permitidos" + +#: ../../mod/admin.php:601 +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 dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio." + +#: ../../mod/admin.php:602 +msgid "Allowed email domains" +msgstr "Domínios de e-mail permitidos" + +#: ../../mod/admin.php:602 +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 de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio" + +#: ../../mod/admin.php:603 +msgid "Block public" +msgstr "Bloquear acesso público" + +#: ../../mod/admin.php:603 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada." + +#: ../../mod/admin.php:604 +msgid "Force publish" +msgstr "Forçar a listagem" + +#: ../../mod/admin.php:604 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site." + +#: ../../mod/admin.php:605 +msgid "Global directory update URL" +msgstr "URL de atualização do diretório global" + +#: ../../mod/admin.php:605 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site." + +#: ../../mod/admin.php:606 +msgid "Allow threaded items" +msgstr "Habilita itens aninhados" + +#: ../../mod/admin.php:606 +msgid "Allow infinite level threading for items on this site." +msgstr "Habilita nível infinito de aninhamento (threading) para itens." + +#: ../../mod/admin.php:607 +msgid "Private posts by default for new users" +msgstr "Publicações privadas por padrão para novos usuários" + +#: ../../mod/admin.php:607 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas." + +#: ../../mod/admin.php:608 +msgid "Don't include post content in email notifications" +msgstr "Não incluir o conteúdo da postagem nas notificações de email" + +#: ../../mod/admin.php:608 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança." + +#: ../../mod/admin.php:609 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita acesso público a addons listados no menu de aplicativos." + +#: ../../mod/admin.php:609 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente." + +#: ../../mod/admin.php:610 +msgid "Don't embed private images in posts" +msgstr "Não inclua imagens privadas em publicações" + +#: ../../mod/admin.php:610 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo." + +#: ../../mod/admin.php:611 +msgid "Allow Users to set remote_self" +msgstr "Permite usuários configurarem remote_self" + +#: ../../mod/admin.php:611 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários" + +#: ../../mod/admin.php:612 +msgid "Block multiple registrations" +msgstr "Bloquear registros repetidos" + +#: ../../mod/admin.php:612 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas." + +#: ../../mod/admin.php:613 +msgid "OpenID support" +msgstr "Suporte ao OpenID" + +#: ../../mod/admin.php:613 +msgid "OpenID support for registration and logins." +msgstr "Suporte ao OpenID para registros e autenticações." + +#: ../../mod/admin.php:614 +msgid "Fullname check" +msgstr "Verificar nome completo" + +#: ../../mod/admin.php:614 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam" + +#: ../../mod/admin.php:615 +msgid "UTF-8 Regular expressions" +msgstr "Expressões regulares UTF-8" + +#: ../../mod/admin.php:615 +msgid "Use PHP UTF8 regular expressions" +msgstr "Use expressões regulares do PHP em UTF8" + +#: ../../mod/admin.php:616 +msgid "Show Community Page" +msgstr "Exibir a página da comunidade" + +#: ../../mod/admin.php:616 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site." + +#: ../../mod/admin.php:617 +msgid "Enable OStatus support" +msgstr "Habilitar suporte ao OStatus" + +#: ../../mod/admin.php:617 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados." + +#: ../../mod/admin.php:618 +msgid "OStatus conversation completion interval" +msgstr "Intervalo de finalização da conversação OStatus " + +#: ../../mod/admin.php:618 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada." + +#: ../../mod/admin.php:619 +msgid "Enable Diaspora support" +msgstr "Habilitar suporte ao Diaspora" + +#: ../../mod/admin.php:619 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornece compatibilidade nativa com a rede Diaspora." + +#: ../../mod/admin.php:620 +msgid "Only allow Friendica contacts" +msgstr "Permitir somente contatos Friendica" + +#: ../../mod/admin.php:620 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados" + +#: ../../mod/admin.php:621 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: ../../mod/admin.php:621 +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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados." + +#: ../../mod/admin.php:622 +msgid "Proxy user" +msgstr "Usuário do proxy" + +#: ../../mod/admin.php:623 +msgid "Proxy URL" +msgstr "URL do proxy" + +#: ../../mod/admin.php:624 +msgid "Network timeout" +msgstr "Limite de tempo da rede" + +#: ../../mod/admin.php:624 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)." + +#: ../../mod/admin.php:625 +msgid "Delivery interval" +msgstr "Intervalo de envio" + +#: ../../mod/admin.php:625 +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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados." + +#: ../../mod/admin.php:626 +msgid "Poll interval" +msgstr "Intervalo da busca (polling)" + +#: ../../mod/admin.php:626 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega." + +#: ../../mod/admin.php:627 +msgid "Maximum Load Average" +msgstr "Média de Carga Máxima" + +#: ../../mod/admin.php:627 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50." + +#: ../../mod/admin.php:629 +msgid "Use MySQL full text engine" +msgstr "Use o engine de texto completo (full text) do MySQL" + +#: ../../mod/admin.php:629 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres." + +#: ../../mod/admin.php:630 +msgid "Suppress Language" +msgstr "Retira idioma" + +#: ../../mod/admin.php:630 +msgid "Suppress language information in meta information about a posting." +msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação." + +#: ../../mod/admin.php:631 +msgid "Path to item cache" +msgstr "Diretório do cache de item" + +#: ../../mod/admin.php:632 +msgid "Cache duration in seconds" +msgstr "Duração do cache em segundos" + +#: ../../mod/admin.php:632 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)." + +#: ../../mod/admin.php:633 +msgid "Path for lock file" +msgstr "Diretório do arquivo de trava" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Diretório Temp" + +#: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Diretório base para instalação" + +#: ../../mod/admin.php:637 +msgid "New base url" +msgstr "Nova URL base" + +#: ../../mod/admin.php:655 +msgid "Update has been marked successful" +msgstr "A atualização foi marcada como bem sucedida" + +#: ../../mod/admin.php:665 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s dá as boas vinda à %2$s" +msgid "Executing %s failed. Check system logs." +msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema." -#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54 +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s was successfully applied." +msgstr "A atualização %s foi aplicada com sucesso." + +#: ../../mod/admin.php:672 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso." + +#: ../../mod/admin.php:675 +#, php-format +msgid "Update function %s could not be found." +msgstr "Não foi possível encontrar a função de atualização %s." + +#: ../../mod/admin.php:690 +msgid "No failed updates." +msgstr "Nenhuma atualização com falha." + +#: ../../mod/admin.php:694 +msgid "Failed Updates" +msgstr "Atualizações com falha" + +#: ../../mod/admin.php:695 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status." + +#: ../../mod/admin.php:696 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)" + +#: ../../mod/admin.php:697 +msgid "Attempt to execute this update step automatically" +msgstr "Tentar executar esse passo da atualização automaticamente" + +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Detalhes do registro de %s" -#: ../../mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações." +#: ../../mod/admin.php:743 +msgid "Registration successful. Email send to user" +msgstr "Registro bem sucedido. Email enviado ao usuário." -#: ../../mod/register.php:103 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi." - -#: ../../mod/register.php:108 -msgid "Your registration can not be processed." -msgstr "Não foi possível processar o seu registro." - -#: ../../mod/register.php:145 +#: ../../mod/admin.php:753 #, php-format -msgid "Registration request at %s" -msgstr "Solicitação de registro em %s" +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s usuário bloqueado/desbloqueado" +msgstr[1] "%s usuários bloqueados/desbloqueados" -#: ../../mod/register.php:154 -msgid "Your registration is pending approval by the site owner." -msgstr "A aprovação do seu registro está pendente junto ao administrador do site." +#: ../../mod/admin.php:760 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuário excluído" +msgstr[1] "%s usuários excluídos" -#: ../../mod/register.php:192 ../../mod/uimport.php:50 +#: ../../mod/admin.php:799 +#, php-format +msgid "User '%s' deleted" +msgstr "O usuário '%s' foi excluído" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' unblocked" +msgstr "O usuário '%s' foi desbloqueado" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' blocked" +msgstr "O usuário '%s' foi bloqueado" + +#: ../../mod/admin.php:902 +msgid "Add User" +msgstr "Adicionar usuário" + +#: ../../mod/admin.php:903 +msgid "select all" +msgstr "selecionar todos" + +#: ../../mod/admin.php:904 +msgid "User registrations waiting for confirm" +msgstr "Registros de usuário aguardando confirmação" + +#: ../../mod/admin.php:905 +msgid "User waiting for permanent deletion" +msgstr "Usuário aguardando por fim permanente da conta." + +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Solicitar data" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 +msgid "Name" +msgstr "Nome" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: ../../mod/admin.php:907 +msgid "No registrations." +msgstr "Nenhum registro." + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Negar" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "Bloquear" + +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../mod/admin.php:913 +msgid "Site admin" +msgstr "Administração do site" + +#: ../../mod/admin.php:914 +msgid "Account expired" +msgstr "Conta expirou" + +#: ../../mod/admin.php:917 +msgid "New User" +msgstr "Novo usuário" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Register date" +msgstr "Data de registro" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last login" +msgstr "Última entrada" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last item" +msgstr "Último item" + +#: ../../mod/admin.php:918 +msgid "Deleted since" +msgstr "Apagado desde" + +#: ../../mod/admin.php:919 ../../mod/settings.php:36 +msgid "Account" +msgstr "Conta" + +#: ../../mod/admin.php:921 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?" -#: ../../mod/register.php:220 +#: ../../mod/admin.php:922 msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'." +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?" -#: ../../mod/register.php:221 +#: ../../mod/admin.php:932 +msgid "Name of the new user." +msgstr "Nome do novo usuários." + +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "Apelido" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "Apelido para o novo usuário." + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "Endereço de e-mail do novo usuário." + +#: ../../mod/admin.php:967 +#, php-format +msgid "Plugin %s disabled." +msgstr "O plugin %s foi desabilitado." + +#: ../../mod/admin.php:971 +#, php-format +msgid "Plugin %s enabled." +msgstr "O plugin %s foi habilitado." + +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 +msgid "Disable" +msgstr "Desabilitar" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 +msgid "Enable" +msgstr "Habilitar" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 +msgid "Toggle" +msgstr "Alternar" + +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Configurações" + +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 +msgid "Maintainer: " +msgstr "Mantenedor: " + +#: ../../mod/admin.php:1155 +msgid "No themes found." +msgstr "Nenhum tema encontrado" + +#: ../../mod/admin.php:1217 +msgid "Screenshot" +msgstr "Captura de tela" + +#: ../../mod/admin.php:1263 +msgid "[Experimental]" +msgstr "[Esperimental]" + +#: ../../mod/admin.php:1264 +msgid "[Unsupported]" +msgstr "[Não suportado]" + +#: ../../mod/admin.php:1291 +msgid "Log settings updated." +msgstr "As configurações de relatórios foram atualizadas." + +#: ../../mod/admin.php:1347 +msgid "Clear" +msgstr "Limpar" + +#: ../../mod/admin.php:1353 +msgid "Enable Debugging" +msgstr "Habilitar Debugging" + +#: ../../mod/admin.php:1354 +msgid "Log file" +msgstr "Arquivo do relatório" + +#: ../../mod/admin.php:1354 msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens." +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica." -#: ../../mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "Seu OpenID (opcional): " +#: ../../mod/admin.php:1355 +msgid "Log level" +msgstr "Nível do relatório" -#: ../../mod/register.php:236 -msgid "Include your profile in member directory?" -msgstr "Incluir o seu perfil no diretório de membros?" +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "Atualizar agora" -#: ../../mod/register.php:239 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:246 -#: ../../mod/settings.php:977 ../../mod/settings.php:983 -#: ../../mod/settings.php:991 ../../mod/settings.php:995 -#: ../../mod/settings.php:1000 ../../mod/settings.php:1006 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1018 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1049 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1052 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4036 -msgid "Yes" -msgstr "Sim" +#: ../../mod/admin.php:1405 +msgid "Close" +msgstr "Fechar" -#: ../../mod/register.php:240 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:977 -#: ../../mod/settings.php:983 ../../mod/settings.php:991 -#: ../../mod/settings.php:995 ../../mod/settings.php:1000 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1018 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1049 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1051 ../../mod/settings.php:1052 -#: ../../mod/profiles.php:611 -msgid "No" -msgstr "Não" +#: ../../mod/admin.php:1411 +msgid "FTP Host" +msgstr "Endereço do FTP" -#: ../../mod/register.php:257 -msgid "Membership on this site is by invitation only." -msgstr "A associação a este site só pode ser feita mediante convite." +#: ../../mod/admin.php:1412 +msgid "FTP Path" +msgstr "Caminho do FTP" -#: ../../mod/register.php:258 -msgid "Your invitation ID: " -msgstr "A ID do seu convite: " +#: ../../mod/admin.php:1413 +msgid "FTP User" +msgstr "Usuário do FTP" -#: ../../mod/register.php:261 ../../mod/admin.php:570 -msgid "Registration" -msgstr "Registro" +#: ../../mod/admin.php:1414 +msgid "FTP Password" +msgstr "Senha do FTP" -#: ../../mod/register.php:269 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Seu nome completo (ex: José da Silva): " +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Nova mensagem" -#: ../../mod/register.php:270 -msgid "Your Email Address: " -msgstr "Seu endereço de e-mail: " +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Não foi selecionado nenhum destinatário." -#: ../../mod/register.php:271 +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Não foi possível localizar informação do contato." + +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Não foi possível enviar a mensagem." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Falha na coleta de mensagens." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "A mensagem foi enviada." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Você realmente deseja deletar essa mensagem?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "A mensagem foi excluída." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "A conversa foi removida." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Por favor, digite uma URL:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Enviar mensagem privada" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Para:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Assunto:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Sua mensagem:" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Enviar foto" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Inserir link web" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nenhuma mensagem." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remetente desconhecido - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Você e %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s e você" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Excluir conversa" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensagem" +msgstr[1] "%d mensagens" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "A mensagem não está disponível." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Excluir a mensagem" + +#: ../../mod/message.php:548 msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@$sitename'" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente." -#: ../../mod/register.php:272 -msgid "Choose a nickname: " -msgstr "Escolha uma identificação: " +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Enviar resposta" -#: ../../mod/register.php:281 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importar" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "O item não foi encontrado" -#: ../../mod/register.php:282 -msgid "Import your profile to this friendica instance" -msgstr "Importa seu perfil desta instância do friendica" +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Editar a publicação" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 +msgid "upload photo" +msgstr "upload de foto" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 +msgid "Attach file" +msgstr "Anexar arquivo" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 +msgid "attach file" +msgstr "anexar arquivo" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 +msgid "web link" +msgstr "link web" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 +msgid "Insert video link" +msgstr "Inserir link de vídeo" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 +msgid "video link" +msgstr "link de vídeo" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 +msgid "Insert audio link" +msgstr "Inserir link de áudio" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 +msgid "audio link" +msgstr "link de áudio" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 +msgid "Set your location" +msgstr "Definir sua localização" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 +msgid "set location" +msgstr "configure localização" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 +msgid "Clear browser location" +msgstr "Limpar a localização do navegador" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 +msgid "clear location" +msgstr "apague localização" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 +msgid "Permission settings" +msgstr "Configurações de permissão" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 +msgid "CC: email addresses" +msgstr "CC: endereço de e-mail" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 +msgid "Public post" +msgstr "Publicação pública" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 +msgid "Set title" +msgstr "Definir o título" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 +msgid "Categories (comma-separated list)" +msgstr "Categorias (lista separada por vírgulas)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:587 msgid "Profile not found." msgstr "O perfil não foi encontrado." -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "O contato não foi encontrado." - #: ../../mod/dfrn_confirm.php:119 msgid "" "This may occasionally happen if contact was requested by both persons and it" @@ -1063,8 +2005,8 @@ msgstr "Ocorreu uma falha na apresentação ou ela foi revogada." msgid "Unable to set contact photo." msgstr "Não foi possível definir a foto do contato." -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:621 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s agora é amigo de %2$s" @@ -1115,6 +2057,213 @@ msgstr "Conexão aceita em %s" msgid "%1$s has joined %2$s" msgstr "%1$s se associou a %2$s" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "O título do evento e a hora de início são obrigatórios." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editar o evento" + +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "exibir a origem" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Eventos" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Criar um novo evento" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Anterior" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Próximo" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "hora:minuto" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Detalhes do evento" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "O formato é %s %s. O título e a data de início são obrigatórios." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Início do evento:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Obrigatório" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "A data/hora de término não é conhecida ou não é relevante" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Término do evento:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para o fuso horário do visualizador" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descrição:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Localização:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Título:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Compartilhar este evento" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Fotos" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Arquivos" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Bem-vindo(a) a %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Não existe informação disponível sobre a privacidade remota." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visível para:" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Não foi possível verificar a sua localização." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nenhum destinatário." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar o perfil de %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Editar o contato" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatos que não são membros de um grupo" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Este é o Friendica, versão" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "sendo executado no endereço web" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/complementos/aplicações instaladas:" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Nenhum plugin/complemento/aplicativo instalado" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Remover minha conta" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Por favor, digite a sua senha para verificação:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "A imagem excede o limite de tamanho de %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Não foi possível processar a imagem." + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Fotos do mural" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Não foi possível enviar a imagem." + #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" msgstr "Autorizar a conexão com a aplicação" @@ -1133,6 +2282,316 @@ msgid "" " and/or create new posts for you?" msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetou %3$s de %2$s com %4$s" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Álbuns de fotos" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Fotos dos contatos" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Enviar novas fotos" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "todos" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "A informação de contato não está disponível" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Fotos do perfil" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "O álbum não foi encontrado." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Excluir o álbum" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Excluir a foto" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Você realmente deseja deletar essa foto?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s foi marcado em %2$s por %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "uma foto" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "A imagem excede o tamanho máximo de " + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "O arquivo de imagem está vazio." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Não foi selecionada nenhuma foto" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "O acesso a este item é restrito." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Enviar fotos" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nome do novo álbum: " + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "ou o nome de um álbum já existente: " + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Não exiba uma publicação de status para este envio" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Permissões" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Mostre para Grupos" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Mostre para Contatos" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Foto Privada" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Foto Pública" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Editar o álbum" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Exibir as mais recentes primeiro" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Exibir as mais antigas primeiro" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Ver a foto" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permissão negada. O acesso a este item pode estar restrito." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "A foto não está disponível" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Ver a imagem" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Editar a foto" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Usar como uma foto de perfil" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Ver no tamanho real" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Etiquetas: " + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Remover qualquer etiqueta]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Rotacionar para direita" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Rotacionar para esquerda" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Novo nome para o álbum" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Legenda" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Adicionar uma etiqueta" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Foto privada" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Foto pública" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Compartilhar" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Ver álbum" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Fotos recentes" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nenhum perfil" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações." + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Não foi possível processar o seu registro." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitação de registro em %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "A aprovação do seu registro está pendente junto ao administrador do site." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã." + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Seu OpenID (opcional): " + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Incluir o seu perfil no diretório de membros?" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "A associação a este site só pode ser feita mediante convite." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "A ID do seu convite: " + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Seu nome completo (ex: José da Silva): " + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Seu endereço de e-mail: " + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@$sitename'" + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "Escolha uma identificação: " + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrar" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importar" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Importa seu perfil desta instância do friendica" + #: ../../mod/lostpass.php:17 msgid "No valid account found." msgstr "Não foi encontrada nenhuma conta válida." @@ -1152,6 +2611,10 @@ msgid "" "Password reset failed." msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada." +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Reiniciar a senha" + #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." msgstr "Sua senha foi reiniciada, conforme solicitado." @@ -1197,79 +2660,424 @@ msgstr "Identificação ou e-mail: " msgid "Reset" msgstr "Reiniciar" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema em manutenção" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "O item não está disponível." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "O item não foi encontrado." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplicativos" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nenhum aplicativo instalado" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Ajuda:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Ajuda" + +#: ../../mod/contacts.php:104 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem." +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contato editado" +msgstr[1] "%d contatos editados" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Não foi selecionado nenhum destinatário." +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 +msgid "Could not access contact record." +msgstr "Não foi possível acessar o registro do contato." -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Não foi possível verificar a sua localização." +#: ../../mod/contacts.php:149 +msgid "Could not locate selected profile." +msgstr "Não foi possível localizar o perfil selecionado." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Não foi possível enviar a mensagem." +#: ../../mod/contacts.php:178 +msgid "Contact updated." +msgstr "O contato foi atualizado." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Falha na coleta de mensagens." +#: ../../mod/contacts.php:278 +msgid "Contact has been blocked" +msgstr "O contato foi bloqueado" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "A mensagem foi enviada." +#: ../../mod/contacts.php:278 +msgid "Contact has been unblocked" +msgstr "O contato foi desbloqueado" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nenhum destinatário." +#: ../../mod/contacts.php:288 +msgid "Contact has been ignored" +msgstr "O contato foi ignorado" -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 -msgid "Please enter a link URL:" -msgstr "Por favor, digite uma URL:" +#: ../../mod/contacts.php:288 +msgid "Contact has been unignored" +msgstr "O contato deixou de ser ignorado" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Enviar mensagem privada" +#: ../../mod/contacts.php:299 +msgid "Contact has been archived" +msgstr "O contato foi arquivado" -#: ../../mod/wallmessage.php:143 +#: ../../mod/contacts.php:299 +msgid "Contact has been unarchived" +msgstr "O contato foi desarquivado" + +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 +msgid "Do you really want to delete this contact?" +msgstr "Você realmente deseja deletar esse contato?" + +#: ../../mod/contacts.php:341 +msgid "Contact has been removed." +msgstr "O contato foi removido." + +#: ../../mod/contacts.php:379 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Você possui uma amizade mútua com %s" + +#: ../../mod/contacts.php:383 +#, php-format +msgid "You are sharing with %s" +msgstr "Você está compartilhando com %s" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "%s is sharing with you" +msgstr "%s está compartilhando com você" + +#: ../../mod/contacts.php:405 +msgid "Private communications are not available for this contact." +msgstr "As comunicações privadas não estão disponíveis para este contato." + +#: ../../mod/contacts.php:412 +msgid "(Update was successful)" +msgstr "(A atualização foi bem sucedida)" + +#: ../../mod/contacts.php:412 +msgid "(Update was not successful)" +msgstr "(A atualização não foi bem sucedida)" + +#: ../../mod/contacts.php:414 +msgid "Suggest friends" +msgstr "Sugerir amigos" + +#: ../../mod/contacts.php:418 +#, php-format +msgid "Network type: %s" +msgstr "Tipo de rede: %s" + +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contato em comum" +msgstr[1] "%d contatos em comum" + +#: ../../mod/contacts.php:426 +msgid "View all contacts" +msgstr "Ver todos os contatos" + +#: ../../mod/contacts.php:434 +msgid "Toggle Blocked status" +msgstr "Alternar o status de bloqueio" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 +msgid "Unignore" +msgstr "Deixar de ignorar" + +#: ../../mod/contacts.php:440 +msgid "Toggle Ignored status" +msgstr "Alternar o status de ignorado" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Unarchive" +msgstr "Desarquivar" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Archive" +msgstr "Arquivar" + +#: ../../mod/contacts.php:447 +msgid "Toggle Archive status" +msgstr "Alternar o status de arquivamento" + +#: ../../mod/contacts.php:450 +msgid "Repair" +msgstr "Reparar" + +#: ../../mod/contacts.php:453 +msgid "Advanced Contact Settings" +msgstr "Configurações avançadas do contato" + +#: ../../mod/contacts.php:459 +msgid "Communications lost with this contact!" +msgstr "As comunicações com esse contato foram perdidas!" + +#: ../../mod/contacts.php:462 +msgid "Contact Editor" +msgstr "Editor de contatos" + +#: ../../mod/contacts.php:465 +msgid "Profile Visibility" +msgstr "Visibilidade do perfil" + +#: ../../mod/contacts.php:466 #, 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 "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Para:" +#: ../../mod/contacts.php:467 +msgid "Contact Information / Notes" +msgstr "Informações sobre o contato / Anotações" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Assunto:" +#: ../../mod/contacts.php:468 +msgid "Edit contact notes" +msgstr "Editar as anotações do contato" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Sua mensagem:" +#: ../../mod/contacts.php:474 +msgid "Block/Unblock contact" +msgstr "Bloquear/desbloquear o contato" -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1081 -msgid "Upload photo" -msgstr "Enviar foto" +#: ../../mod/contacts.php:475 +msgid "Ignore contact" +msgstr "Ignorar o contato" -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1085 -msgid "Insert web link" -msgstr "Inserir link web" +#: ../../mod/contacts.php:476 +msgid "Repair URL settings" +msgstr "Reparar as definições de URL" + +#: ../../mod/contacts.php:477 +msgid "View conversations" +msgstr "Ver as conversas" + +#: ../../mod/contacts.php:479 +msgid "Delete contact" +msgstr "Excluir o contato" + +#: ../../mod/contacts.php:483 +msgid "Last update:" +msgstr "Última atualização:" + +#: ../../mod/contacts.php:485 +msgid "Update public posts" +msgstr "Atualizar publicações públicas" + +#: ../../mod/contacts.php:494 +msgid "Currently blocked" +msgstr "Atualmente bloqueado" + +#: ../../mod/contacts.php:495 +msgid "Currently ignored" +msgstr "Atualmente ignorado" + +#: ../../mod/contacts.php:496 +msgid "Currently archived" +msgstr "Atualmente arquivado" + +#: ../../mod/contacts.php:497 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Respostas/gostadas associados às suas publicações ainda podem estar visíveis" + +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Notificações para novas publicações" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Envie uma notificação para todos as novas publicações deste contato" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Pega mais informações para feeds" + +#: ../../mod/contacts.php:550 +msgid "Suggestions" +msgstr "Sugestões" + +#: ../../mod/contacts.php:553 +msgid "Suggest potential friends" +msgstr "Sugerir amigos em potencial" + +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Todos os contatos" + +#: ../../mod/contacts.php:559 +msgid "Show all contacts" +msgstr "Exibe todos os contatos" + +#: ../../mod/contacts.php:562 +msgid "Unblocked" +msgstr "Desbloquear" + +#: ../../mod/contacts.php:565 +msgid "Only show unblocked contacts" +msgstr "Exibe somente contatos desbloqueados" + +#: ../../mod/contacts.php:569 +msgid "Blocked" +msgstr "Bloqueado" + +#: ../../mod/contacts.php:572 +msgid "Only show blocked contacts" +msgstr "Exibe somente contatos bloqueados" + +#: ../../mod/contacts.php:576 +msgid "Ignored" +msgstr "Ignorados" + +#: ../../mod/contacts.php:579 +msgid "Only show ignored contacts" +msgstr "Exibe somente contatos ignorados" + +#: ../../mod/contacts.php:583 +msgid "Archived" +msgstr "Arquivados" + +#: ../../mod/contacts.php:586 +msgid "Only show archived contacts" +msgstr "Exibe somente contatos arquivados" + +#: ../../mod/contacts.php:590 +msgid "Hidden" +msgstr "Ocultos" + +#: ../../mod/contacts.php:593 +msgid "Only show hidden contacts" +msgstr "Exibe somente contatos ocultos" + +#: ../../mod/contacts.php:641 +msgid "Mutual Friendship" +msgstr "Amizade mútua" + +#: ../../mod/contacts.php:645 +msgid "is a fan of yours" +msgstr "é um fã seu" + +#: ../../mod/contacts.php:649 +msgid "you are a fan of" +msgstr "você é um fã de" + +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Contatos" + +#: ../../mod/contacts.php:692 +msgid "Search your contacts" +msgstr "Pesquisar seus contatos" + +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Pesquisando: " + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Pesquisar" + +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 +msgid "Update" +msgstr "Atualizar" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nenhum vídeo selecionado" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Vídeos Recentes" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Envie Novos Vídeos" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amigos em Comum" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nenhum contato em comum." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "O contato foi adicionado" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Mover conta" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Você pode importar um conta de outro sevidor Friendica." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Arquivo de conta" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está seguindo %2$s's %3$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amigos de %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nenhum amigo para exibir." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "A etiqueta foi removida" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Remover a etiqueta do item" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecione uma etiqueta para remover: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Remover" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" @@ -1321,6 +3129,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você." +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Perfil " + #: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Enviar foto do perfil" @@ -1461,19 +3276,1175 @@ msgid "" " features and resources." msgstr "Nossas páginas de ajuda podem ser consultadas para mais detalhes sobre características e recursos do programa." +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Remover o termo" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Pesquisas salvas" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Pesquisar" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Nenhum resultado." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite de convites totais excedido." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Não é um endereço de e-mail válido." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Por favor, junte-se à nós na Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Não foi possível enviar a mensagem." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensagem enviada." +msgstr[1] "%d mensagens enviadas." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Você não possui mais convites disponíveis" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Enviar convites." + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Digite os endereços de e-mail, um por linha:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Você preciso informar este código de convite: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com." + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Funcionalidades adicionais" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "Tela" + +#: ../../mod/settings.php:52 ../../mod/settings.php:775 +msgid "Social Networks" +msgstr "Redes Sociais" + +#: ../../mod/settings.php:62 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Delegações" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Aplicações conectadas" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Exportar dados pessoais" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Remover a conta" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Está faltando algum dado importante!" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas." + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "As configurações de e-mail foram atualizadas." + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "Funcionalidades atualizadas" + +#: ../../mod/settings.php:319 +msgid "Relocate message has been send to your contacts" +msgstr "A mensagem de relocação foi enviada para seus contatos" + +#: ../../mod/settings.php:333 +msgid "Passwords do not match. Password unchanged." +msgstr "As senhas não correspondem. A senha não foi modificada." + +#: ../../mod/settings.php:338 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Não é permitido uma senha em branco. A senha não foi modificada." + +#: ../../mod/settings.php:346 +msgid "Wrong password." +msgstr "Senha errada." + +#: ../../mod/settings.php:357 +msgid "Password changed." +msgstr "A senha foi modificada." + +#: ../../mod/settings.php:359 +msgid "Password update failed. Please try again." +msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." + +#: ../../mod/settings.php:424 +msgid " Please use a shorter name." +msgstr " Por favor, use um nome mais curto." + +#: ../../mod/settings.php:426 +msgid " Name too short." +msgstr " O nome é muito curto." + +#: ../../mod/settings.php:435 +msgid "Wrong Password" +msgstr "Senha Errada" + +#: ../../mod/settings.php:440 +msgid " Not valid email." +msgstr " Não é um e-mail válido." + +#: ../../mod/settings.php:446 +msgid " Cannot change to that email." +msgstr " Não foi possível alterar para esse e-mail." + +#: ../../mod/settings.php:501 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão." + +#: ../../mod/settings.php:505 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão." + +#: ../../mod/settings.php:535 +msgid "Settings updated." +msgstr "As configurações foram atualizadas." + +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 +msgid "Add application" +msgstr "Adicionar aplicação" + +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +msgid "Consumer Key" +msgstr "Chave do consumidor" + +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Consumer Secret" +msgstr "Segredo do consumidor" + +#: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Redirect" +msgstr "Redirecionar" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 +msgid "Icon url" +msgstr "URL do ícone" + +#: ../../mod/settings.php:626 +msgid "You can't edit this application." +msgstr "Você não pode editar esta aplicação." + +#: ../../mod/settings.php:669 +msgid "Connected Apps" +msgstr "Aplicações conectadas" + +#: ../../mod/settings.php:673 +msgid "Client key starts with" +msgstr "A chave do cliente inicia com" + +#: ../../mod/settings.php:674 +msgid "No name" +msgstr "Sem nome" + +#: ../../mod/settings.php:675 +msgid "Remove authorization" +msgstr "Remover autorização" + +#: ../../mod/settings.php:687 +msgid "No Plugin settings configured" +msgstr "Não foi definida nenhuma configuração de plugin" + +#: ../../mod/settings.php:695 +msgid "Plugin Settings" +msgstr "Configurações do plugin" + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Off" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "On" + +#: ../../mod/settings.php:717 +msgid "Additional Features" +msgstr "Funcionalidades Adicionais" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "O suporte interno para conectividade de %s está %s" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "enabled" +msgstr "habilitado" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "disabled" +msgstr "desabilitado" + +#: ../../mod/settings.php:732 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:768 +msgid "Email access is disabled on this site." +msgstr "O acesso ao e-mail está desabilitado neste site." + +#: ../../mod/settings.php:780 +msgid "Email/Mailbox Setup" +msgstr "Configurações do e-mail/caixa postal" + +#: ../../mod/settings.php:781 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal." + +#: ../../mod/settings.php:782 +msgid "Last successful email check:" +msgstr "Última checagem bem sucedida de e-mail:" + +#: ../../mod/settings.php:784 +msgid "IMAP server name:" +msgstr "Nome do servidor IMAP:" + +#: ../../mod/settings.php:785 +msgid "IMAP port:" +msgstr "Porta do IMAP:" + +#: ../../mod/settings.php:786 +msgid "Security:" +msgstr "Segurança:" + +#: ../../mod/settings.php:786 ../../mod/settings.php:791 +msgid "None" +msgstr "Nenhuma" + +#: ../../mod/settings.php:787 +msgid "Email login name:" +msgstr "Nome de usuário do e-mail:" + +#: ../../mod/settings.php:788 +msgid "Email password:" +msgstr "Senha do e-mail:" + +#: ../../mod/settings.php:789 +msgid "Reply-to address:" +msgstr "Endereço de resposta (Reply-to):" + +#: ../../mod/settings.php:790 +msgid "Send public posts to all email contacts:" +msgstr "Enviar publicações públicas para todos os contatos de e-mail:" + +#: ../../mod/settings.php:791 +msgid "Action after import:" +msgstr "Ação após a importação:" + +#: ../../mod/settings.php:791 +msgid "Mark as seen" +msgstr "Marcar como visto" + +#: ../../mod/settings.php:791 +msgid "Move to folder" +msgstr "Mover para pasta" + +#: ../../mod/settings.php:792 +msgid "Move to folder:" +msgstr "Mover para pasta:" + +#: ../../mod/settings.php:870 +msgid "Display Settings" +msgstr "Configurações de exibição" + +#: ../../mod/settings.php:876 ../../mod/settings.php:890 +msgid "Display Theme:" +msgstr "Tema do perfil:" + +#: ../../mod/settings.php:877 +msgid "Mobile Theme:" +msgstr "Tema para dispositivos móveis:" + +#: ../../mod/settings.php:878 +msgid "Update browser every xx seconds" +msgstr "Atualizar o navegador a cada xx segundos" + +#: ../../mod/settings.php:878 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, não possui máximo" + +#: ../../mod/settings.php:879 +msgid "Number of items to display per page:" +msgstr "Número de itens a serem exibidos por página:" + +#: ../../mod/settings.php:879 ../../mod/settings.php:880 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 itens" + +#: ../../mod/settings.php:880 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:" + +#: ../../mod/settings.php:881 +msgid "Don't show emoticons" +msgstr "Não exibir emoticons" + +#: ../../mod/settings.php:882 +msgid "Don't show notices" +msgstr "Não mostra avisos" + +#: ../../mod/settings.php:883 +msgid "Infinite scroll" +msgstr "rolamento infinito" + +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Tipos de Usuários" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Tipos de Comunidades" + +#: ../../mod/settings.php:962 +msgid "Normal Account Page" +msgstr "Página de conta normal" + +#: ../../mod/settings.php:963 +msgid "This account is a normal personal profile" +msgstr "Essa conta é um perfil pessoal normal" + +#: ../../mod/settings.php:966 +msgid "Soapbox Page" +msgstr "Página de vitrine" + +#: ../../mod/settings.php:967 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura" + +#: ../../mod/settings.php:970 +msgid "Community Forum/Celebrity Account" +msgstr "Conta de fórum de comunidade/celebridade" + +#: ../../mod/settings.php:971 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita" + +#: ../../mod/settings.php:974 +msgid "Automatic Friend Page" +msgstr "Página de amigo automático" + +#: ../../mod/settings.php:975 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos" + +#: ../../mod/settings.php:978 +msgid "Private Forum [Experimental]" +msgstr "Fórum privado [Experimental]" + +#: ../../mod/settings.php:979 +msgid "Private forum - approved members only" +msgstr "Fórum privado - somente membros aprovados" + +#: ../../mod/settings.php:991 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:991 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta" + +#: ../../mod/settings.php:1001 +msgid "Publish your default profile in your local site directory?" +msgstr "Publicar o seu perfil padrão no diretório local do seu site?" + +#: ../../mod/settings.php:1007 +msgid "Publish your default profile in the global social directory?" +msgstr "Publicar o seu perfil padrão no diretório social global?" + +#: ../../mod/settings.php:1015 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? " + +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?" + +#: ../../mod/settings.php:1024 +msgid "Allow friends to post to your profile page?" +msgstr "Permitir aos amigos publicarem na sua página de perfil?" + +#: ../../mod/settings.php:1030 +msgid "Allow friends to tag your posts?" +msgstr "Permitir aos amigos etiquetarem suas publicações?" + +#: ../../mod/settings.php:1036 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?" + +#: ../../mod/settings.php:1042 +msgid "Permit unknown people to send you private mail?" +msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?" + +#: ../../mod/settings.php:1050 +msgid "Profile is not published." +msgstr "O perfil não está publicado." + +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "ou" + +#: ../../mod/settings.php:1058 +msgid "Your Identity Address is" +msgstr "O endereço da sua identidade é" + +#: ../../mod/settings.php:1069 +msgid "Automatically expire posts after this many days:" +msgstr "Expirar automaticamente publicações após tantos dias:" + +#: ../../mod/settings.php:1069 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas." + +#: ../../mod/settings.php:1070 +msgid "Advanced expiration settings" +msgstr "Configurações avançadas de expiração" + +#: ../../mod/settings.php:1071 +msgid "Advanced Expiration" +msgstr "Expiração avançada" + +#: ../../mod/settings.php:1072 +msgid "Expire posts:" +msgstr "Expirar publicações:" + +#: ../../mod/settings.php:1073 +msgid "Expire personal notes:" +msgstr "Expirar notas pessoais:" + +#: ../../mod/settings.php:1074 +msgid "Expire starred posts:" +msgstr "Expirar publicações destacadas:" + +#: ../../mod/settings.php:1075 +msgid "Expire photos:" +msgstr "Expirar fotos:" + +#: ../../mod/settings.php:1076 +msgid "Only expire posts by others:" +msgstr "Expirar somente as publicações de outras pessoas:" + +#: ../../mod/settings.php:1102 +msgid "Account Settings" +msgstr "Configurações da conta" + +#: ../../mod/settings.php:1110 +msgid "Password Settings" +msgstr "Configurações da senha" + +#: ../../mod/settings.php:1111 +msgid "New Password:" +msgstr "Nova senha:" + +#: ../../mod/settings.php:1112 +msgid "Confirm:" +msgstr "Confirme:" + +#: ../../mod/settings.php:1112 +msgid "Leave password fields blank unless changing" +msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la" + +#: ../../mod/settings.php:1113 +msgid "Current Password:" +msgstr "Senha Atual:" + +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 +msgid "Your current password to confirm the changes" +msgstr "Sua senha atual para confirmar as mudanças" + +#: ../../mod/settings.php:1114 +msgid "Password:" +msgstr "Senha:" + +#: ../../mod/settings.php:1118 +msgid "Basic Settings" +msgstr "Configurações básicas" + +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../mod/settings.php:1120 +msgid "Email Address:" +msgstr "Endereço de e-mail:" + +#: ../../mod/settings.php:1121 +msgid "Your Timezone:" +msgstr "Seu fuso horário:" + +#: ../../mod/settings.php:1122 +msgid "Default Post Location:" +msgstr "Localização padrão de suas publicações:" + +#: ../../mod/settings.php:1123 +msgid "Use Browser Location:" +msgstr "Usar localizador do navegador:" + +#: ../../mod/settings.php:1126 +msgid "Security and Privacy Settings" +msgstr "Configurações de segurança e privacidade" + +#: ../../mod/settings.php:1128 +msgid "Maximum Friend Requests/Day:" +msgstr "Número máximo de requisições de amizade por dia:" + +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir abuso de spammers)" + +#: ../../mod/settings.php:1129 +msgid "Default Post Permissions" +msgstr "Permissões padrão de publicação" + +#: ../../mod/settings.php:1130 +msgid "(click to open/close)" +msgstr "(clique para abrir/fechar)" + +#: ../../mod/settings.php:1141 +msgid "Default Private Post" +msgstr "Publicação Privada Padrão" + +#: ../../mod/settings.php:1142 +msgid "Default Public Post" +msgstr "Publicação Pública Padrão" + +#: ../../mod/settings.php:1146 +msgid "Default Permissions for New Posts" +msgstr "Permissões Padrão para Publicações Novas" + +#: ../../mod/settings.php:1158 +msgid "Maximum private messages per day from unknown people:" +msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:" + +#: ../../mod/settings.php:1161 +msgid "Notification Settings" +msgstr "Configurações de notificação" + +#: ../../mod/settings.php:1162 +msgid "By default post a status message when:" +msgstr "Por padrão, publicar uma mensagem de status quando:" + +#: ../../mod/settings.php:1163 +msgid "accepting a friend request" +msgstr "aceitar uma requisição de amizade" + +#: ../../mod/settings.php:1164 +msgid "joining a forum/community" +msgstr "associar-se a um fórum/comunidade" + +#: ../../mod/settings.php:1165 +msgid "making an interesting profile change" +msgstr "fazer uma modificação interessante em seu perfil" + +#: ../../mod/settings.php:1166 +msgid "Send a notification email when:" +msgstr "Enviar um e-mail de notificação sempre que:" + +#: ../../mod/settings.php:1167 +msgid "You receive an introduction" +msgstr "Você recebeu uma apresentação" + +#: ../../mod/settings.php:1168 +msgid "Your introductions are confirmed" +msgstr "Suas apresentações forem confirmadas" + +#: ../../mod/settings.php:1169 +msgid "Someone writes on your profile wall" +msgstr "Alguém escrever no mural do seu perfil" + +#: ../../mod/settings.php:1170 +msgid "Someone writes a followup comment" +msgstr "Alguém comentar a sua mensagem" + +#: ../../mod/settings.php:1171 +msgid "You receive a private message" +msgstr "Você recebeu uma mensagem privada" + +#: ../../mod/settings.php:1172 +msgid "You receive a friend suggestion" +msgstr "Você recebe uma suggestão de amigo" + +#: ../../mod/settings.php:1173 +msgid "You are tagged in a post" +msgstr "Você foi etiquetado em uma publicação" + +#: ../../mod/settings.php:1174 +msgid "You are poked/prodded/etc. in a post" +msgstr "Você está cutucado/incitado/etc. em uma publicação" + +#: ../../mod/settings.php:1177 +msgid "Advanced Account/Page Type Settings" +msgstr "Conta avançada/Configurações do tipo de página" + +#: ../../mod/settings.php:1178 +msgid "Change the behaviour of this account for special situations" +msgstr "Modificar o comportamento desta conta em situações especiais" + +#: ../../mod/settings.php:1181 +msgid "Relocate" +msgstr "Relocação" + +#: ../../mod/settings.php:1182 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão." + +#: ../../mod/settings.php:1183 +msgid "Resend relocate message to contacts" +msgstr "Reenviar mensagem de relocação para os contatos" + +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "O item foi removido." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Pesquisar pessoas" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nenhuma correspondência" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "O perfil foi excluído." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Perfil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "O novo perfil foi criado." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "O perfil não está disponível para clonagem." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "É necessário informar o nome do perfil." + +#: ../../mod/profiles.php:321 +msgid "Marital Status" +msgstr "Situação amorosa" + +#: ../../mod/profiles.php:325 +msgid "Romantic Partner" +msgstr "Parceiro romântico" + +#: ../../mod/profiles.php:329 +msgid "Likes" +msgstr "Gosta de" + +#: ../../mod/profiles.php:333 +msgid "Dislikes" +msgstr "Não gosta de" + +#: ../../mod/profiles.php:337 +msgid "Work/Employment" +msgstr "Trabalho/emprego" + +#: ../../mod/profiles.php:340 +msgid "Religion" +msgstr "Religião" + +#: ../../mod/profiles.php:344 +msgid "Political Views" +msgstr "Posicionamento político" + +#: ../../mod/profiles.php:348 +msgid "Gender" +msgstr "Gênero" + +#: ../../mod/profiles.php:352 +msgid "Sexual Preference" +msgstr "Preferência sexual" + +#: ../../mod/profiles.php:356 +msgid "Homepage" +msgstr "Página Principal" + +#: ../../mod/profiles.php:360 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:364 +msgid "Address" +msgstr "Endereço" + +#: ../../mod/profiles.php:371 +msgid "Location" +msgstr "Localização" + +#: ../../mod/profiles.php:454 +msgid "Profile updated." +msgstr "O perfil foi atualizado." + +#: ../../mod/profiles.php:525 +msgid " and " +msgstr " e " + +#: ../../mod/profiles.php:533 +msgid "public profile" +msgstr "perfil público" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s mudou %2$s para “%3$s”" + +#: ../../mod/profiles.php:537 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visite %2$s de %1$s" + +#: ../../mod/profiles.php:540 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s foi atualizado %2$s, mudando %3$s." + +#: ../../mod/profiles.php:613 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?" + +#: ../../mod/profiles.php:633 +msgid "Edit Profile Details" +msgstr "Editar os detalhes do perfil" + +#: ../../mod/profiles.php:635 +msgid "Change Profile Photo" +msgstr "Mudar Foto do Perfil" + +#: ../../mod/profiles.php:636 +msgid "View this profile" +msgstr "Ver este perfil" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Criar um novo perfil usando estas configurações" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Excluir este perfil" + +#: ../../mod/profiles.php:640 +msgid "Profile Name:" +msgstr "Nome do perfil:" + +#: ../../mod/profiles.php:641 +msgid "Your Full Name:" +msgstr "Seu nome completo:" + +#: ../../mod/profiles.php:642 +msgid "Title/Description:" +msgstr "Título/Descrição:" + +#: ../../mod/profiles.php:643 +msgid "Your Gender:" +msgstr "Seu gênero:" + +#: ../../mod/profiles.php:644 +#, php-format +msgid "Birthday (%s):" +msgstr "Aniversário (%s):" + +#: ../../mod/profiles.php:645 +msgid "Street Address:" +msgstr "Endereço:" + +#: ../../mod/profiles.php:646 +msgid "Locality/City:" +msgstr "Localidade/Cidade:" + +#: ../../mod/profiles.php:647 +msgid "Postal/Zip Code:" +msgstr "CEP:" + +#: ../../mod/profiles.php:648 +msgid "Country:" +msgstr "País:" + +#: ../../mod/profiles.php:649 +msgid "Region/State:" +msgstr "Região/Estado:" + +#: ../../mod/profiles.php:650 +msgid " Marital Status:" +msgstr " Situação amorosa:" + +#: ../../mod/profiles.php:651 +msgid "Who: (if applicable)" +msgstr "Quem: (se pertinente)" + +#: ../../mod/profiles.php:652 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" + +#: ../../mod/profiles.php:653 +msgid "Since [date]:" +msgstr "Desde [data]:" + +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Preferência sexual:" + +#: ../../mod/profiles.php:655 +msgid "Homepage URL:" +msgstr "Endereço do site web:" + +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Cidade:" + +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Posição política:" + +#: ../../mod/profiles.php:658 +msgid "Religious Views:" +msgstr "Orientação religiosa:" + +#: ../../mod/profiles.php:659 +msgid "Public Keywords:" +msgstr "Palavras-chave públicas:" + +#: ../../mod/profiles.php:660 +msgid "Private Keywords:" +msgstr "Palavras-chave privadas:" + +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Gosta de:" + +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Não gosta de:" + +#: ../../mod/profiles.php:663 +msgid "Example: fishing photography software" +msgstr "Exemplo: pesca fotografia software" + +#: ../../mod/profiles.php:664 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)" + +#: ../../mod/profiles.php:665 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)" + +#: ../../mod/profiles.php:666 +msgid "Tell us about yourself..." +msgstr "Fale um pouco sobre você..." + +#: ../../mod/profiles.php:667 +msgid "Hobbies/Interests" +msgstr "Passatempos/Interesses" + +#: ../../mod/profiles.php:668 +msgid "Contact information and Social Networks" +msgstr "Informações de contato e redes sociais" + +#: ../../mod/profiles.php:669 +msgid "Musical interests" +msgstr "Preferências musicais" + +#: ../../mod/profiles.php:670 +msgid "Books, literature" +msgstr "Livros, literatura" + +#: ../../mod/profiles.php:671 +msgid "Television" +msgstr "Televisão" + +#: ../../mod/profiles.php:672 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/dança/cultura/entretenimento" + +#: ../../mod/profiles.php:673 +msgid "Love/romance" +msgstr "Amor/romance" + +#: ../../mod/profiles.php:674 +msgid "Work/employment" +msgstr "Trabalho/emprego" + +#: ../../mod/profiles.php:675 +msgid "School/education" +msgstr "Escola/educação" + +#: ../../mod/profiles.php:680 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet." + +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Idade: " + +#: ../../mod/profiles.php:729 +msgid "Edit/Manage Profiles" +msgstr "Editar/Gerenciar perfis" + +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Mudar a foto do perfil" + +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Criar um novo perfil" + +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Imagem do perfil" + +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "visível para todos" + +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Editar a visibilidade" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "ligação" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Exportar conta" + +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Exportar tudo" + +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} deseja ser seu amigo" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} lhe enviou uma mensagem" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} solicitou registro" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} comentou a publicação de %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} gostou da publicação de %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} desgostou da publicação de %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} agora é amigo de %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} publicou" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} etiquetou a publicação de %s com #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} mencionou você em uma publicação" + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Nada de novo aqui" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Descartar notificações" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Não disponível." + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Comunidade" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Salvar na pasta:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "-selecione-" + +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Salvar" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Ou - você tentou enviar um arquivo vazio?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "O arquivo excedeu o tamanho limite de %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Não foi possível enviar o arquivo." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil inválido." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidade do perfil" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Clique em um contato para adicionar ou remover." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visível para" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Todos os contatos (com acesso a perfil seguro)" + #: ../../mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" msgstr "Você realmente deseja deletar essa sugestão?" -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249 -#: ../../mod/settings.php:598 ../../mod/settings.php:624 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4039 -msgid "Cancel" -msgstr "Cancelar" +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Sugestões de amigos" #: ../../mod/suggest.php:72 msgid "" @@ -1481,110 +4452,237 @@ msgid "" "hours." msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas." +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Conectar" + #: ../../mod/suggest.php:90 msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../mod/network.php:179 -msgid "Search Results For:" -msgstr "Resultados de Busca Por:" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Acesso negado." -#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Remover o termo" - -#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - -#: ../../mod/network.php:232 ../../include/group.php:275 -msgid "add" -msgstr "adicionar" - -#: ../../mod/network.php:394 -msgid "Commented Order" -msgstr "Ordem dos comentários" - -#: ../../mod/network.php:397 -msgid "Sort by Comment Date" -msgstr "Ordenar pela data do comentário" - -#: ../../mod/network.php:400 -msgid "Posted Order" -msgstr "Ordem das publicações" - -#: ../../mod/network.php:403 -msgid "Sort by Post Date" -msgstr "Ordenar pela data de publicação" - -#: ../../mod/network.php:441 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Pessoal" - -#: ../../mod/network.php:444 -msgid "Posts that mention or involve you" -msgstr "Publicações que mencionem ou envolvam você" - -#: ../../mod/network.php:450 -msgid "New" -msgstr "Nova" - -#: ../../mod/network.php:453 -msgid "Activity Stream - by date" -msgstr "Fluxo de atividades - por data" - -#: ../../mod/network.php:459 -msgid "Shared Links" -msgstr "Links compartilhados" - -#: ../../mod/network.php:462 -msgid "Interesting Links" -msgstr "Links interessantes" - -#: ../../mod/network.php:468 -msgid "Starred" -msgstr "Destacada" - -#: ../../mod/network.php:471 -msgid "Favourite Posts" -msgstr "Publicações favoritas" - -#: ../../mod/network.php:539 +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, 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 contém %s membro de uma rede insegura." -msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura." +msgid "%1$s welcomes %2$s" +msgstr "%1$s dá as boas vinda à %2$s" -#: ../../mod/network.php:542 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública." +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gerenciar identidades e/ou páginas" -#: ../../mod/network.php:588 ../../mod/content.php:119 -msgid "No such group" -msgstr "Este grupo não existe" +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"" -#: ../../mod/network.php:599 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "O grupo está vazio" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Selecione uma identidade para gerenciar: " -#: ../../mod/network.php:605 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupo: " +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Nenhuma página delegada potencial localizada." -#: ../../mod/network.php:617 -msgid "Contact: " -msgstr "Contato: " +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Delegar Administração de Página" -#: ../../mod/network.php:619 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública." +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente." -#: ../../mod/network.php:624 -msgid "Invalid contact." -msgstr "Contato inválido." +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Administradores de Páginas Existentes" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Delegados de Páginas Existentes" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Delegados Potenciais" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Adicionar" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Sem entradas." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Nenhum contato." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Ver contatos" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Notas pessoais" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Cutucar/Incitar" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Cutuca, incita ou faz outras coisas com alguém" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatário" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Selecione o que você deseja fazer com o destinatário" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Fazer com que essa publicação se torne privada" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Diretório global" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Pesquisar neste site" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Diretório do site" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Gênero: " + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Gênero:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Situação:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Página web:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Sobre:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:133 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ H:i" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversão de tempo" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Hora UTC: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso horário atual: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Horário local convertido: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Por favor, selecione seu fuso horário:" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publicado com sucesso." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "A imagem foi enviada, mas não foi possível cortá-la." + +#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente" + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Não foi possível processar a imagem" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Enviar arquivo:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Selecione um perfil:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Enviar" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "pule esta etapa" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "selecione uma foto de um álbum de fotos" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Cortar a imagem" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajuste o corte da imagem para a melhor visualização." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Encerrar a edição" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "A imagem foi enviada com sucesso." #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -1617,10 +4715,6 @@ msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"." msgid "System check" msgstr "Checagem do sistema" -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" -msgstr "Próximo" - #: ../../mod/install.php:208 msgid "Check again" msgstr "Checar novamente" @@ -1885,2552 +4979,6 @@ msgid "" "poller." msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador." -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "As configurações do tema foram atualizadas." - -#: ../../mod/admin.php:101 ../../mod/admin.php:568 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908 -msgid "Users" -msgstr "Usuários" - -#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239 -msgid "Themes" -msgstr "Temas" - -#: ../../mod/admin.php:105 -msgid "DB updates" -msgstr "Atualizações do BD" - -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326 -msgid "Logs" -msgstr "Relatórios" - -#: ../../mod/admin.php:125 ../../include/nav.php:178 -msgid "Admin" -msgstr "Admin" - -#: ../../mod/admin.php:126 -msgid "Plugin Features" -msgstr "Recursos do plugin" - -#: ../../mod/admin.php:128 -msgid "User registrations waiting for confirmation" -msgstr "Cadastros de novos usuários aguardando confirmação" - -#: ../../mod/admin.php:187 ../../mod/admin.php:848 -msgid "Normal Account" -msgstr "Conta normal" - -#: ../../mod/admin.php:188 ../../mod/admin.php:849 -msgid "Soapbox Account" -msgstr "Conta de vitrine" - -#: ../../mod/admin.php:189 ../../mod/admin.php:850 -msgid "Community/Celebrity Account" -msgstr "Conta de comunidade/celebridade" - -#: ../../mod/admin.php:190 ../../mod/admin.php:851 -msgid "Automatic Friend Account" -msgstr "Conta de amigo automático" - -#: ../../mod/admin.php:191 -msgid "Blog Account" -msgstr "Conta de blog" - -#: ../../mod/admin.php:192 -msgid "Private Forum" -msgstr "Fórum privado" - -#: ../../mod/admin.php:211 -msgid "Message queues" -msgstr "Fila de mensagens" - -#: ../../mod/admin.php:216 ../../mod/admin.php:567 ../../mod/admin.php:892 -#: ../../mod/admin.php:996 ../../mod/admin.php:1038 ../../mod/admin.php:1204 -#: ../../mod/admin.php:1238 ../../mod/admin.php:1325 -msgid "Administration" -msgstr "Administração" - -#: ../../mod/admin.php:217 -msgid "Summary" -msgstr "Resumo" - -#: ../../mod/admin.php:219 -msgid "Registered users" -msgstr "Usuários registrados" - -#: ../../mod/admin.php:221 -msgid "Pending registrations" -msgstr "Registros pendentes" - -#: ../../mod/admin.php:222 -msgid "Version" -msgstr "Versão" - -#: ../../mod/admin.php:224 -msgid "Active plugins" -msgstr "Plugins ativos" - -#: ../../mod/admin.php:247 -msgid "Can not parse base url. Must have at least ://" -msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos ://" - -#: ../../mod/admin.php:481 -msgid "Site settings updated." -msgstr "As configurações do site foram atualizadas." - -#: ../../mod/admin.php:510 ../../mod/settings.php:806 -msgid "No special theme for mobile devices" -msgstr "Nenhum tema especial para dispositivos móveis" - -#: ../../mod/admin.php:527 ../../mod/contacts.php:330 -msgid "Never" -msgstr "Nunca" - -#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "De hora em hora" - -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Duas vezes ao dia" - -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" - -#: ../../mod/admin.php:536 -msgid "Multi user instance" -msgstr "Instância multi usuário" - -#: ../../mod/admin.php:554 -msgid "Closed" -msgstr "Fechado" - -#: ../../mod/admin.php:555 -msgid "Requires approval" -msgstr "Requer aprovação" - -#: ../../mod/admin.php:556 -msgid "Open" -msgstr "Aberto" - -#: ../../mod/admin.php:560 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página" - -#: ../../mod/admin.php:561 -msgid "Force all links to use SSL" -msgstr "Forçar todos os links a utilizar SSL" - -#: ../../mod/admin.php:562 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)" - -#: ../../mod/admin.php:569 ../../mod/admin.php:1040 ../../mod/admin.php:1240 -#: ../../mod/admin.php:1327 ../../mod/settings.php:597 -#: ../../mod/settings.php:707 ../../mod/settings.php:776 -#: ../../mod/settings.php:852 ../../mod/settings.php:1080 -msgid "Save Settings" -msgstr "Salvar configurações" - -#: ../../mod/admin.php:571 -msgid "File upload" -msgstr "Envio de arquivo" - -#: ../../mod/admin.php:572 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:573 -msgid "Advanced" -msgstr "Avançado" - -#: ../../mod/admin.php:574 -msgid "Performance" -msgstr "Performance" - -#: ../../mod/admin.php:575 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível." - -#: ../../mod/admin.php:579 -msgid "Site name" -msgstr "Nome do site" - -#: ../../mod/admin.php:580 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:581 -msgid "Additional Info" -msgstr "Informação adicional" - -#: ../../mod/admin.php:581 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo." - -#: ../../mod/admin.php:582 -msgid "System language" -msgstr "Idioma do sistema" - -#: ../../mod/admin.php:583 -msgid "System theme" -msgstr "Tema do sistema" - -#: ../../mod/admin.php:583 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário - alterar configurações do tema" - -#: ../../mod/admin.php:584 -msgid "Mobile system theme" -msgstr "Tema do sistema para dispositivos móveis" - -#: ../../mod/admin.php:584 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móveis" - -#: ../../mod/admin.php:585 -msgid "SSL link policy" -msgstr "Política de link SSL" - -#: ../../mod/admin.php:585 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se os links gerados devem ser forçados a utilizar SSL" - -#: ../../mod/admin.php:586 -msgid "Old style 'Share'" -msgstr "Estilo antigo do 'Compartilhar' " - -#: ../../mod/admin.php:586 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens." - -#: ../../mod/admin.php:587 -msgid "Hide help entry from navigation menu" -msgstr "Oculta a entrada 'Ajuda' do menu de navegação" - -#: ../../mod/admin.php:587 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente." - -#: ../../mod/admin.php:588 -msgid "Single user instance" -msgstr "Instância de usuário único" - -#: ../../mod/admin.php:588 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão" - -#: ../../mod/admin.php:589 -msgid "Maximum image size" -msgstr "Tamanho máximo da imagem" - -#: ../../mod/admin.php:589 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites" - -#: ../../mod/admin.php:590 -msgid "Maximum image length" -msgstr "Tamanho máximo da imagem" - -#: ../../mod/admin.php:590 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites." - -#: ../../mod/admin.php:591 -msgid "JPEG image quality" -msgstr "Qualidade da imagem JPEG" - -#: ../../mod/admin.php:591 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade." - -#: ../../mod/admin.php:593 -msgid "Register policy" -msgstr "Política de registro" - -#: ../../mod/admin.php:594 -msgid "Maximum Daily Registrations" -msgstr "Registros Diários Máximos" - -#: ../../mod/admin.php:594 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' , essa configuração não tem efeito." - -#: ../../mod/admin.php:595 -msgid "Register text" -msgstr "Texto de registro" - -#: ../../mod/admin.php:595 -msgid "Will be displayed prominently on the registration page." -msgstr "Será exibido com destaque na página de registro." - -#: ../../mod/admin.php:596 -msgid "Accounts abandoned after x days" -msgstr "Contas abandonadas após x dias" - -#: ../../mod/admin.php:596 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo." - -#: ../../mod/admin.php:597 -msgid "Allowed friend domains" -msgstr "Domínios de amigos permitidos" - -#: ../../mod/admin.php:597 -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 dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio." - -#: ../../mod/admin.php:598 -msgid "Allowed email domains" -msgstr "Domínios de e-mail permitidos" - -#: ../../mod/admin.php:598 -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 de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio" - -#: ../../mod/admin.php:599 -msgid "Block public" -msgstr "Bloquear acesso público" - -#: ../../mod/admin.php:599 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada." - -#: ../../mod/admin.php:600 -msgid "Force publish" -msgstr "Forçar a listagem" - -#: ../../mod/admin.php:600 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site." - -#: ../../mod/admin.php:601 -msgid "Global directory update URL" -msgstr "URL de atualização do diretório global" - -#: ../../mod/admin.php:601 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site." - -#: ../../mod/admin.php:602 -msgid "Allow threaded items" -msgstr "Habilita itens aninhados" - -#: ../../mod/admin.php:602 -msgid "Allow infinite level threading for items on this site." -msgstr "Habilita nível infinito de aninhamento (threading) para itens." - -#: ../../mod/admin.php:603 -msgid "Private posts by default for new users" -msgstr "Publicações privadas por padrão para novos usuários" - -#: ../../mod/admin.php:603 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas." - -#: ../../mod/admin.php:604 -msgid "Don't include post content in email notifications" -msgstr "Não incluir o conteúdo da postagem nas notificações de email" - -#: ../../mod/admin.php:604 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança." - -#: ../../mod/admin.php:605 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita acesso público a addons listados no menu de aplicativos." - -#: ../../mod/admin.php:605 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente." - -#: ../../mod/admin.php:606 -msgid "Don't embed private images in posts" -msgstr "Não inclua imagens privadas em publicações" - -#: ../../mod/admin.php:606 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo." - -#: ../../mod/admin.php:608 -msgid "Block multiple registrations" -msgstr "Bloquear registros repetidos" - -#: ../../mod/admin.php:608 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas." - -#: ../../mod/admin.php:609 -msgid "OpenID support" -msgstr "Suporte ao OpenID" - -#: ../../mod/admin.php:609 -msgid "OpenID support for registration and logins." -msgstr "Suporte ao OpenID para registros e autenticações." - -#: ../../mod/admin.php:610 -msgid "Fullname check" -msgstr "Verificar nome completo" - -#: ../../mod/admin.php:610 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam" - -#: ../../mod/admin.php:611 -msgid "UTF-8 Regular expressions" -msgstr "Expressões regulares UTF-8" - -#: ../../mod/admin.php:611 -msgid "Use PHP UTF8 regular expressions" -msgstr "Use expressões regulares do PHP em UTF8" - -#: ../../mod/admin.php:612 -msgid "Show Community Page" -msgstr "Exibir a página da comunidade" - -#: ../../mod/admin.php:612 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site." - -#: ../../mod/admin.php:613 -msgid "Enable OStatus support" -msgstr "Habilitar suporte ao OStatus" - -#: ../../mod/admin.php:613 -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 "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente." - -#: ../../mod/admin.php:614 -msgid "OStatus conversation completion interval" -msgstr "Intervalo de finalização da conversação OStatus " - -#: ../../mod/admin.php:614 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada." - -#: ../../mod/admin.php:615 -msgid "Enable Diaspora support" -msgstr "Habilitar suporte ao Diaspora" - -#: ../../mod/admin.php:615 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornece compatibilidade nativa com a rede Diaspora." - -#: ../../mod/admin.php:616 -msgid "Only allow Friendica contacts" -msgstr "Permitir somente contatos Friendica" - -#: ../../mod/admin.php:616 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados" - -#: ../../mod/admin.php:617 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: ../../mod/admin.php:617 -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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados." - -#: ../../mod/admin.php:618 -msgid "Proxy user" -msgstr "Usuário do proxy" - -#: ../../mod/admin.php:619 -msgid "Proxy URL" -msgstr "URL do proxy" - -#: ../../mod/admin.php:620 -msgid "Network timeout" -msgstr "Limite de tempo da rede" - -#: ../../mod/admin.php:620 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)." - -#: ../../mod/admin.php:621 -msgid "Delivery interval" -msgstr "Intervalo de envio" - -#: ../../mod/admin.php:621 -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 "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados." - -#: ../../mod/admin.php:622 -msgid "Poll interval" -msgstr "Intervalo da busca (polling)" - -#: ../../mod/admin.php:622 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega." - -#: ../../mod/admin.php:623 -msgid "Maximum Load Average" -msgstr "Média de Carga Máxima" - -#: ../../mod/admin.php:623 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50." - -#: ../../mod/admin.php:625 -msgid "Use MySQL full text engine" -msgstr "Use o engine de texto completo (full text) do MySQL" - -#: ../../mod/admin.php:625 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres." - -#: ../../mod/admin.php:626 -msgid "Suppress Language" -msgstr "Retira idioma" - -#: ../../mod/admin.php:626 -msgid "Suppress language information in meta information about a posting." -msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação." - -#: ../../mod/admin.php:627 -msgid "Path to item cache" -msgstr "Diretório do cache de item" - -#: ../../mod/admin.php:628 -msgid "Cache duration in seconds" -msgstr "Duração do cache em segundos" - -#: ../../mod/admin.php:628 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)." - -#: ../../mod/admin.php:629 -msgid "Path for lock file" -msgstr "Diretório do arquivo de trava" - -#: ../../mod/admin.php:630 -msgid "Temp path" -msgstr "Diretório Temp" - -#: ../../mod/admin.php:631 -msgid "Base path to installation" -msgstr "Diretório base para instalação" - -#: ../../mod/admin.php:633 -msgid "New base url" -msgstr "Nova URL base" - -#: ../../mod/admin.php:651 -msgid "Update has been marked successful" -msgstr "A atualização foi marcada como bem sucedida" - -#: ../../mod/admin.php:661 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema." - -#: ../../mod/admin.php:664 -#, php-format -msgid "Update %s was successfully applied." -msgstr "A atualização %s foi aplicada com sucesso." - -#: ../../mod/admin.php:668 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso." - -#: ../../mod/admin.php:671 -#, php-format -msgid "Update function %s could not be found." -msgstr "Não foi possível encontrar a função de atualização %s." - -#: ../../mod/admin.php:686 -msgid "No failed updates." -msgstr "Nenhuma atualização com falha." - -#: ../../mod/admin.php:690 -msgid "Failed Updates" -msgstr "Atualizações com falha" - -#: ../../mod/admin.php:691 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status." - -#: ../../mod/admin.php:692 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)" - -#: ../../mod/admin.php:693 -msgid "Attempt to execute this update step automatically" -msgstr "Tentar executar esse passo da atualização automaticamente" - -#: ../../mod/admin.php:739 -msgid "Registration successful. Email send to user" -msgstr "Registro bem sucedido. Email enviado ao usuário." - -#: ../../mod/admin.php:749 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuário bloqueado/desbloqueado" -msgstr[1] "%s usuários bloqueados/desbloqueados" - -#: ../../mod/admin.php:756 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuário excluído" -msgstr[1] "%s usuários excluídos" - -#: ../../mod/admin.php:795 -#, php-format -msgid "User '%s' deleted" -msgstr "O usuário '%s' foi excluído" - -#: ../../mod/admin.php:803 -#, php-format -msgid "User '%s' unblocked" -msgstr "O usuário '%s' foi desbloqueado" - -#: ../../mod/admin.php:803 -#, php-format -msgid "User '%s' blocked" -msgstr "O usuário '%s' foi bloqueado" - -#: ../../mod/admin.php:894 -msgid "Add User" -msgstr "Adicionar usuário" - -#: ../../mod/admin.php:895 -msgid "select all" -msgstr "selecionar todos" - -#: ../../mod/admin.php:896 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:897 -msgid "User waiting for permanent deletion" -msgstr "Usuário aguardando por fim permanente da conta." - -#: ../../mod/admin.php:898 -msgid "Request date" -msgstr "Solicitar data" - -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:924 ../../mod/crepair.php:148 -#: ../../mod/settings.php:599 ../../mod/settings.php:625 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:926 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: ../../mod/admin.php:899 -msgid "No registrations." -msgstr "Nenhum registro." - -#: ../../mod/admin.php:900 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Aprovar" - -#: ../../mod/admin.php:901 -msgid "Deny" -msgstr "Negar" - -#: ../../mod/admin.php:903 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/admin.php:904 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/admin.php:905 -msgid "Site admin" -msgstr "Administração do site" - -#: ../../mod/admin.php:906 -msgid "Account expired" -msgstr "Conta expirou" - -#: ../../mod/admin.php:909 -msgid "New User" -msgstr "Novo usuário" - -#: ../../mod/admin.php:910 ../../mod/admin.php:911 -msgid "Register date" -msgstr "Data de registro" - -#: ../../mod/admin.php:910 ../../mod/admin.php:911 -msgid "Last login" -msgstr "Última entrada" - -#: ../../mod/admin.php:910 ../../mod/admin.php:911 -msgid "Last item" -msgstr "Último item" - -#: ../../mod/admin.php:910 -msgid "Deleted since" -msgstr "Apagado desde" - -#: ../../mod/admin.php:911 -msgid "Account" -msgstr "Conta" - -#: ../../mod/admin.php:913 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?" - -#: ../../mod/admin.php:914 -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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?" - -#: ../../mod/admin.php:924 -msgid "Name of the new user." -msgstr "Nome do novo usuários." - -#: ../../mod/admin.php:925 -msgid "Nickname" -msgstr "Apelido" - -#: ../../mod/admin.php:925 -msgid "Nickname of the new user." -msgstr "Apelido para o novo usuário." - -#: ../../mod/admin.php:926 -msgid "Email address of the new user." -msgstr "Endereço de e-mail do novo usuário." - -#: ../../mod/admin.php:959 -#, php-format -msgid "Plugin %s disabled." -msgstr "O plugin %s foi desabilitado." - -#: ../../mod/admin.php:963 -#, php-format -msgid "Plugin %s enabled." -msgstr "O plugin %s foi habilitado." - -#: ../../mod/admin.php:973 ../../mod/admin.php:1176 -msgid "Disable" -msgstr "Desabilitar" - -#: ../../mod/admin.php:975 ../../mod/admin.php:1178 -msgid "Enable" -msgstr "Habilitar" - -#: ../../mod/admin.php:998 ../../mod/admin.php:1206 -msgid "Toggle" -msgstr "Alternar" - -#: ../../mod/admin.php:1006 ../../mod/admin.php:1216 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:1007 ../../mod/admin.php:1217 -msgid "Maintainer: " -msgstr "Mantenedor: " - -#: ../../mod/admin.php:1136 -msgid "No themes found." -msgstr "Nenhum tema encontrado" - -#: ../../mod/admin.php:1198 -msgid "Screenshot" -msgstr "Captura de tela" - -#: ../../mod/admin.php:1244 -msgid "[Experimental]" -msgstr "[Esperimental]" - -#: ../../mod/admin.php:1245 -msgid "[Unsupported]" -msgstr "[Não suportado]" - -#: ../../mod/admin.php:1272 -msgid "Log settings updated." -msgstr "As configurações de relatórios foram atualizadas." - -#: ../../mod/admin.php:1328 -msgid "Clear" -msgstr "Limpar" - -#: ../../mod/admin.php:1334 -msgid "Enable Debugging" -msgstr "Habilitar Debugging" - -#: ../../mod/admin.php:1335 -msgid "Log file" -msgstr "Arquivo do relatório" - -#: ../../mod/admin.php:1335 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica." - -#: ../../mod/admin.php:1336 -msgid "Log level" -msgstr "Nível do relatório" - -#: ../../mod/admin.php:1385 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "Atualizar agora" - -#: ../../mod/admin.php:1386 -msgid "Close" -msgstr "Fechar" - -#: ../../mod/admin.php:1392 -msgid "FTP Host" -msgstr "Endereço do FTP" - -#: ../../mod/admin.php:1393 -msgid "FTP Path" -msgstr "Caminho do FTP" - -#: ../../mod/admin.php:1394 -msgid "FTP User" -msgstr "Usuário do FTP" - -#: ../../mod/admin.php:1395 -msgid "FTP Password" -msgstr "Senha do FTP" - -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927 -#: ../../include/text.php:928 ../../include/nav.php:118 -msgid "Search" -msgstr "Pesquisar" - -#: ../../mod/_search.php:180 ../../mod/_search.php:206 -#: ../../mod/search.php:179 ../../mod/search.php:205 -#: ../../mod/community.php:61 ../../mod/community.php:91 -msgid "No results." -msgstr "Nenhum resultado." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Dicas para novos membros" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "ligação" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetou %3$s de %2$s com %4$s" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "O item não foi encontrado" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Editar a publicação" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 -msgid "upload photo" -msgstr "upload de foto" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 -msgid "Attach file" -msgstr "Anexar arquivo" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 -msgid "attach file" -msgstr "anexar arquivo" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 -msgid "web link" -msgstr "link web" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 -msgid "Insert video link" -msgstr "Inserir link de vídeo" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 -msgid "video link" -msgstr "link de vídeo" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 -msgid "Insert audio link" -msgstr "Inserir link de áudio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 -msgid "audio link" -msgstr "link de áudio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 -msgid "Set your location" -msgstr "Definir sua localização" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 -msgid "set location" -msgstr "configure localização" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 -msgid "Clear browser location" -msgstr "Limpar a localização do navegador" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 -msgid "clear location" -msgstr "apague localização" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 -msgid "Permission settings" -msgstr "Configurações de permissão" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 -msgid "CC: email addresses" -msgstr "CC: endereço de e-mail" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 -msgid "Public post" -msgstr "Publicação pública" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 -msgid "Set title" -msgstr "Definir o título" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 -msgid "Categories (comma-separated list)" -msgstr "Categorias (lista separada por vírgulas)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "O item não está disponível." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "O item não foi encontrado." - -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "A conta foi aprovada." - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "O registro de %s foi revogado" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Por favor, autentique-se." - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Pesquisar neste site" - -#: ../../mod/directory.php:59 ../../mod/contacts.php:612 -msgid "Finding: " -msgstr "Pesquisando: " - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Diretório do site" - -#: ../../mod/directory.php:61 ../../mod/contacts.php:613 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Pesquisar" - -#: ../../mod/directory.php:111 ../../mod/profiles.php:686 -msgid "Age: " -msgstr "Idade: " - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Gênero: " - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Sobre:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)." - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "As configurações do contato foram aplicadas." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Não foi possível atualizar o contato." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Corrigir configurações do contato" - -#: ../../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 "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar 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, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo." - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Voltar ao editor de contatos" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Identificação da conta" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - sobrescreve Nome/Identificação" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL da conta" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL da requisição de amizade" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL da confirmação de amizade" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL do ponto final da notificação" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "URL do captador/fonte de notícias" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nova imagem desta URL" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Mover conta" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Você pode importar um conta de outro sevidor Friendica." - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Arquivo de conta" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Não existe informação disponível sobre a privacidade remota." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visível para:" - -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930 -msgid "Save" -msgstr "Salvar" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/help.php:84 ../../include/nav.php:113 -msgid "Help" -msgstr "Ajuda" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nenhum perfil" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Esta apresentação já foi aceita." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "A localização do perfil não é válida ou não contém uma informação de perfil." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida" -msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "A apresentação foi finalizada." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Ocorreu um erro irrecuperável de protocolo." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "O perfil não está disponível." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s recebeu solicitações de conexão em excesso hoje." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "As medidas de proteção contra spam foram ativadas." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Os amigos foram notificados para tentar novamente em 24 horas." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Localizador inválido" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Endereço de e-mail inválido." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Não foi possível encontrar a sua identificação no endereço indicado." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Você já fez a sua apresentação aqui." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Aparentemente você já é amigo de %s." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "URL de perfil inválida." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "URL de perfil não permitida." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Não foi possível atualizar o registro do contato." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "A sua apresentação foi enviada." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Por favor, autentique-se para confirmar a apresentação." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "A identidade autenticada está incorreta. Por favor, entre como este perfil." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Ocultar este contato" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Bem-vindo(a) à sua página pessoal %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504 -msgid "[Name Withheld]" -msgstr "[Nome não revelado]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Conectar como um acompanhante por e-mail (Em breve)" - -#: ../../mod/dfrn_request.php:829 -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 "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Solicitação de amizade/conexão" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Por favor, entre com as informações solicitadas:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "%s conhece você?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Adicione uma anotação pessoal:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Seu endereço de identificação:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Enviar solicitação" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: ../../mod/content.php:496 ../../include/conversation.php:686 -msgid "View in context" -msgstr "Ver no contexto" - -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 -msgid "Could not access contact record." -msgstr "Não foi possível acessar o registro do contato." - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "Não foi possível localizar o perfil selecionado." - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "O contato foi atualizado." - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "O contato foi bloqueado" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "O contato foi desbloqueado" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "O contato foi ignorado" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "O contato deixou de ser ignorado" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "O contato foi arquivado" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "O contato foi desarquivado" - -#: ../../mod/contacts.php:244 -msgid "Do you really want to delete this contact?" -msgstr "Você realmente deseja deletar esse contato?" - -#: ../../mod/contacts.php:263 -msgid "Contact has been removed." -msgstr "O contato foi removido." - -#: ../../mod/contacts.php:301 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Você possui uma amizade mútua com %s" - -#: ../../mod/contacts.php:305 -#, php-format -msgid "You are sharing with %s" -msgstr "Você está compartilhando com %s" - -#: ../../mod/contacts.php:310 -#, php-format -msgid "%s is sharing with you" -msgstr "%s está compartilhando com você" - -#: ../../mod/contacts.php:327 -msgid "Private communications are not available for this contact." -msgstr "As comunicações privadas não estão disponíveis para este contato." - -#: ../../mod/contacts.php:334 -msgid "(Update was successful)" -msgstr "(A atualização foi bem sucedida)" - -#: ../../mod/contacts.php:334 -msgid "(Update was not successful)" -msgstr "(A atualização não foi bem sucedida)" - -#: ../../mod/contacts.php:336 -msgid "Suggest friends" -msgstr "Sugerir amigos" - -#: ../../mod/contacts.php:340 -#, php-format -msgid "Network type: %s" -msgstr "Tipo de rede: %s" - -#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contato em comum" -msgstr[1] "%d contatos em comum" - -#: ../../mod/contacts.php:348 -msgid "View all contacts" -msgstr "Ver todos os contatos" - -#: ../../mod/contacts.php:356 -msgid "Toggle Blocked status" -msgstr "Alternar o status de bloqueio" - -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -msgid "Unignore" -msgstr "Deixar de ignorar" - -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../mod/contacts.php:362 -msgid "Toggle Ignored status" -msgstr "Alternar o status de ignorado" - -#: ../../mod/contacts.php:366 -msgid "Unarchive" -msgstr "Desarquivar" - -#: ../../mod/contacts.php:366 -msgid "Archive" -msgstr "Arquivar" - -#: ../../mod/contacts.php:369 -msgid "Toggle Archive status" -msgstr "Alternar o status de arquivamento" - -#: ../../mod/contacts.php:372 -msgid "Repair" -msgstr "Reparar" - -#: ../../mod/contacts.php:375 -msgid "Advanced Contact Settings" -msgstr "Configurações avançadas do contato" - -#: ../../mod/contacts.php:381 -msgid "Communications lost with this contact!" -msgstr "As comunicações com esse contato foram perdidas!" - -#: ../../mod/contacts.php:384 -msgid "Contact Editor" -msgstr "Editor de contatos" - -#: ../../mod/contacts.php:387 -msgid "Profile Visibility" -msgstr "Visibilidade do perfil" - -#: ../../mod/contacts.php:388 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro." - -#: ../../mod/contacts.php:389 -msgid "Contact Information / Notes" -msgstr "Informações sobre o contato / Anotações" - -#: ../../mod/contacts.php:390 -msgid "Edit contact notes" -msgstr "Editar as anotações do contato" - -#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar o perfil de %s [%s]" - -#: ../../mod/contacts.php:396 -msgid "Block/Unblock contact" -msgstr "Bloquear/desbloquear o contato" - -#: ../../mod/contacts.php:397 -msgid "Ignore contact" -msgstr "Ignorar o contato" - -#: ../../mod/contacts.php:398 -msgid "Repair URL settings" -msgstr "Reparar as definições de URL" - -#: ../../mod/contacts.php:399 -msgid "View conversations" -msgstr "Ver as conversas" - -#: ../../mod/contacts.php:401 -msgid "Delete contact" -msgstr "Excluir o contato" - -#: ../../mod/contacts.php:405 -msgid "Last update:" -msgstr "Última atualização:" - -#: ../../mod/contacts.php:407 -msgid "Update public posts" -msgstr "Atualizar publicações públicas" - -#: ../../mod/contacts.php:416 -msgid "Currently blocked" -msgstr "Atualmente bloqueado" - -#: ../../mod/contacts.php:417 -msgid "Currently ignored" -msgstr "Atualmente ignorado" - -#: ../../mod/contacts.php:418 -msgid "Currently archived" -msgstr "Atualmente arquivado" - -#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Ocultar este contato dos outros" - -#: ../../mod/contacts.php:419 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Respostas/gostadas associados às suas publicações ainda podem estar visíveis" - -#: ../../mod/contacts.php:470 -msgid "Suggestions" -msgstr "Sugestões" - -#: ../../mod/contacts.php:473 -msgid "Suggest potential friends" -msgstr "Sugerir amigos em potencial" - -#: ../../mod/contacts.php:476 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Todos os contatos" - -#: ../../mod/contacts.php:479 -msgid "Show all contacts" -msgstr "Exibe todos os contatos" - -#: ../../mod/contacts.php:482 -msgid "Unblocked" -msgstr "Desbloquear" - -#: ../../mod/contacts.php:485 -msgid "Only show unblocked contacts" -msgstr "Exibe somente contatos desbloqueados" - -#: ../../mod/contacts.php:489 -msgid "Blocked" -msgstr "Bloqueado" - -#: ../../mod/contacts.php:492 -msgid "Only show blocked contacts" -msgstr "Exibe somente contatos bloqueados" - -#: ../../mod/contacts.php:496 -msgid "Ignored" -msgstr "Ignorados" - -#: ../../mod/contacts.php:499 -msgid "Only show ignored contacts" -msgstr "Exibe somente contatos ignorados" - -#: ../../mod/contacts.php:503 -msgid "Archived" -msgstr "Arquivados" - -#: ../../mod/contacts.php:506 -msgid "Only show archived contacts" -msgstr "Exibe somente contatos arquivados" - -#: ../../mod/contacts.php:510 -msgid "Hidden" -msgstr "Ocultos" - -#: ../../mod/contacts.php:513 -msgid "Only show hidden contacts" -msgstr "Exibe somente contatos ocultos" - -#: ../../mod/contacts.php:561 -msgid "Mutual Friendship" -msgstr "Amizade mútua" - -#: ../../mod/contacts.php:565 -msgid "is a fan of yours" -msgstr "é um fã seu" - -#: ../../mod/contacts.php:569 -msgid "you are a fan of" -msgstr "você é um fã de" - -#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editar o contato" - -#: ../../mod/contacts.php:611 -msgid "Search your contacts" -msgstr "Pesquisar seus contatos" - -#: ../../mod/settings.php:28 ../../mod/photos.php:79 -msgid "everybody" -msgstr "todos" - -#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Configurações da conta" - -#: ../../mod/settings.php:40 -msgid "Additional features" -msgstr "Funcionalidades adicionais" - -#: ../../mod/settings.php:45 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Configurações de exibição" - -#: ../../mod/settings.php:51 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Configurações do conector" - -#: ../../mod/settings.php:56 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Configurações dos plugins" - -#: ../../mod/settings.php:61 ../../mod/uexport.php:30 -msgid "Connected apps" -msgstr "Aplicações conectadas" - -#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 -msgid "Export personal data" -msgstr "Exportar dados pessoais" - -#: ../../mod/settings.php:71 ../../mod/uexport.php:40 -msgid "Remove account" -msgstr "Remover a conta" - -#: ../../mod/settings.php:123 -msgid "Missing some important data!" -msgstr "Está faltando algum dado importante!" - -#: ../../mod/settings.php:126 ../../mod/settings.php:623 -msgid "Update" -msgstr "Atualizar" - -#: ../../mod/settings.php:232 -msgid "Failed to connect with email account using the settings provided." -msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas." - -#: ../../mod/settings.php:237 -msgid "Email settings updated." -msgstr "As configurações de e-mail foram atualizadas." - -#: ../../mod/settings.php:252 -msgid "Features updated" -msgstr "Funcionalidades atualizadas" - -#: ../../mod/settings.php:311 -msgid "Relocate message has been send to your contacts" -msgstr "A mensagem de relocação foi enviada para seus contatos" - -#: ../../mod/settings.php:325 -msgid "Passwords do not match. Password unchanged." -msgstr "As senhas não correspondem. A senha não foi modificada." - -#: ../../mod/settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Não é permitido uma senha em branco. A senha não foi modificada." - -#: ../../mod/settings.php:338 -msgid "Wrong password." -msgstr "Senha errada." - -#: ../../mod/settings.php:349 -msgid "Password changed." -msgstr "A senha foi modificada." - -#: ../../mod/settings.php:351 -msgid "Password update failed. Please try again." -msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." - -#: ../../mod/settings.php:416 -msgid " Please use a shorter name." -msgstr " Por favor, use um nome mais curto." - -#: ../../mod/settings.php:418 -msgid " Name too short." -msgstr " O nome é muito curto." - -#: ../../mod/settings.php:427 -msgid "Wrong Password" -msgstr "Senha Errada" - -#: ../../mod/settings.php:432 -msgid " Not valid email." -msgstr " Não é um e-mail válido." - -#: ../../mod/settings.php:435 -msgid " Cannot change to that email." -msgstr " Não foi possível alterar para esse e-mail." - -#: ../../mod/settings.php:489 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão." - -#: ../../mod/settings.php:493 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "As configurações foram atualizadas." - -#: ../../mod/settings.php:596 ../../mod/settings.php:622 -#: ../../mod/settings.php:658 -msgid "Add application" -msgstr "Adicionar aplicação" - -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -msgid "Consumer Key" -msgstr "Chave do consumidor" - -#: ../../mod/settings.php:601 ../../mod/settings.php:627 -msgid "Consumer Secret" -msgstr "Segredo do consumidor" - -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -msgid "Redirect" -msgstr "Redirecionar" - -#: ../../mod/settings.php:603 ../../mod/settings.php:629 -msgid "Icon url" -msgstr "URL do ícone" - -#: ../../mod/settings.php:614 -msgid "You can't edit this application." -msgstr "Você não pode editar esta aplicação." - -#: ../../mod/settings.php:657 -msgid "Connected Apps" -msgstr "Aplicações conectadas" - -#: ../../mod/settings.php:661 -msgid "Client key starts with" -msgstr "A chave do cliente inicia com" - -#: ../../mod/settings.php:662 -msgid "No name" -msgstr "Sem nome" - -#: ../../mod/settings.php:663 -msgid "Remove authorization" -msgstr "Remover autorização" - -#: ../../mod/settings.php:675 -msgid "No Plugin settings configured" -msgstr "Não foi definida nenhuma configuração de plugin" - -#: ../../mod/settings.php:683 -msgid "Plugin Settings" -msgstr "Configurações do plugin" - -#: ../../mod/settings.php:697 -msgid "Off" -msgstr "Off" - -#: ../../mod/settings.php:697 -msgid "On" -msgstr "On" - -#: ../../mod/settings.php:705 -msgid "Additional Features" -msgstr "Funcionalidades Adicionais" - -#: ../../mod/settings.php:718 ../../mod/settings.php:719 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "O suporte interno para conectividade de %s está %s" - -#: ../../mod/settings.php:718 ../../mod/settings.php:719 -msgid "enabled" -msgstr "habilitado" - -#: ../../mod/settings.php:718 ../../mod/settings.php:719 -msgid "disabled" -msgstr "desabilitado" - -#: ../../mod/settings.php:719 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:751 -msgid "Email access is disabled on this site." -msgstr "O acesso ao e-mail está desabilitado neste site." - -#: ../../mod/settings.php:758 -msgid "Connector Settings" -msgstr "Configurações do conector" - -#: ../../mod/settings.php:763 -msgid "Email/Mailbox Setup" -msgstr "Configurações do e-mail/caixa postal" - -#: ../../mod/settings.php:764 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal." - -#: ../../mod/settings.php:765 -msgid "Last successful email check:" -msgstr "Última checagem bem sucedida de e-mail:" - -#: ../../mod/settings.php:767 -msgid "IMAP server name:" -msgstr "Nome do servidor IMAP:" - -#: ../../mod/settings.php:768 -msgid "IMAP port:" -msgstr "Porta do IMAP:" - -#: ../../mod/settings.php:769 -msgid "Security:" -msgstr "Segurança:" - -#: ../../mod/settings.php:769 ../../mod/settings.php:774 -msgid "None" -msgstr "Nenhuma" - -#: ../../mod/settings.php:770 -msgid "Email login name:" -msgstr "Nome de usuário do e-mail:" - -#: ../../mod/settings.php:771 -msgid "Email password:" -msgstr "Senha do e-mail:" - -#: ../../mod/settings.php:772 -msgid "Reply-to address:" -msgstr "Endereço de resposta (Reply-to):" - -#: ../../mod/settings.php:773 -msgid "Send public posts to all email contacts:" -msgstr "Enviar publicações públicas para todos os contatos de e-mail:" - -#: ../../mod/settings.php:774 -msgid "Action after import:" -msgstr "Ação após a importação:" - -#: ../../mod/settings.php:774 -msgid "Mark as seen" -msgstr "Marcar como visto" - -#: ../../mod/settings.php:774 -msgid "Move to folder" -msgstr "Mover para pasta" - -#: ../../mod/settings.php:775 -msgid "Move to folder:" -msgstr "Mover para pasta:" - -#: ../../mod/settings.php:850 -msgid "Display Settings" -msgstr "Configurações de exibição" - -#: ../../mod/settings.php:856 ../../mod/settings.php:869 -msgid "Display Theme:" -msgstr "Tema do perfil:" - -#: ../../mod/settings.php:857 -msgid "Mobile Theme:" -msgstr "Tema para dispositivos móveis:" - -#: ../../mod/settings.php:858 -msgid "Update browser every xx seconds" -msgstr "Atualizar o navegador a cada xx segundos" - -#: ../../mod/settings.php:858 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, não possui máximo" - -#: ../../mod/settings.php:859 -msgid "Number of items to display per page:" -msgstr "Número de itens a serem exibidos por página:" - -#: ../../mod/settings.php:859 ../../mod/settings.php:860 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 itens" - -#: ../../mod/settings.php:860 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:" - -#: ../../mod/settings.php:861 -msgid "Don't show emoticons" -msgstr "Não exibir emoticons" - -#: ../../mod/settings.php:862 -msgid "Infinite scroll" -msgstr "rolamento infinito" - -#: ../../mod/settings.php:938 -msgid "Normal Account Page" -msgstr "Página de conta normal" - -#: ../../mod/settings.php:939 -msgid "This account is a normal personal profile" -msgstr "Essa conta é um perfil pessoal normal" - -#: ../../mod/settings.php:942 -msgid "Soapbox Page" -msgstr "Página de vitrine" - -#: ../../mod/settings.php:943 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura" - -#: ../../mod/settings.php:946 -msgid "Community Forum/Celebrity Account" -msgstr "Conta de fórum de comunidade/celebridade" - -#: ../../mod/settings.php:947 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita" - -#: ../../mod/settings.php:950 -msgid "Automatic Friend Page" -msgstr "Página de amigo automático" - -#: ../../mod/settings.php:951 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos" - -#: ../../mod/settings.php:954 -msgid "Private Forum [Experimental]" -msgstr "Fórum privado [Experimental]" - -#: ../../mod/settings.php:955 -msgid "Private forum - approved members only" -msgstr "Fórum privado - somente membros aprovados" - -#: ../../mod/settings.php:967 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:967 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta" - -#: ../../mod/settings.php:977 -msgid "Publish your default profile in your local site directory?" -msgstr "Publicar o seu perfil padrão no diretório local do seu site?" - -#: ../../mod/settings.php:983 -msgid "Publish your default profile in the global social directory?" -msgstr "Publicar o seu perfil padrão no diretório social global?" - -#: ../../mod/settings.php:991 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? " - -#: ../../mod/settings.php:995 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?" - -#: ../../mod/settings.php:1000 -msgid "Allow friends to post to your profile page?" -msgstr "Permitir aos amigos publicarem na sua página de perfil?" - -#: ../../mod/settings.php:1006 -msgid "Allow friends to tag your posts?" -msgstr "Permitir aos amigos etiquetarem suas publicações?" - -#: ../../mod/settings.php:1012 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?" - -#: ../../mod/settings.php:1018 -msgid "Permit unknown people to send you private mail?" -msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?" - -#: ../../mod/settings.php:1026 -msgid "Profile is not published." -msgstr "O perfil não está publicado." - -#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "ou" - -#: ../../mod/settings.php:1034 -msgid "Your Identity Address is" -msgstr "O endereço da sua identidade é" - -#: ../../mod/settings.php:1045 -msgid "Automatically expire posts after this many days:" -msgstr "Expirar automaticamente publicações após tantos dias:" - -#: ../../mod/settings.php:1045 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas." - -#: ../../mod/settings.php:1046 -msgid "Advanced expiration settings" -msgstr "Configurações avançadas de expiração" - -#: ../../mod/settings.php:1047 -msgid "Advanced Expiration" -msgstr "Expiração avançada" - -#: ../../mod/settings.php:1048 -msgid "Expire posts:" -msgstr "Expirar publicações:" - -#: ../../mod/settings.php:1049 -msgid "Expire personal notes:" -msgstr "Expirar notas pessoais:" - -#: ../../mod/settings.php:1050 -msgid "Expire starred posts:" -msgstr "Expirar publicações destacadas:" - -#: ../../mod/settings.php:1051 -msgid "Expire photos:" -msgstr "Expirar fotos:" - -#: ../../mod/settings.php:1052 -msgid "Only expire posts by others:" -msgstr "Expirar somente as publicações de outras pessoas:" - -#: ../../mod/settings.php:1078 -msgid "Account Settings" -msgstr "Configurações da conta" - -#: ../../mod/settings.php:1086 -msgid "Password Settings" -msgstr "Configurações da senha" - -#: ../../mod/settings.php:1087 -msgid "New Password:" -msgstr "Nova senha:" - -#: ../../mod/settings.php:1088 -msgid "Confirm:" -msgstr "Confirme:" - -#: ../../mod/settings.php:1088 -msgid "Leave password fields blank unless changing" -msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la" - -#: ../../mod/settings.php:1089 -msgid "Current Password:" -msgstr "Senha Atual:" - -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -msgid "Your current password to confirm the changes" -msgstr "Sua senha atual para confirmar as mudanças" - -#: ../../mod/settings.php:1090 -msgid "Password:" -msgstr "Senha:" - -#: ../../mod/settings.php:1094 -msgid "Basic Settings" -msgstr "Configurações básicas" - -#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../mod/settings.php:1096 -msgid "Email Address:" -msgstr "Endereço de e-mail:" - -#: ../../mod/settings.php:1097 -msgid "Your Timezone:" -msgstr "Seu fuso horário:" - -#: ../../mod/settings.php:1098 -msgid "Default Post Location:" -msgstr "Localização padrão de suas publicações:" - -#: ../../mod/settings.php:1099 -msgid "Use Browser Location:" -msgstr "Usar localizador do navegador:" - -#: ../../mod/settings.php:1102 -msgid "Security and Privacy Settings" -msgstr "Configurações de segurança e privacidade" - -#: ../../mod/settings.php:1104 -msgid "Maximum Friend Requests/Day:" -msgstr "Número máximo de requisições de amizade por dia:" - -#: ../../mod/settings.php:1104 ../../mod/settings.php:1134 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir abuso de spammers)" - -#: ../../mod/settings.php:1105 -msgid "Default Post Permissions" -msgstr "Permissões padrão de publicação" - -#: ../../mod/settings.php:1106 -msgid "(click to open/close)" -msgstr "(clique para abrir/fechar)" - -#: ../../mod/settings.php:1115 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 -msgid "Show to Groups" -msgstr "Mostre para Grupos" - -#: ../../mod/settings.php:1116 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 -msgid "Show to Contacts" -msgstr "Mostre para Contatos" - -#: ../../mod/settings.php:1117 -msgid "Default Private Post" -msgstr "Publicação Privada Padrão" - -#: ../../mod/settings.php:1118 -msgid "Default Public Post" -msgstr "Publicação Pública Padrão" - -#: ../../mod/settings.php:1122 -msgid "Default Permissions for New Posts" -msgstr "Permissões Padrão para Publicações Novas" - -#: ../../mod/settings.php:1134 -msgid "Maximum private messages per day from unknown people:" -msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:" - -#: ../../mod/settings.php:1137 -msgid "Notification Settings" -msgstr "Configurações de notificação" - -#: ../../mod/settings.php:1138 -msgid "By default post a status message when:" -msgstr "Por padrão, publicar uma mensagem de status quando:" - -#: ../../mod/settings.php:1139 -msgid "accepting a friend request" -msgstr "aceitar uma requisição de amizade" - -#: ../../mod/settings.php:1140 -msgid "joining a forum/community" -msgstr "associar-se a um fórum/comunidade" - -#: ../../mod/settings.php:1141 -msgid "making an interesting profile change" -msgstr "fazer uma modificação interessante em seu perfil" - -#: ../../mod/settings.php:1142 -msgid "Send a notification email when:" -msgstr "Enviar um e-mail de notificação sempre que:" - -#: ../../mod/settings.php:1143 -msgid "You receive an introduction" -msgstr "Você recebeu uma apresentação" - -#: ../../mod/settings.php:1144 -msgid "Your introductions are confirmed" -msgstr "Suas apresentações forem confirmadas" - -#: ../../mod/settings.php:1145 -msgid "Someone writes on your profile wall" -msgstr "Alguém escrever no mural do seu perfil" - -#: ../../mod/settings.php:1146 -msgid "Someone writes a followup comment" -msgstr "Alguém comentar a sua mensagem" - -#: ../../mod/settings.php:1147 -msgid "You receive a private message" -msgstr "Você recebeu uma mensagem privada" - -#: ../../mod/settings.php:1148 -msgid "You receive a friend suggestion" -msgstr "Você recebe uma suggestão de amigo" - -#: ../../mod/settings.php:1149 -msgid "You are tagged in a post" -msgstr "Você foi etiquetado em uma publicação" - -#: ../../mod/settings.php:1150 -msgid "You are poked/prodded/etc. in a post" -msgstr "Você está cutucado/incitado/etc. em uma publicação" - -#: ../../mod/settings.php:1153 -msgid "Advanced Account/Page Type Settings" -msgstr "Conta avançada/Configurações do tipo de página" - -#: ../../mod/settings.php:1154 -msgid "Change the behaviour of this account for special situations" -msgstr "Modificar o comportamento desta conta em situações especiais" - -#: ../../mod/settings.php:1157 -msgid "Relocate" -msgstr "Relocação" - -#: ../../mod/settings.php:1158 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão." - -#: ../../mod/settings.php:1159 -msgid "Resend relocate message to contacts" -msgstr "Reenviar mensagem de relocação para os contatos" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "O perfil foi excluído." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "O novo perfil foi criado." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "O perfil não está disponível para clonagem." - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "É necessário informar o nome do perfil." - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "Situação amorosa" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "Parceiro romântico" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Gosta de" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Não gosta de" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religião" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Posicionamento político" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Gênero" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Preferência sexual" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "Página Principal" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Endereço" - -#: ../../mod/profiles.php:367 -msgid "Location" -msgstr "Localização" - -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "O perfil foi atualizado." - -#: ../../mod/profiles.php:521 -msgid " and " -msgstr " e " - -#: ../../mod/profiles.php:529 -msgid "public profile" -msgstr "perfil público" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s mudou %2$s para “%3$s”" - -#: ../../mod/profiles.php:533 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visite %2$s de %1$s" - -#: ../../mod/profiles.php:536 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s foi atualizado %2$s, mudando %3$s." - -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?" - -#: ../../mod/profiles.php:629 -msgid "Edit Profile Details" -msgstr "Editar os detalhes do perfil" - -#: ../../mod/profiles.php:631 -msgid "Change Profile Photo" -msgstr "Mudar Foto do Perfil" - -#: ../../mod/profiles.php:632 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/profiles.php:633 -msgid "Create a new profile using these settings" -msgstr "Criar um novo perfil usando estas configurações" - -#: ../../mod/profiles.php:634 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:635 -msgid "Delete this profile" -msgstr "Excluir este perfil" - -#: ../../mod/profiles.php:636 -msgid "Profile Name:" -msgstr "Nome do perfil:" - -#: ../../mod/profiles.php:637 -msgid "Your Full Name:" -msgstr "Seu nome completo:" - -#: ../../mod/profiles.php:638 -msgid "Title/Description:" -msgstr "Título/Descrição:" - -#: ../../mod/profiles.php:639 -msgid "Your Gender:" -msgstr "Seu gênero:" - -#: ../../mod/profiles.php:640 -#, php-format -msgid "Birthday (%s):" -msgstr "Aniversário (%s):" - -#: ../../mod/profiles.php:641 -msgid "Street Address:" -msgstr "Endereço:" - -#: ../../mod/profiles.php:642 -msgid "Locality/City:" -msgstr "Localidade/Cidade:" - -#: ../../mod/profiles.php:643 -msgid "Postal/Zip Code:" -msgstr "CEP:" - -#: ../../mod/profiles.php:644 -msgid "Country:" -msgstr "País:" - -#: ../../mod/profiles.php:645 -msgid "Region/State:" -msgstr "Região/Estado:" - -#: ../../mod/profiles.php:646 -msgid " Marital Status:" -msgstr " Situação amorosa:" - -#: ../../mod/profiles.php:647 -msgid "Who: (if applicable)" -msgstr "Quem: (se pertinente)" - -#: ../../mod/profiles.php:648 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" - -#: ../../mod/profiles.php:649 -msgid "Since [date]:" -msgstr "Desde [data]:" - -#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Preferência sexual:" - -#: ../../mod/profiles.php:651 -msgid "Homepage URL:" -msgstr "Endereço do site web:" - -#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Cidade:" - -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Posição política:" - -#: ../../mod/profiles.php:654 -msgid "Religious Views:" -msgstr "Orientação religiosa:" - -#: ../../mod/profiles.php:655 -msgid "Public Keywords:" -msgstr "Palavras-chave públicas:" - -#: ../../mod/profiles.php:656 -msgid "Private Keywords:" -msgstr "Palavras-chave privadas:" - -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Gosta de:" - -#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Não gosta de:" - -#: ../../mod/profiles.php:659 -msgid "Example: fishing photography software" -msgstr "Exemplo: pesca fotografia software" - -#: ../../mod/profiles.php:660 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)" - -#: ../../mod/profiles.php:661 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)" - -#: ../../mod/profiles.php:662 -msgid "Tell us about yourself..." -msgstr "Fale um pouco sobre você..." - -#: ../../mod/profiles.php:663 -msgid "Hobbies/Interests" -msgstr "Passatempos/Interesses" - -#: ../../mod/profiles.php:664 -msgid "Contact information and Social Networks" -msgstr "Informações de contato e redes sociais" - -#: ../../mod/profiles.php:665 -msgid "Musical interests" -msgstr "Preferências musicais" - -#: ../../mod/profiles.php:666 -msgid "Books, literature" -msgstr "Livros, literatura" - -#: ../../mod/profiles.php:667 -msgid "Television" -msgstr "Televisão" - -#: ../../mod/profiles.php:668 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/dança/cultura/entretenimento" - -#: ../../mod/profiles.php:669 -msgid "Love/romance" -msgstr "Amor/romance" - -#: ../../mod/profiles.php:670 -msgid "Work/employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:671 -msgid "School/education" -msgstr "Escola/educação" - -#: ../../mod/profiles.php:676 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet." - -#: ../../mod/profiles.php:725 -msgid "Edit/Manage Profiles" -msgstr "Editar/Gerenciar perfis" - #: ../../mod/group.php:29 msgid "Group created." msgstr "O grupo foi criado." @@ -4475,585 +5023,34 @@ msgstr "Editor de grupo" msgid "Members" msgstr "Membros" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clique em um contato para adicionar ou remover." +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Este grupo não existe" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texto fonte (bbcode):" +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "O grupo está vazio" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texto fonte (Diaspora) a converter para BBcode:" +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Grupo: " -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada fonte:" +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Ver no contexto" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML puro):" +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "A conta foi aprovada." -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Fonte de entrada (formato Diaspora):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Não disponível." - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "O contato foi adicionado" - -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." -msgstr "Não fazer notificações de sistema." - -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" -msgstr "Notificações de sistema" - -#: ../../mod/message.php:9 ../../include/nav.php:159 -msgid "New Message" -msgstr "Nova mensagem" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Não foi possível localizar informação do contato." - -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:156 -msgid "Messages" -msgstr "Mensagens" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Você realmente deseja deletar essa mensagem?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "A mensagem foi excluída." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: ../../mod/message.php:378 +#: ../../mod/regmod.php:100 #, php-format -msgid "Unknown sender - %s" -msgstr "Remetente desconhecido - %s" +msgid "Registration revoked for %s" +msgstr "O registro de %s foi revogado" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Você e %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e você" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensagem" -msgstr[1] "%d mensagens" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "A mensagem não está disponível." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Excluir a mensagem" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Enviar resposta" - -#: ../../mod/like.php:170 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s não gosta de %3$s de %2$s" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publicado com sucesso." - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ H:i" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversão de tempo" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Hora UTC: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso horário atual: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Horário local convertido: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Por favor, selecione seu fuso horário:" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1001 -#: ../../include/conversation.php:1019 -msgid "Save to Folder:" -msgstr "Salvar na pasta:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "-selecione-" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil inválido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidade do perfil" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visível para" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Todos os contatos (com acesso a perfil seguro)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Nenhum contato." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:850 -msgid "View Contacts" -msgstr "Ver contatos" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Pesquisar pessoas" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nenhuma correspondência" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Enviar novas fotos" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "A informação de contato não está disponível" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "O álbum não foi encontrado." - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Excluir o álbum" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Excluir a foto" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Você realmente deseja deletar essa foto?" - -#: ../../mod/photos.php:656 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s foi marcado em %2$s por %3$s" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "uma foto" - -#: ../../mod/photos.php:761 -msgid "Image exceeds size limit of " -msgstr "A imagem excede o tamanho máximo de " - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "O arquivo de imagem está vazio." - -#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Não foi possível processar a imagem." - -#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Não foi possível enviar a imagem." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Não foi selecionada nenhuma foto" - -#: ../../mod/photos.php:1025 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "O acesso a este item é restrito." - -#: ../../mod/photos.php:1088 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos." - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" -msgstr "Enviar fotos" - -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Nome do novo álbum: " - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "ou o nome de um álbum já existente: " - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Não exiba uma publicação de status para este envio" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Permissões" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Foto Privada" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Foto Pública" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Editar o álbum" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Exibir as mais recentes primeiro" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Exibir as mais antigas primeiro" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Ver a foto" - -#: ../../mod/photos.php:1286 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permissão negada. O acesso a este item pode estar restrito." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "A foto não está disponível" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Ver a imagem" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Editar a foto" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Usar como uma foto de perfil" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Ver no tamanho real" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Etiquetas: " - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Remover qualquer etiqueta]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Rotacionar para direita" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Rotacionar para esquerda" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Novo nome para o álbum" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Legenda" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Adicionar uma etiqueta" - -#: ../../mod/photos.php:1499 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento" - -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Foto privada" - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Foto pública" - -#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 -msgid "Share" -msgstr "Compartilhar" - -#: ../../mod/photos.php:1784 ../../mod/videos.php:308 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Fotos recentes" - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "O arquivo excedeu o tamanho limite de %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Não foi possível enviar o arquivo." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nenhum vídeo selecionado" - -#: ../../mod/videos.php:301 ../../include/text.php:1376 -msgid "View Video" -msgstr "Ver Vídeo" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Vídeos Recentes" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Envie Novos Vídeos" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Cutucar/Incitar" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Cutuca, incita ou faz outras coisas com alguém" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatário" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Selecione o que você deseja fazer com o destinatário" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Fazer com que essa publicação se torne privada" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está seguindo %2$s's %3$s" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Exportar conta" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor." - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Exportar tudo" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amigos em Comum" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nenhum contato em comum." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "A imagem excede o limite de tamanho de %d" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:446 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Fotos do mural" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "A imagem foi enviada, mas não foi possível cortá-la." - -#: ../../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 "Não foi possível reduzir o tamanho da imagem [%s]." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente" - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Não foi possível processar a imagem" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Enviar arquivo:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Selecione um perfil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Enviar" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "pule esta etapa" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "selecione uma foto de um álbum de fotos" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Cortar a imagem" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajuste o corte da imagem para a melhor visualização." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Encerrar a edição" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "A imagem foi enviada com sucesso." - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicativos" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nenhum aplicativo instalado" - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Descartar notificações" +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Por favor, autentique-se." #: ../../mod/match.php:12 msgid "Profile Match" @@ -5067,1535 +5064,727 @@ msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, msgid "is interested in:" msgstr "se interessa por:" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "A etiqueta foi removida" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Remover a etiqueta do item" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecione uma etiqueta para remover: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -msgid "Remove" -msgstr "Remover" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "O título do evento e a hora de início são obrigatórios." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editar o evento" - -#: ../../mod/events.php:335 ../../include/text.php:1606 -msgid "link to source" -msgstr "exibir a origem" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Criar um novo evento" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Anterior" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hora:minuto" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalhes do evento" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "O formato é %s %s. O título e a data de início são obrigatórios." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Início do evento:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Obrigatório" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "A data/hora de término não é conhecida ou não é relevante" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Término do evento:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para o fuso horário do visualizador" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrição:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Título:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Compartilhar este evento" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nenhuma página delegada potencial localizada." - -#: ../../mod/delegate.php:121 ../../include/nav.php:165 -msgid "Delegate Page Management" -msgstr "Delegar Administração de 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 "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Administradores de Páginas Existentes" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegados de Páginas Existentes" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegados Potenciais" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Adicionar" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Sem entradas." - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatos que não são membros de um grupo" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Arquivos" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema em manutenção" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Remover minha conta" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Por favor, digite a sua senha para verificação:" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "A sugestão de amigo foi enviada" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir um amigo para %s" - -#: ../../mod/item.php:108 +#: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Não foi possível localizar a publicação original." -#: ../../mod/item.php:310 +#: ../../mod/item.php:319 msgid "Empty post discarded." msgstr "A publicação em branco foi descartada." -#: ../../mod/item.php:872 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "Erro no sistema. A publicação não foi salva." -#: ../../mod/item.php:897 +#: ../../mod/item.php:917 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica." -#: ../../mod/item.php:899 +#: ../../mod/item.php:919 #, php-format msgid "You may visit them online at %s" msgstr "Você pode visitá-lo em %s" -#: ../../mod/item.php:900 +#: ../../mod/item.php:920 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens." -#: ../../mod/item.php:904 +#: ../../mod/item.php:924 #, php-format msgid "%s posted an update." msgstr "%s publicou uma atualização." -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} deseja ser seu amigo" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} lhe enviou uma mensagem" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} solicitou registro" - -#: ../../mod/ping.php:254 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} comentou a publicação de %s" +msgid "%1$s is currently %2$s" +msgstr "%1$s atualmente está %2$s" -#: ../../mod/ping.php:259 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Humor" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Defina o seu humor e conte aos seus amigos" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Resultados de Busca Por:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "adicionar" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Ordem dos comentários" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Ordenar pela data do comentário" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Ordem das publicações" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Ordenar pela data de publicação" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Publicações que mencionem ou envolvam você" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nova" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Fluxo de atividades - por data" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Links compartilhados" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Links interessantes" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Destacada" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Publicações favoritas" + +#: ../../mod/network.php:457 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} gostou da publicação de %s" +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 contém %s membro de uma rede insegura." +msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura." -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} desgostou da publicação de %s" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública." -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} agora é amigo de %s" +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Contato: " -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} publicou" +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública." -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} etiquetou a publicação de %s com #%s" +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Contato inválido." -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} mencionou você em uma publicação" +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "As configurações do contato foram aplicadas." -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID." +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Não foi possível atualizar o contato." -#: ../../mod/openid.php:53 +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Corrigir configurações do contato" + +#: ../../mod/crepair.php:139 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar." -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Não foi possível autenticar." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identificador de solicitação inválido" - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Descartar" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: ../../mod/notifications.php:83 ../../include/nav.php:140 -msgid "Network" -msgstr "Rede" - -#: ../../mod/notifications.php:98 ../../include/nav.php:149 -msgid "Introductions" -msgstr "Apresentações" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Exibir solicitações ignoradas" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ocultar solicitações ignoradas" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipo de notificação:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Sugestão de amigo" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerido por %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Publicar a adição de amigo" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "se aplicável" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Alega ser conhecido por você: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "sim" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "não" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprovar como:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amigo" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Compartilhador" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fã/Admirador" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Solicitação de amizade/conexão" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Novo acompanhante" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Sem apresentações." - -#: ../../mod/notifications.php:220 ../../include/nav.php:150 -msgid "Notifications" -msgstr "Notificações" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s gostou da publicação de %s" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s desgostou da publicação de %s" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s agora é amigo de %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s criou uma nova publicação" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s comentou uma publicação de %s" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Nenhuma notificação de rede." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Notificações de rede" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Nenhuma notificação pessoal." - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Notificações pessoais" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Não existe mais nenhuma notificação pessoal." - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Notificações pessoais" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite de convites totais excedido." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Não é um endereço de e-mail válido." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Por favor, junte-se à nós na Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Não foi possível enviar a mensagem." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensagem enviada." -msgstr[1] "%d mensagens enviadas." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Você não possui mais convites disponíveis" - -#: ../../mod/invite.php:120 -#, php-format +#: ../../mod/crepair.php:140 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo." -#: ../../mod/invite.php:122 +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Voltar ao editor de contatos" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Identificação da conta" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - sobrescreve Nome/Identificação" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "URL da conta" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "URL da requisição de amizade" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "URL da confirmação de amizade" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "URL do ponto final da notificação" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "URL do captador/fonte de notícias" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Nova imagem desta URL" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Auto remoto" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Espelhar publicações deste contato" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário." + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Suas publicações e conversas" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Sua página de perfil" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Seus contatos" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Suas fotos" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Seus eventos" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Suas anotações pessoais" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Suas fotos pessoais" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Páginas da Comunidade" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profiles Comunitários" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Últimos usuários" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Últimas gostadas" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "evento" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Últimas fotos" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Encontrar amigos" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Diretório Local" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Interesses Parecidos" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Convidar amigos" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Camadas da Terra" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Configure o zoom para Camadas da Terra" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Configure longitude (X) para Camadas da Terra" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Configure latitude (Y) para Camadas da Terra" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Ajuda ou @NewHere ?" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Conectar serviços" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "não exibir" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "exibir" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostre/esconda caixas na coluna à direita:" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Configurações do tema" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Escolha o tamanho da fonte para publicações e comentários" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Escolha comprimento da linha para publicações e comentários" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Escolha a resolução para a coluna do meio" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Configure o esquema de cores" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Configure o zoom para Camadas da Terra" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "escolha estilo" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Configure o esquema de cores" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Alinhamento" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Esquerda" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centro" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Esquema de cores" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Tamanho da fonte para publicações" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Tamanho da fonte para campos texto" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Configure a largura do tema" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Excluir este item?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "exibir menos" + +#: ../../boot.php:1023 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público." +msgid "Update %s failed. See error logs." +msgstr "Atualização %s falhou. Vide registro de erros (log)." -#: ../../mod/invite.php:123 +#: ../../boot.php:1025 #, php-format +msgid "Update Error at %s" +msgstr "Erro de Atualização em %s" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Criar uma nova conta" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Sair" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Entrar" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Identificação ou endereço de e-mail: " + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Senha: " + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Lembre-se de mim" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Ou login usando OpendID:" + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Esqueceu a sua senha?" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Termos de Serviço do Website" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "termos de serviço" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Política de Privacidade do Website" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "política de privacidade" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Conta solicitada não disponível" + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Editar perfil" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Mensagem" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Perfis" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Gerenciar/editar perfis" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "G l d F" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[hoje]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Lembretes de aniversário" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Aniversários nesta semana:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Sem descrição]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Lembretes de eventos" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Eventos esta semana:" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Mensagem de Estado (status) e Publicações" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Detalhe do Perfil" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Vídeos" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Eventos e Agenda" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Somente Você Pode Ver Isso" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funcionalidades Gerais" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Perfís Múltiplos" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Capacidade de criar perfis múltiplos" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funcionalidades de Composição de Publicações" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor Richtext" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Habilite editor richtext" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Pré-visualização da Publicação" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-menção Fóruns" + +#: ../../include/features.php:33 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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar." +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets da Barra Lateral da Rede" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviar convites." +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Buscar por Data" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Digite os endereços de e-mail, um por linha:" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Capacidade de selecionar publicações por intervalos de data" -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web." +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtrar Grupo" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Você preciso informar este código de convite: $invite_code" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtrar Rede" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com." +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gerenciar identidades e/ou páginas" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Guarde as palavras-chaves para reuso" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"" +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Abas da Rede" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Selecione uma identidade para gerenciar: " +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Aba Pessoal da Rede" -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amigos de %s" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Aba Nova da Rede" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nenhum amigo para exibir." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Adicionar Contato Novo" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Aba de Links Compartilhados da Rede" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Forneça endereço ou localização web" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Ferramentas de Publicação/Comentário" -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d convite disponível" -msgstr[1] "%d convites disponíveis" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Deleção Multipla" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Pesquisar por pessoas" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecione e delete múltiplas publicações/comentário imediatamente" -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Fornecer nome ou interesse" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editar Publicações Enviadas" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Conectar-se/acompanhar" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editar e corrigir publicações e comentários após envio" -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Examplos: Robert Morgenstein, Fishing" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Etiquetagem" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Perfil Randômico" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Capacidade de colocar etiquetas em publicações existentes" -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Redes" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Categorias de Publicações" -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Todas as redes" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Adicione Categorias ás Publicações" -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "Pastas salvas" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Tudo" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Capacidade de arquivar publicações em pastas" -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Categorias" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Desgostar de publicações" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 -msgid "Click here to upgrade." -msgstr "Clique aqui para atualização (upgrade)." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Capacidade de desgostar de publicações/comentários" -#: ../../include/plugin.php:462 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Essa ação excede o limite definido para o seu plano de assinatura." +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Destacar publicações" -#: ../../include/plugin.php:467 -msgid "This action is not available under your subscription plan." -msgstr "Essa ação não está disponível em seu plano de assinatura." - -#: ../../include/network.php:883 -msgid "view full size" -msgstr "ver na tela inteira" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 -msgid "Starts:" -msgstr "Início:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 -msgid "Finishes:" -msgstr "Término:" - -#: ../../include/notifier.php:774 ../../include/delivery.php:457 -msgid "(no subject)" -msgstr "(sem assunto)" - -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:468 -msgid "noreply" -msgstr "naoresponda" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "É necessário um convite." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Não foi possível verificar o convite." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "A URL do OpenID é inválida" - -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente." - -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" -msgstr "A mensagem de erro foi:" - -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "Por favor, forneça a informação solicitada." - -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "Por favor, use um nome mais curto." - -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "O nome é muito curto." - -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)." - -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." -msgstr "O domínio do seu e-mail não está entre os permitidos neste site." - -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "Não é um endereço de e-mail válido." - -#: ../../include/user.php:122 -msgid "Cannot use that email." -msgstr "Não é possível usar esse e-mail." - -#: ../../include/user.php:128 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra." - -#: ../../include/user.php:134 ../../include/user.php:232 -msgid "Nickname is already registered. Please choose another." -msgstr "Esta identificação já foi registrada. Por favor, escolha outra." - -#: ../../include/user.php:144 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra." - -#: ../../include/user.php:160 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança." - -#: ../../include/user.php:218 -msgid "An error occurred during registration. Please try again." -msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente." - -#: ../../include/user.php:253 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente." - -#: ../../include/user.php:285 ../../include/user.php:289 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amigos" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s cutucou %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:979 -msgid "poked" -msgstr "cutucado" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "postagem/item" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marcou %3$s de %2$s como favorito" - -#: ../../include/conversation.php:767 -msgid "remove" -msgstr "remover" - -#: ../../include/conversation.php:771 -msgid "Delete Selected Items" -msgstr "Excluir os itens selecionados" - -#: ../../include/conversation.php:870 -msgid "Follow Thread" -msgstr "Seguir o Thread" - -#: ../../include/conversation.php:871 ../../include/Contact.php:228 -msgid "View Status" -msgstr "Ver Status" - -#: ../../include/conversation.php:872 ../../include/Contact.php:229 -msgid "View Profile" -msgstr "Ver Perfil" - -#: ../../include/conversation.php:873 ../../include/Contact.php:230 -msgid "View Photos" -msgstr "Ver Fotos" - -#: ../../include/conversation.php:874 ../../include/Contact.php:231 -#: ../../include/Contact.php:254 -msgid "Network Posts" -msgstr "Publicações da Rede" - -#: ../../include/conversation.php:875 ../../include/Contact.php:232 -#: ../../include/Contact.php:254 -msgid "Edit Contact" -msgstr "Editar Contato" - -#: ../../include/conversation.php:876 ../../include/Contact.php:234 -#: ../../include/Contact.php:254 -msgid "Send PM" -msgstr "Enviar MP" - -#: ../../include/conversation.php:877 ../../include/Contact.php:227 -msgid "Poke" -msgstr "Cutucar" - -#: ../../include/conversation.php:939 -#, php-format -msgid "%s likes this." -msgstr "%s gostou disso." - -#: ../../include/conversation.php:939 -#, php-format -msgid "%s doesn't like this." -msgstr "%s não gostou disso." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d pessoas gostaram disso" - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d pessoas não gostaram disso" - -#: ../../include/conversation.php:961 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:967 -#, php-format -msgid ", and %d other people" -msgstr ", e mais %d outras pessoas" - -#: ../../include/conversation.php:969 -#, php-format -msgid "%s like this." -msgstr "%s gostaram disso." - -#: ../../include/conversation.php:969 -#, php-format -msgid "%s don't like this." -msgstr "%s não gostaram disso." - -#: ../../include/conversation.php:996 ../../include/conversation.php:1014 -msgid "Visible to everybody" -msgstr "Visível para todos" - -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 -msgid "Please enter a video link/URL:" -msgstr "Favor fornecer um link/URL de vídeo" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Please enter an audio link/URL:" -msgstr "Favor fornecer um link/URL de áudio" - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Tag term:" -msgstr "Etiqueta:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Where are you right now?" -msgstr "Onde você está agora?" - -#: ../../include/conversation.php:1003 -msgid "Delete item(s)?" -msgstr "Deletar item(s)?" - -#: ../../include/conversation.php:1045 -msgid "Post to Email" -msgstr "Enviar por e-mail" - -#: ../../include/conversation.php:1101 -msgid "permissions" -msgstr "permissões" - -#: ../../include/conversation.php:1125 -msgid "Post to Groups" -msgstr "Postar em Grupos" - -#: ../../include/conversation.php:1126 -msgid "Post to Contacts" -msgstr "Publique para Contatos" - -#: ../../include/conversation.php:1127 -msgid "Private post" -msgstr "Publicação privada" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora" #: ../../include/auth.php:38 msgid "Logged out." msgstr "Saiu." -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Erro ao decodificar arquivo de conta" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Erro! Não consigo conferir o apelido (nickname)" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "User '%s' já existe nesse servidor!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Erro na criação do usuário" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Erro na criação do perfil do Usuário" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contato não foi importado" -msgstr[1] "%d contatos não foram importados" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha" - -#: ../../include/text.php:293 -msgid "newer" -msgstr "mais recente" - -#: ../../include/text.php:295 -msgid "older" -msgstr "antigo" - -#: ../../include/text.php:300 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:302 -msgid "first" -msgstr "primeiro" - -#: ../../include/text.php:334 -msgid "last" -msgstr "último" - -#: ../../include/text.php:337 -msgid "next" -msgstr "próximo" - -#: ../../include/text.php:829 -msgid "No contacts" -msgstr "Nenhum contato" - -#: ../../include/text.php:838 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contato" -msgstr[1] "%d contatos" - -#: ../../include/text.php:979 -msgid "poke" -msgstr "cutucar" - -#: ../../include/text.php:980 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:980 -msgid "pinged" -msgstr "pingado" - -#: ../../include/text.php:981 -msgid "prod" -msgstr "incentivar" - -#: ../../include/text.php:981 -msgid "prodded" -msgstr "incentivado" - -#: ../../include/text.php:982 -msgid "slap" -msgstr "bater" - -#: ../../include/text.php:982 -msgid "slapped" -msgstr "batido" - -#: ../../include/text.php:983 -msgid "finger" -msgstr "apontar" - -#: ../../include/text.php:983 -msgid "fingered" -msgstr "apontado" - -#: ../../include/text.php:984 -msgid "rebuff" -msgstr "rejeite" - -#: ../../include/text.php:984 -msgid "rebuffed" -msgstr "rejeitado" - -#: ../../include/text.php:998 -msgid "happy" -msgstr "feliz" - -#: ../../include/text.php:999 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1000 -msgid "mellow" -msgstr "desencanado" - -#: ../../include/text.php:1001 -msgid "tired" -msgstr "cansado" - -#: ../../include/text.php:1002 -msgid "perky" -msgstr "audacioso" - -#: ../../include/text.php:1003 -msgid "angry" -msgstr "chateado" - -#: ../../include/text.php:1004 -msgid "stupified" -msgstr "estupefato" - -#: ../../include/text.php:1005 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1006 -msgid "interested" -msgstr "interessado" - -#: ../../include/text.php:1007 -msgid "bitter" -msgstr "rancoroso" - -#: ../../include/text.php:1008 -msgid "cheerful" -msgstr "jovial" - -#: ../../include/text.php:1009 -msgid "alive" -msgstr "vivo" - -#: ../../include/text.php:1010 -msgid "annoyed" -msgstr "incomodado" - -#: ../../include/text.php:1011 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1012 -msgid "cranky" -msgstr "excêntrico" - -#: ../../include/text.php:1013 -msgid "disturbed" -msgstr "perturbado" - -#: ../../include/text.php:1014 -msgid "frustrated" -msgstr "frustrado" - -#: ../../include/text.php:1015 -msgid "motivated" -msgstr "motivado" - -#: ../../include/text.php:1016 -msgid "relaxed" -msgstr "relaxado" - -#: ../../include/text.php:1017 -msgid "surprised" -msgstr "surpreso" - -#: ../../include/text.php:1185 -msgid "Monday" -msgstr "Segunda" - -#: ../../include/text.php:1185 -msgid "Tuesday" -msgstr "Terça" - -#: ../../include/text.php:1185 -msgid "Wednesday" -msgstr "Quarta" - -#: ../../include/text.php:1185 -msgid "Thursday" -msgstr "Quinta" - -#: ../../include/text.php:1185 -msgid "Friday" -msgstr "Sexta" - -#: ../../include/text.php:1185 -msgid "Saturday" -msgstr "Sábado" - -#: ../../include/text.php:1185 -msgid "Sunday" -msgstr "Domingo" - -#: ../../include/text.php:1189 -msgid "January" -msgstr "Janeiro" - -#: ../../include/text.php:1189 -msgid "February" -msgstr "Fevereiro" - -#: ../../include/text.php:1189 -msgid "March" -msgstr "Março" - -#: ../../include/text.php:1189 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1189 -msgid "May" -msgstr "Maio" - -#: ../../include/text.php:1189 -msgid "June" -msgstr "Junho" - -#: ../../include/text.php:1189 -msgid "July" -msgstr "Julho" - -#: ../../include/text.php:1189 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:1189 -msgid "September" -msgstr "Setembro" - -#: ../../include/text.php:1189 -msgid "October" -msgstr "Outubro" - -#: ../../include/text.php:1189 -msgid "November" -msgstr "Novembro" - -#: ../../include/text.php:1189 -msgid "December" -msgstr "Dezembro" - -#: ../../include/text.php:1408 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1432 ../../include/text.php:1444 -msgid "Click to open/close" -msgstr "Clique para abrir/fechar" - -#: ../../include/text.php:1661 -msgid "Select an alternate language" -msgstr "Selecione um idioma alternativo" - -#: ../../include/text.php:1917 -msgid "activity" -msgstr "atividade" - -#: ../../include/text.php:1920 -msgid "post" -msgstr "publicação" - -#: ../../include/text.php:2075 -msgid "Item filed" -msgstr "O item foi arquivado" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Notificação Friendica" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Obrigado," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: ../../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:Notify] Nova mensagem recebida em %s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s lhe enviou uma mensagem privativa em %2$s." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s lhe enviou %2$s." - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "uma mensagem privada" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas." - -#: ../../include/enotify.php:90 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]" - -#: ../../include/enotify.php:97 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]" - -#: ../../include/enotify.php:105 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]" - -#: ../../include/enotify.php:115 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s" - -#: ../../include/enotify.php:116 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s comentou um item/conversa que você está seguindo." - -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Favor visitar %s para ver e/ou responder à conversa." - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s publicou no mural do seu perfil" - -#: ../../include/enotify.php:128 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s publicou no mural do seu perfil em %2$s" - -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s publicou para [url=%2$s]seu mural[/url]" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s etiquetou você" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s etiquetou você em %2$s" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]etiquetou você[/url]." - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s cutucou você" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s cutucou você em %2$s" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]cutucou você[/url]." - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notify] %s etiquetou sua publicação" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s etiquetou sua publicação em %2$s" - -#: ../../include/enotify.php:174 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notify] Você recebeu uma apresentação" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Você recebeu uma apresentação de '%1$s' em %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s." - -#: ../../include/enotify.php:190 ../../include/enotify.php:208 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Você pode visitar o perfil deles em %s" - -#: ../../include/enotify.php:192 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo" - -#: ../../include/enotify.php:200 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s" - -#: ../../include/enotify.php:201 -#, php-format +#: ../../include/auth.php:128 ../../include/user.php:66 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente." -#: ../../include/enotify.php:206 -msgid "Name:" -msgstr "Nome:" +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "A mensagem de erro foi:" -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Início:" -#: ../../include/enotify.php:210 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão." - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "na Last.fm" - -#: ../../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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Grupo de privacidade padrão para novos contatos" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Todos" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editar grupo" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Criar um novo grupo" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatos não estão dentro de nenhum grupo" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL de conexão faltando." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este site não está configurado para permitir comunicações com outras redes." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "O endereço de perfil especificado não fornece informação adequada." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Não foi encontrado nenhum autor ou nome." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Use mailto: antes do endereço para forçar a checagem de email." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Não foi possível recuperar a informação do contato." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "acompanhando" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[sem assunto]" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Terminar esta sessão" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Entrar" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Página pessoal" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Criar uma conta" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Ajuda e documentação" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Aplicativos" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Complementos, utilitários, jogos" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Pesquisar conteúdo no site" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Conversas neste site" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Diretório" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Diretório de pessoas" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Conversas dos seus amigos" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "Reiniciar Rede" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "Carregar página Rede sem filtros" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Requisições de Amizade" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Ver todas notificações" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Marcar todas as notificações de sistema como vistas" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Mensagem privada" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "Recebidas" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Enviadas" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Gerenciar" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Gerenciar outras páginas" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegações" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "Administrar/Editar Perfis" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Gerenciar/editar amigos e contatos" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Configurações do site" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "Navegação" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Mapa do Site" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Término:" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -6662,360 +5851,396 @@ msgstr "Trabalho/emprego:" msgid "School/education:" msgstr "Escola/educação:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:614 -#: ../../include/bbcode.php:615 -msgid "Image/photo" -msgstr "Imagem/foto" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[sem assunto]" -#: ../../include/bbcode.php:279 +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "na Last.fm" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "mais recente" + +#: ../../include/text.php:298 +msgid "older" +msgstr "antigo" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:305 +msgid "first" +msgstr "primeiro" + +#: ../../include/text.php:337 +msgid "last" +msgstr "último" + +#: ../../include/text.php:340 +msgid "next" +msgstr "próximo" + +#: ../../include/text.php:853 +msgid "No contacts" +msgstr "Nenhum contato" + +#: ../../include/text.php:862 #, php-format -msgid "" -"%s wrote the following post" -msgstr "%sescreveu o seguintepublicação" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contato" +msgstr[1] "%d contatos" -#: ../../include/bbcode.php:578 ../../include/bbcode.php:598 -msgid "$1 wrote:" -msgstr "$1 escreveu:" +#: ../../include/text.php:1003 +msgid "poke" +msgstr "cutucar" -#: ../../include/bbcode.php:625 ../../include/bbcode.php:626 -msgid "Encrypted content" -msgstr "Conteúdo criptografado" +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "cutucado" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconhecido | Não categorizado" +#: ../../include/text.php:1004 +msgid "ping" +msgstr "ping" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquear imediatamente" +#: ../../include/text.php:1004 +msgid "pinged" +msgstr "pingado" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Dissimulado, spammer, propagandista" +#: ../../include/text.php:1005 +msgid "prod" +msgstr "incentivar" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Eu conheço, mas não possuo nenhuma opinião acerca" +#: ../../include/text.php:1005 +msgid "prodded" +msgstr "incentivado" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Ok, provavelmente inofensivo" +#: ../../include/text.php:1006 +msgid "slap" +msgstr "bater" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Boa reputação, tem minha confiança" +#: ../../include/text.php:1006 +msgid "slapped" +msgstr "batido" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../include/text.php:1007 +msgid "finger" +msgstr "apontar" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensalmente" +#: ../../include/text.php:1007 +msgid "fingered" +msgstr "apontado" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/text.php:1008 +msgid "rebuff" +msgstr "rejeite" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/text.php:1008 +msgid "rebuffed" +msgstr "rejeitado" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/text.php:1022 +msgid "happy" +msgstr "feliz" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/text.php:1023 +msgid "sad" +msgstr "triste" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/text.php:1024 +msgid "mellow" +msgstr "desencanado" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/text.php:1025 +msgid "tired" +msgstr "cansado" -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../include/text.php:1026 +msgid "perky" +msgstr "audacioso" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: ../../include/text.php:1027 +msgid "angry" +msgstr "chateado" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: ../../include/text.php:1028 +msgid "stupified" +msgstr "estupefato" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Miscelânea" +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "confuso" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "ano" +#: ../../include/text.php:1030 +msgid "interested" +msgstr "interessado" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mês" +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "rancoroso" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "dia" +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "jovial" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nunca" +#: ../../include/text.php:1033 +msgid "alive" +msgstr "vivo" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "menos de um segundo atrás" +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "incomodado" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anos" +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "ansioso" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "meses" +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "excêntrico" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "semana" +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "perturbado" -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "semanas" +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "frustrado" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "dias" +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "motivado" -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "hora" +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "relaxado" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "horas" +#: ../../include/text.php:1041 +msgid "surprised" +msgstr "surpreso" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" +#: ../../include/text.php:1209 +msgid "Monday" +msgstr "Segunda" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minutos" +#: ../../include/text.php:1209 +msgid "Tuesday" +msgstr "Terça" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "segundo" +#: ../../include/text.php:1209 +msgid "Wednesday" +msgstr "Quarta" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "segundos" +#: ../../include/text.php:1209 +msgid "Thursday" +msgstr "Quinta" -#: ../../include/datetime.php:300 +#: ../../include/text.php:1209 +msgid "Friday" +msgstr "Sexta" + +#: ../../include/text.php:1209 +msgid "Saturday" +msgstr "Sábado" + +#: ../../include/text.php:1209 +msgid "Sunday" +msgstr "Domingo" + +#: ../../include/text.php:1213 +msgid "January" +msgstr "Janeiro" + +#: ../../include/text.php:1213 +msgid "February" +msgstr "Fevereiro" + +#: ../../include/text.php:1213 +msgid "March" +msgstr "Março" + +#: ../../include/text.php:1213 +msgid "April" +msgstr "Abril" + +#: ../../include/text.php:1213 +msgid "May" +msgstr "Maio" + +#: ../../include/text.php:1213 +msgid "June" +msgstr "Junho" + +#: ../../include/text.php:1213 +msgid "July" +msgstr "Julho" + +#: ../../include/text.php:1213 +msgid "August" +msgstr "Agosto" + +#: ../../include/text.php:1213 +msgid "September" +msgstr "Setembro" + +#: ../../include/text.php:1213 +msgid "October" +msgstr "Outubro" + +#: ../../include/text.php:1213 +msgid "November" +msgstr "Novembro" + +#: ../../include/text.php:1213 +msgid "December" +msgstr "Dezembro" + +#: ../../include/text.php:1432 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1456 ../../include/text.php:1468 +msgid "Click to open/close" +msgstr "Clique para abrir/fechar" + +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "padrão" + +#: ../../include/text.php:1701 +msgid "Select an alternate language" +msgstr "Selecione um idioma alternativo" + +#: ../../include/text.php:1957 +msgid "activity" +msgstr "atividade" + +#: ../../include/text.php:1960 +msgid "post" +msgstr "publicação" + +#: ../../include/text.php:2128 +msgid "Item filed" +msgstr "O item foi arquivado" + +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "Usuário não encontrado." + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Não existe status com esse id." + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Não existe conversas com esse id." + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s atrás" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" -#: ../../include/datetime.php:472 ../../include/items.php:1829 +#: ../../include/items.php:1981 ../../include/datetime.php:472 #, php-format msgid "%s's birthday" msgstr "aniversários de %s's" -#: ../../include/datetime.php:473 ../../include/items.php:1830 +#: ../../include/items.php:1982 ../../include/datetime.php:473 #, php-format msgid "Happy Birthday %s" msgstr "Feliz Aniversário %s" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funcionalidades Gerais" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Perfís Múltiplos" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Capacidade de criar perfis múltiplos" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funcionalidades de Composição de Publicações" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor Richtext" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Habilite editor richtext" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Pré-visualização da Publicação" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "Widgets da Barra Lateral da Rede" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Buscar por Data" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "Capacidade de selecionar publicações por intervalos de data" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Filtrar Grupo" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "Filtrar Rede" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "Guarde as palavras-chaves para reuso" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "Abas da Rede" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "Aba Pessoal da Rede" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "Aba Nova da Rede" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "Aba de Links Compartilhados da Rede" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Ferramentas de Publicação/Comentário" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "Deleção Multipla" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecione e delete múltiplas publicações/comentário imediatamente" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "Editar Publicações Enviadas" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "Editar e corrigir publicações e comentários após envio" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "Etiquetagem" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "Capacidade de colocar etiquetas em publicações existentes" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "Categorias de Publicações" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Adicione Categorias ás Publicações" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "Capacidade de arquivar publicações em pastas" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "Desgostar de publicações" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Capacidade de desgostar de publicações/comentários" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "Destacar publicações" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notificação de compartilhamento da rede Diaspora" - -#: ../../include/diaspora.php:2264 -msgid "Attachments:" -msgstr "Anexos:" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Visível para todos" - -#: ../../include/items.php:3511 +#: ../../include/items.php:3710 msgid "A new person is sharing with you at " msgstr "Uma nova pessoa está compartilhando com você em " -#: ../../include/items.php:3511 +#: ../../include/items.php:3710 msgid "You have a new follower at " msgstr "Você tem um novo acompanhante em " -#: ../../include/items.php:4034 +#: ../../include/items.php:4233 msgid "Do you really want to delete this item?" msgstr "Você realmente deseja deletar esse item?" -#: ../../include/items.php:4257 +#: ../../include/items.php:4460 msgid "Archives" msgstr "Arquivos" -#: ../../include/oembed.php:138 -msgid "Embedded content" -msgstr "Conteúdo incorporado" +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(sem assunto)" -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "A incorporação está desabilitada" +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "naoresponda" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Notificação de compartilhamento da rede Diaspora" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Anexos:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL de conexão faltando." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este site não está configurado para permitir comunicações com outras redes." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "O endereço de perfil especificado não fornece informação adequada." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Não foi encontrado nenhum autor ou nome." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Não foi possível casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Use mailto: antes do endereço para forçar a checagem de email." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Não foi possível recuperar a informação do contato." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "acompanhando" #: ../../include/security.php:22 msgid "Welcome " @@ -7179,6 +6404,11 @@ msgstr "Infiel" msgid "Sex Addict" msgstr "Viciado(a) em sexo" +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "Amigos" + #: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amigos/Benefícios" @@ -7263,15 +6493,868 @@ msgstr "Não importa" msgid "Ask me" msgstr "Pergunte-me" +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Erro ao decodificar arquivo de conta" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Erro! Não consigo conferir o apelido (nickname)" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "User '%s' já existe nesse servidor!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Erro na criação do usuário" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Erro na criação do perfil do Usuário" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contato não foi importado" +msgstr[1] "%d contatos não foram importados" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Clique aqui para atualização (upgrade)." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Essa ação excede o limite definido para o seu plano de assinatura." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Essa ação não está disponível em seu plano de assinatura." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s cutucou %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "postagem/item" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s marcou %3$s de %2$s como favorito" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "remover" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Excluir os itens selecionados" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Seguir o Thread" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Ver Status" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Ver Perfil" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Ver Fotos" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Publicações da Rede" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Editar Contato" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Enviar MP" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Cutucar" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "%s gostou disso." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "%s não gostou disso." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d pessoas gostaram disso" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d pessoas não gostaram disso" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr ", e mais %d outras pessoas" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "%s gostaram disso." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "%s não gostaram disso." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Favor fornecer um link/URL de vídeo" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Favor fornecer um link/URL de áudio" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Etiqueta:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Onde você está agora?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Deletar item(s)?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "Enviar por e-mail" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores desabilitados, desde \"%s\" está habilitado." + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "permissões" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Postar em Grupos" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Publique para Contatos" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Publicação privada" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Adicionar Contato Novo" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Forneça endereço ou localização web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d convite disponível" +msgstr[1] "%d convites disponíveis" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Pesquisar por pessoas" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Fornecer nome ou interesse" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Conectar-se/acompanhar" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Examplos: Robert Morgenstein, Fishing" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Perfil Randômico" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Redes" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Todas as redes" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Tudo" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorias" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Terminar esta sessão" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Entrar" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Página pessoal" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Criar uma conta" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Ajuda e documentação" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Aplicativos" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Complementos, utilitários, jogos" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Pesquisar conteúdo no site" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversas neste site" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Diretório" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Diretório de pessoas" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informação" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informação sobre esta instância do friendica" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Conversas dos seus amigos" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Reiniciar Rede" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Carregar página Rede sem filtros" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Requisições de Amizade" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Ver todas notificações" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Marcar todas as notificações de sistema como vistas" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Mensagem privada" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Recebidas" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Enviadas" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Gerenciar" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Gerenciar outras páginas" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Configurações da conta" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Administrar/Editar Perfis" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Gerenciar/editar amigos e contatos" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Configurações do site" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navegação" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Mapa do Site" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Desconhecido | Não categorizado" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquear imediatamente" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Dissimulado, spammer, propagandista" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Eu conheço, mas não possuo nenhuma opinião acerca" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Ok, provavelmente inofensivo" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Boa reputação, tem minha confiança" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensalmente" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Conector do Diáspora" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notificação Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Obrigado," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: ../../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:Notify] Nova mensagem recebida em %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s lhe enviou uma mensagem privativa em %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s lhe enviou %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "uma mensagem privada" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas." + +#: ../../include/enotify.php:91 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]" + +#: ../../include/enotify.php:98 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]" + +#: ../../include/enotify.php:106 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]" + +#: ../../include/enotify.php:116 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s" + +#: ../../include/enotify.php:117 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s comentou um item/conversa que você está seguindo." + +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Favor visitar %s para ver e/ou responder à conversa." + +#: ../../include/enotify.php:127 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s publicou no mural do seu perfil" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s publicou no mural do seu perfil em %2$s" + +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s publicou para [url=%2$s]seu mural[/url]" + +#: ../../include/enotify.php:142 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s etiquetou você" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s etiquetou você em %2$s" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]etiquetou você[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s compartilhado uma nova publicação" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s compartilhou uma nova publicação em %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]." + +#: ../../include/enotify.php:169 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s cutucou você" + +#: ../../include/enotify.php:170 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s cutucou você em %2$s" + +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]cutucou você[/url]." + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s etiquetou sua publicação" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s etiquetou sua publicação em %2$s" + +#: ../../include/enotify.php:188 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]" + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notify] Você recebeu uma apresentação" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Você recebeu uma apresentação de '%1$s' em %2$s" + +#: ../../include/enotify.php:201 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s." + +#: ../../include/enotify.php:204 ../../include/enotify.php:222 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Você pode visitar o perfil deles em %s" + +#: ../../include/enotify.php:206 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação." + +#: ../../include/enotify.php:213 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo" + +#: ../../include/enotify.php:214 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s" + +#: ../../include/enotify.php:215 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s" + +#: ../../include/enotify.php:220 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:221 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:224 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão." + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "É necessário um convite." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Não foi possível verificar o convite." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "A URL do OpenID é inválida" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Por favor, forneça a informação solicitada." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Por favor, use um nome mais curto." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "O nome é muito curto." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "O domínio do seu e-mail não está entre os permitidos neste site." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Não é um endereço de e-mail válido." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Não é possível usar esse e-mail." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Esta identificação já foi registrada. Por favor, escolha outra." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente." + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente." + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Imagem/foto" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s escreveu a seguinte publicação" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 escreveu:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Conteúdo criptografado" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Conteúdo incorporado" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "A incorporação está desabilitada" + +#: ../../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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Grupo de privacidade padrão para novos contatos" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Todos" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "editar" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editar grupo" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Criar um novo grupo" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatos não estão dentro de nenhum grupo" + #: ../../include/Contact.php:115 msgid "stopped following" msgstr "parou de acompanhar" -#: ../../include/Contact.php:233 +#: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "Excluir o contato" -#: ../../include/dba.php:44 +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Miscelânea" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "ano" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mês" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "dia" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "menos de um segundo atrás" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "anos" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "meses" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "semana" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "semanas" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dias" + +#: ../../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 "Cannot locate DNS info for database server '%s'" -msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s atrás" + +#: ../../include/network.php:886 +msgid "view full size" +msgstr "ver na tela inteira" diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index 9503c0d4ca..5c1ebfd478 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -58,339 +58,125 @@ $a->strings["Page not found."] = "Página não encontrada."; $a->strings["Permission denied"] = "Permissão negada"; $a->strings["Permission denied."] = "Permissão negada."; $a->strings["toggle mobile"] = "habilita mobile"; -$a->strings["Home"] = "Pessoal"; -$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; -$a->strings["Profile"] = "Perfil "; -$a->strings["Your profile page"] = "Sua página de perfil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Suas fotos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Your events"] = "Seus eventos"; -$a->strings["Personal notes"] = "Suas anotações pessoais"; -$a->strings["Your personal photos"] = "Suas fotos pessoais"; -$a->strings["Community"] = "Comunidade"; -$a->strings["don't show"] = "não exibir"; -$a->strings["show"] = "exibir"; -$a->strings["Theme settings"] = "Configurações do tema"; -$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários"; -$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários"; -$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio"; -$a->strings["Contacts"] = "Contatos"; -$a->strings["Your contacts"] = "Seus contatos"; -$a->strings["Community Pages"] = "Páginas da Comunidade"; -$a->strings["Community Profiles"] = "Profiles Comunitários"; -$a->strings["Last users"] = "Últimos usuários"; -$a->strings["Last likes"] = "Últimas gostadas"; -$a->strings["event"] = "evento"; -$a->strings["status"] = "status"; -$a->strings["photo"] = "foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; -$a->strings["Last photos"] = "Últimas fotos"; -$a->strings["Contact Photos"] = "Fotos dos contatos"; -$a->strings["Profile Photos"] = "Fotos do perfil"; -$a->strings["Find Friends"] = "Encontrar amigos"; -$a->strings["Local Directory"] = "Diretório Local"; -$a->strings["Global Directory"] = "Diretório global"; -$a->strings["Similar Interests"] = "Interesses Parecidos"; -$a->strings["Friend Suggestions"] = "Sugestões de amigos"; -$a->strings["Invite Friends"] = "Convidar amigos"; -$a->strings["Settings"] = "Configurações"; -$a->strings["Earth Layers"] = "Camadas da Terra"; -$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra"; -$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra"; -$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?"; -$a->strings["Connect Services"] = "Conectar serviços"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:"; -$a->strings["Set color scheme"] = "Configure o esquema de cores"; -$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra"; -$a->strings["Alignment"] = "Alinhamento"; -$a->strings["Left"] = "Esquerda"; -$a->strings["Center"] = "Centro"; -$a->strings["Color scheme"] = "Esquema de cores"; -$a->strings["Posts font size"] = "Tamanho da fonte para publicações"; -$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto"; -$a->strings["Set colour scheme"] = "Configure o esquema de cores"; -$a->strings["default"] = "padrão"; -$a->strings["Background Image"] = "Imagem de fundo"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela."; -$a->strings["Background Color"] = "Cor do fundo"; -$a->strings["HEX value for the background color. Don't include the #"] = "Valor hexadecimal para a cor do fundo. Não inclua o #."; -$a->strings["font size"] = "tamanho da fonte"; -$a->strings["base font size for your interface"] = "tamanho base da fonte para a sua interface"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"; -$a->strings["Set theme width"] = "Configure a largura do tema"; -$a->strings["Delete this item?"] = "Excluir este item?"; -$a->strings["show fewer"] = "exibir menos"; -$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log)."; -$a->strings["Update Error at %s"] = "Erro de Atualização em %s"; -$a->strings["Create a New Account"] = "Criar uma nova conta"; -$a->strings["Register"] = "Registrar"; -$a->strings["Logout"] = "Sair"; -$a->strings["Login"] = "Entrar"; -$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: "; -$a->strings["Password: "] = "Senha: "; -$a->strings["Remember me"] = "Lembre-se de mim"; -$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:"; -$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; -$a->strings["Password Reset"] = "Reiniciar a senha"; -$a->strings["Website Terms of Service"] = "Termos de Serviço do Website"; -$a->strings["terms of service"] = "termos de serviço"; -$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website"; -$a->strings["privacy policy"] = "política de privacidade"; -$a->strings["Requested account is not available."] = "Conta solicitada não disponível"; -$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível."; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Connect"] = "Conectar"; -$a->strings["Message"] = "Mensagem"; -$a->strings["Profiles"] = "Perfis"; -$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis"; -$a->strings["Change profile photo"] = "Mudar a foto do perfil"; -$a->strings["Create New Profile"] = "Criar um novo perfil"; -$a->strings["Profile Image"] = "Imagem do perfil"; -$a->strings["visible to everybody"] = "visível para todos"; -$a->strings["Edit visibility"] = "Editar a visibilidade"; -$a->strings["Location:"] = "Localização:"; -$a->strings["Gender:"] = "Gênero:"; -$a->strings["Status:"] = "Situação:"; -$a->strings["Homepage:"] = "Página web:"; -$a->strings["g A l F d"] = "G l d F"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hoje]"; -$a->strings["Birthday Reminders"] = "Lembretes de aniversário"; -$a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; -$a->strings["[No description]"] = "[Sem descrição]"; -$a->strings["Event Reminders"] = "Lembretes de eventos"; -$a->strings["Events this week:"] = "Eventos esta semana:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações"; -$a->strings["Profile Details"] = "Detalhe do Perfil"; -$a->strings["Photo Albums"] = "Álbuns de fotos"; -$a->strings["Videos"] = "Vídeos"; -$a->strings["Events and Calendar"] = "Eventos e Agenda"; -$a->strings["Personal Notes"] = "Notas pessoais"; -$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s"; -$a->strings["Mood"] = "Humor"; -$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos"; +$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; +$a->strings["Contact not found."] = "O contato não foi encontrado."; +$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada"; +$a->strings["Suggest Friends"] = "Sugerir amigos"; +$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; +$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita."; +$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "O parâmetro requerido %d não foi encontrado na localização fornecida", + 1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida", +); +$a->strings["Introduction complete."] = "A apresentação foi finalizada."; +$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo."; +$a->strings["Profile unavailable."] = "O perfil não está disponível."; +$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje."; +$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas."; +$a->strings["Invalid locator"] = "Localizador inválido"; +$a->strings["Invalid email address."] = "Endereço de e-mail inválido."; +$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."; +$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado."; +$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui."; +$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s."; +$a->strings["Invalid profile URL."] = "URL de perfil inválida."; +$a->strings["Disallowed profile URL."] = "URL de perfil não permitida."; +$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato."; +$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada."; +$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "A identidade autenticada está incorreta. Por favor, entre como este perfil."; +$a->strings["Hide this contact"] = "Ocultar este contato"; +$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["[Name Withheld]"] = "[Nome não revelado]"; $a->strings["Public access denied."] = "Acesso público negado."; -$a->strings["Item not found."] = "O item não foi encontrado."; -$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito."; -$a->strings["Item has been removed."] = "O item foi removido."; -$a->strings["Access denied."] = "Acesso negado."; -$a->strings["This is Friendica, version"] = "Este é o Friendica, versão"; -$a->strings["running at web location"] = "sendo executado no endereço web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:"; -$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s"; -$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."; -$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; -$a->strings["Registration request at %s"] = "Solicitação de registro em %s"; -$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."; -$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): "; -$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Conectar como um acompanhante por e-mail (Em 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."] = "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós."; +$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:"; +$a->strings["Does %s know you?"] = "%s conhece você?"; $a->strings["Yes"] = "Sim"; $a->strings["No"] = "Não"; -$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite."; -$a->strings["Your invitation ID: "] = "A ID do seu convite: "; -$a->strings["Registration"] = "Registro"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): "; -$a->strings["Your Email Address: "] = "Seu endereço de e-mail: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@\$sitename'"; -$a->strings["Choose a nickname: "] = "Escolha uma identificação: "; -$a->strings["Import"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil desta instância do friendica"; -$a->strings["Profile not found."] = "O perfil não foi encontrado."; -$a->strings["Contact not found."] = "O contato não foi encontrado."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."; -$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida."; -$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: "; -$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso."; -$a->strings["Remote site reported: "] = "O site remoto relatou: "; -$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente."; -$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada."; -$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s"; -$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."; -$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site."; -$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."; -$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."; -$a->strings["Connection accepted at %s"] = "Conexão aceita em %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s"; -$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; -$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; -$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; -$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida."; -$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."; -$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."; -$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado."; -$a->strings["Your new password is"] = "Sua nova senha é"; -$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então"; -$a->strings["click here to login"] = "clique aqui para entrar"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil."; -$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s"; -$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."; -$a->strings["Nickname or Email: "] = "Identificação ou e-mail: "; -$a->strings["Reset"] = "Reiniciar"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."; -$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário."; -$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização."; -$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem."; -$a->strings["Message collection failure."] = "Falha na coleta de mensagens."; -$a->strings["Message sent."] = "A mensagem foi enviada."; -$a->strings["No recipient."] = "Nenhum destinatário."; -$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; -$a->strings["Send Private Message"] = "Enviar mensagem privada"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Assunto:"; -$a->strings["Your message:"] = "Sua mensagem:"; -$a->strings["Upload photo"] = "Enviar foto"; -$a->strings["Insert web link"] = "Inserir link web"; -$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica"; -$a->strings["New Member Checklist"] = "Dicas para os novos membros"; -$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."; -$a->strings["Getting Started"] = "Do Início"; -$a->strings["Friendica Walk-Through"] = "Passo-a-passo da 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 sua página Início Rápido - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."; -$a->strings["Go to Your Settings"] = "Ir para as suas configurações"; -$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."] = "Em sua página Configurações - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."; -$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."; -$a->strings["Upload Profile Photo"] = "Enviar foto do 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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."; -$a->strings["Edit Your Profile"] = "Editar seu 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."] = "Edite o seu perfil padrão a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."; -$a->strings["Profile Keywords"] = "Palavras-chave do 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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."; -$a->strings["Connecting"] = "Conexões"; -$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."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Se esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."; -$a->strings["Importing Emails"] = "Importação de e-mails"; -$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"; -$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos"; -$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo Adicionar Novo Contato."; -$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu 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."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link Conectar ou Seguir no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."; -$a->strings["Finding New People"] = "Pesquisar por novas pessoas"; -$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."; -$a->strings["Groups"] = "Grupos"; -$a->strings["Group Your Contacts"] = "Agrupe seus contatos"; -$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."; -$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são 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."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."; -$a->strings["Getting Help"] = "Obtendo ajuda"; -$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nossas páginas de ajuda podem ser consultadas para mais detalhes sobre características e recursos do programa."; -$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?"; +$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:"; +$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."] = " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."; +$a->strings["Your Identity Address:"] = "Seu endereço de identificação:"; +$a->strings["Submit Request"] = "Enviar solicitação"; $a->strings["Cancel"] = "Cancelar"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Search Results For:"] = "Resultados de Busca Por:"; -$a->strings["Remove term"] = "Remover o termo"; -$a->strings["Saved Searches"] = "Pesquisas salvas"; -$a->strings["add"] = "adicionar"; -$a->strings["Commented Order"] = "Ordem dos comentários"; -$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário"; -$a->strings["Posted Order"] = "Ordem das publicações"; -$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação"; +$a->strings["View Video"] = "Ver Vídeo"; +$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível."; +$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito."; +$a->strings["Tips for New Members"] = "Dicas para novos membros"; +$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; +$a->strings["Discard"] = "Descartar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Rede"; $a->strings["Personal"] = "Pessoal"; -$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você"; -$a->strings["New"] = "Nova"; -$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; -$a->strings["Shared Links"] = "Links compartilhados"; -$a->strings["Interesting Links"] = "Links interessantes"; -$a->strings["Starred"] = "Destacada"; -$a->strings["Favourite Posts"] = "Publicações favoritas"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Aviso: Este grupo contém %s membro de uma rede insegura.", - 1 => "Aviso: Este grupo contém %s membros de uma rede insegura.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."; -$a->strings["No such group"] = "Este grupo não existe"; -$a->strings["Group is empty"] = "O grupo está vazio"; -$a->strings["Group: "] = "Grupo: "; -$a->strings["Contact: "] = "Contato: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."; -$a->strings["Invalid contact."] = "Contato inválido."; -$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração"; -$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados."; -$a->strings["Could not create table."] = "Não foi possível criar tabela."; -$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."; -$a->strings["System check"] = "Checagem do sistema"; -$a->strings["Next"] = "Próximo"; -$a->strings["Check again"] = "Checar novamente"; -$a->strings["Database connection"] = "Conexão de banco de dados"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."; -$a->strings["Database Server Name"] = "Nome do servidor de banco de dados"; -$a->strings["Database Login Name"] = "Nome do usuário do banco de dados"; -$a->strings["Database Login Password"] = "Senha do usuário do banco de dados"; -$a->strings["Database Name"] = "Nome do banco de dados"; -$a->strings["Site administrator email address"] = "Endereço de email do administrador do site"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."; -$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site"; -$a->strings["Site settings"] = "Configurações do site"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu 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'"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Caminho para o executável do PhP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."; -$a->strings["Command line PHP"] = "PHP em linha de comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"; -$a->strings["Found PHP version: "] = "Encontrado PHP versão:"; -$a->strings["PHP cli binary"] = "Binário cli do PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."; -$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens."; -$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação"; -$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics"; -$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 do Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."; -$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não 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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."; -$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."; -$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."; -$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; -$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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."; -$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados."; -$a->strings["

What next

"] = "

A seguir

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."; +$a->strings["Home"] = "Pessoal"; +$a->strings["Introductions"] = "Apresentações"; +$a->strings["Messages"] = "Mensagens"; +$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas"; +$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas"; +$a->strings["Notification type: "] = "Tipo de notificação:"; +$a->strings["Friend Suggestion"] = "Sugestão de amigo"; +$a->strings["suggested by %s"] = "sugerido por %s"; +$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros"; +$a->strings["Post a new friend activity"] = "Publicar a adição de amigo"; +$a->strings["if applicable"] = "se aplicável"; +$a->strings["Approve"] = "Aprovar"; +$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: "; +$a->strings["yes"] = "sim"; +$a->strings["no"] = "não"; +$a->strings["Approve as: "] = "Aprovar como:"; +$a->strings["Friend"] = "Amigo"; +$a->strings["Sharer"] = "Compartilhador"; +$a->strings["Fan/Admirer"] = "Fã/Admirador"; +$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão"; +$a->strings["New Follower"] = "Novo acompanhante"; +$a->strings["No introductions."] = "Sem apresentações."; +$a->strings["Notifications"] = "Notificações"; +$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s"; +$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s"; +$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s"; +$a->strings["%s created a new post"] = "%s criou uma nova publicação"; +$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s"; +$a->strings["No more network notifications."] = "Nenhuma notificação de rede."; +$a->strings["Network Notifications"] = "Notificações de rede"; +$a->strings["No more system notifications."] = "Não fazer notificações de sistema."; +$a->strings["System Notifications"] = "Notificações de sistema"; +$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal."; +$a->strings["Personal Notifications"] = "Notificações pessoais"; +$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal."; +$a->strings["Home Notifications"] = "Notificações pessoais"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."; +$a->strings["Login failed."] = "Não foi possível autenticar."; +$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:"; +$a->strings["Source input: "] = "Entrada fonte:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):"; +$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): "] = "Fonte de entrada (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas."; $a->strings["Site"] = "Site"; $a->strings["Users"] = "Usuários"; @@ -401,6 +187,7 @@ $a->strings["Logs"] = "Relatórios"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Recursos do plugin"; $a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação"; +$a->strings["Item not found."] = "O item não foi encontrado."; $a->strings["Normal Account"] = "Conta normal"; $a->strings["Soapbox Account"] = "Conta de vitrine"; $a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade"; @@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least ://"] = $a->strings["Site settings updated."] = "As configurações do site foram atualizadas."; $a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis"; $a->strings["Never"] = "Nunca"; +$a->strings["At post arrival"] = "Na chegada da publicação"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "De hora em hora"; $a->strings["Twice daily"] = "Duas vezes ao dia"; @@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma políti $a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"; $a->strings["Save Settings"] = "Salvar configurações"; +$a->strings["Registration"] = "Registro"; $a->strings["File upload"] = "Envio de arquivo"; $a->strings["Policies"] = "Políticas"; $a->strings["Advanced"] = "Avançado"; @@ -485,6 +274,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "Disa $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."; $a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações"; $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."; +$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem remote_self"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"; $a->strings["Block multiple registrations"] = "Bloquear registros repetidos"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas."; $a->strings["OpenID support"] = "Suporte ao OpenID"; @@ -496,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do $a->strings["Show Community Page"] = "Exibir a página da comunidade"; $a->strings["Display a Community page showing all recent public postings on this site."] = "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site."; $a->strings["Enable OStatus support"] = "Habilitar suporte ao 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."] = "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente."; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."; $a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus "; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."; $a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora"; @@ -536,6 +327,7 @@ $a->strings["Failed Updates"] = "Atualizações com falha"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."; $a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"; $a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente"; +$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; $a->strings["Registration successful. Email send to user"] = "Registro bem sucedido. Email enviado ao usuário."; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s usuário bloqueado/desbloqueado", @@ -556,7 +348,6 @@ $a->strings["Request date"] = "Solicitar data"; $a->strings["Name"] = "Nome"; $a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Nenhum registro."; -$a->strings["Approve"] = "Aprovar"; $a->strings["Deny"] = "Negar"; $a->strings["Block"] = "Bloquear"; $a->strings["Unblock"] = "Desbloquear"; @@ -579,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado."; $a->strings["Disable"] = "Desabilitar"; $a->strings["Enable"] = "Habilitar"; $a->strings["Toggle"] = "Alternar"; +$a->strings["Settings"] = "Configurações"; $a->strings["Author: "] = "Autor: "; $a->strings["Maintainer: "] = "Mantenedor: "; $a->strings["No themes found."] = "Nenhum tema encontrado"; @@ -597,11 +389,36 @@ $a->strings["FTP Host"] = "Endereço do FTP"; $a->strings["FTP Path"] = "Caminho do FTP"; $a->strings["FTP User"] = "Usuário do FTP"; $a->strings["FTP Password"] = "Senha do FTP"; -$a->strings["Search"] = "Pesquisar"; -$a->strings["No results."] = "Nenhum resultado."; -$a->strings["Tips for New Members"] = "Dicas para novos membros"; -$a->strings["link"] = "ligação"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s"; +$a->strings["New Message"] = "Nova mensagem"; +$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário."; +$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato."; +$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem."; +$a->strings["Message collection failure."] = "Falha na coleta de mensagens."; +$a->strings["Message sent."] = "A mensagem foi enviada."; +$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?"; +$a->strings["Message deleted."] = "A mensagem foi excluída."; +$a->strings["Conversation removed."] = "A conversa foi removida."; +$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; +$a->strings["Send Private Message"] = "Enviar mensagem privada"; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Assunto:"; +$a->strings["Your message:"] = "Sua mensagem:"; +$a->strings["Upload photo"] = "Enviar foto"; +$a->strings["Insert web link"] = "Inserir link web"; +$a->strings["No messages."] = "Nenhuma mensagem."; +$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s"; +$a->strings["You and %s"] = "Você e %s"; +$a->strings["%s and You"] = "%s e você"; +$a->strings["Delete conversation"] = "Excluir conversa"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mensagem", + 1 => "%d mensagens", +); +$a->strings["Message not available."] = "A mensagem não está disponível."; +$a->strings["Delete message"] = "Excluir a mensagem"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente."; +$a->strings["Send Reply"] = "Enviar resposta"; $a->strings["Item not found"] = "O item não foi encontrado"; $a->strings["Edit post"] = "Editar a publicação"; $a->strings["upload photo"] = "upload de foto"; @@ -622,92 +439,173 @@ $a->strings["Public post"] = "Publicação pública"; $a->strings["Set title"] = "Definir o título"; $a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; -$a->strings["Item not available."] = "O item não está disponível."; -$a->strings["Item was not found."] = "O item não foi encontrado."; -$a->strings["Account approved."] = "A conta foi aprovada."; -$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; -$a->strings["Please login."] = "Por favor, autentique-se."; -$a->strings["Find on this site"] = "Pesquisar neste site"; -$a->strings["Finding: "] = "Pesquisando: "; -$a->strings["Site Directory"] = "Diretório do site"; -$a->strings["Find"] = "Pesquisar"; -$a->strings["Age: "] = "Idade: "; -$a->strings["Gender: "] = "Gênero: "; -$a->strings["About:"] = "Sobre:"; -$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas)."; -$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas."; -$a->strings["Contact update failed."] = "Não foi possível atualizar o contato."; -$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo."; -$a->strings["Return to contact editor"] = "Voltar ao editor de contatos"; -$a->strings["Account Nickname"] = "Identificação da conta"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação"; -$a->strings["Account URL"] = "URL da conta"; -$a->strings["Friend Request URL"] = "URL da requisição de amizade"; -$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade"; -$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação"; -$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias"; -$a->strings["New photo from this URL"] = "Nova imagem desta URL"; -$a->strings["Move account"] = "Mover conta"; -$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"; -$a->strings["Account file"] = "Arquivo de conta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""; +$a->strings["Profile not found."] = "O perfil não foi encontrado."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."; +$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida."; +$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: "; +$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso."; +$a->strings["Remote site reported: "] = "O site remoto relatou: "; +$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente."; +$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada."; +$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s"; +$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."; +$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site."; +$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."; +$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."; +$a->strings["Connection accepted at %s"] = "Conexão aceita em %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s"; +$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar o evento"; +$a->strings["link to source"] = "exibir a origem"; +$a->strings["Events"] = "Eventos"; +$a->strings["Create New Event"] = "Criar um novo evento"; +$a->strings["Previous"] = "Anterior"; +$a->strings["Next"] = "Próximo"; +$a->strings["hour:minute"] = "hora:minuto"; +$a->strings["Event details"] = "Detalhes do evento"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios."; +$a->strings["Event Starts:"] = "Início do evento:"; +$a->strings["Required"] = "Obrigatório"; +$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; +$a->strings["Event Finishes:"] = "Término do evento:"; +$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; +$a->strings["Description:"] = "Descrição:"; +$a->strings["Location:"] = "Localização:"; +$a->strings["Title:"] = "Título:"; +$a->strings["Share this event"] = "Compartilhar este evento"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Files"] = "Arquivos"; +$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; $a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; $a->strings["Visible to:"] = "Visível para:"; -$a->strings["Save"] = "Salvar"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."; +$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização."; +$a->strings["No recipient."] = "Nenhum destinatário."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."; +$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]"; +$a->strings["Edit contact"] = "Editar o contato"; +$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo"; +$a->strings["This is Friendica, version"] = "Este é o Friendica, versão"; +$a->strings["running at web location"] = "sendo executado no endereço web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visite friendica.com para aprender mais sobre o projeto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:"; +$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado"; +$a->strings["Remove My Account"] = "Remover minha conta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."; +$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; +$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d"; +$a->strings["Unable to process image."] = "Não foi possível processar a imagem."; +$a->strings["Wall Photos"] = "Fotos do mural"; +$a->strings["Image upload failed."] = "Não foi possível enviar a imagem."; +$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; +$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; +$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s"; +$a->strings["Photo Albums"] = "Álbuns de fotos"; +$a->strings["Contact Photos"] = "Fotos dos contatos"; +$a->strings["Upload New Photos"] = "Enviar novas fotos"; +$a->strings["everybody"] = "todos"; +$a->strings["Contact information unavailable"] = "A informação de contato não está disponível"; +$a->strings["Profile Photos"] = "Fotos do perfil"; +$a->strings["Album not found."] = "O álbum não foi encontrado."; +$a->strings["Delete Album"] = "Excluir o álbum"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"; +$a->strings["Delete Photo"] = "Excluir a foto"; +$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s"; +$a->strings["a photo"] = "uma foto"; +$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de "; +$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; +$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto"; +$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."; +$a->strings["Upload Photos"] = "Enviar fotos"; +$a->strings["New album name: "] = "Nome do novo álbum: "; +$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: "; +$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio"; +$a->strings["Permissions"] = "Permissões"; +$a->strings["Show to Groups"] = "Mostre para Grupos"; +$a->strings["Show to Contacts"] = "Mostre para Contatos"; +$a->strings["Private Photo"] = "Foto Privada"; +$a->strings["Public Photo"] = "Foto Pública"; +$a->strings["Edit Album"] = "Editar o álbum"; +$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro"; +$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro"; +$a->strings["View Photo"] = "Ver a foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito."; +$a->strings["Photo not available"] = "A foto não está disponível"; +$a->strings["View photo"] = "Ver a imagem"; +$a->strings["Edit photo"] = "Editar a foto"; +$a->strings["Use as profile photo"] = "Usar como uma foto de perfil"; +$a->strings["View Full Size"] = "Ver no tamanho real"; +$a->strings["Tags: "] = "Etiquetas: "; +$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]"; +$a->strings["Rotate CW (right)"] = "Rotacionar para direita"; +$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda"; +$a->strings["New album name"] = "Novo nome para o álbum"; +$a->strings["Caption"] = "Legenda"; +$a->strings["Add a Tag"] = "Adicionar uma etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"; +$a->strings["Private photo"] = "Foto privada"; +$a->strings["Public photo"] = "Foto pública"; +$a->strings["Share"] = "Compartilhar"; +$a->strings["View Album"] = "Ver álbum"; +$a->strings["Recent Photos"] = "Fotos recentes"; +$a->strings["No profile"] = "Nenhum perfil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."; +$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; +$a->strings["Registration request at %s"] = "Solicitação de registro em %s"; +$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."; +$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): "; +$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?"; +$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite."; +$a->strings["Your invitation ID: "] = "A ID do seu convite: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): "; +$a->strings["Your Email Address: "] = "Seu endereço de e-mail: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@\$sitename'"; +$a->strings["Choose a nickname: "] = "Escolha uma identificação: "; +$a->strings["Register"] = "Registrar"; +$a->strings["Import"] = "Importar"; +$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil desta instância do friendica"; +$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida."; +$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."; +$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."; +$a->strings["Password Reset"] = "Reiniciar a senha"; +$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado."; +$a->strings["Your new password is"] = "Sua nova senha é"; +$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então"; +$a->strings["click here to login"] = "clique aqui para entrar"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil."; +$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s"; +$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."; +$a->strings["Nickname or Email: "] = "Identificação ou e-mail: "; +$a->strings["Reset"] = "Reiniciar"; +$a->strings["System down for maintenance"] = "Sistema em manutenção"; +$a->strings["Item not available."] = "O item não está disponível."; +$a->strings["Item was not found."] = "O item não foi encontrado."; +$a->strings["Applications"] = "Aplicativos"; +$a->strings["No installed applications."] = "Nenhum aplicativo instalado"; $a->strings["Help:"] = "Ajuda:"; $a->strings["Help"] = "Ajuda"; -$a->strings["No profile"] = "Nenhum perfil"; -$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita."; -$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "O parâmetro requerido %d não foi encontrado na localização fornecida", - 1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida", +$a->strings["%d contact edited."] = array( + 0 => "%d contato editado", + 1 => "%d contatos editados", ); -$a->strings["Introduction complete."] = "A apresentação foi finalizada."; -$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo."; -$a->strings["Profile unavailable."] = "O perfil não está disponível."; -$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje."; -$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas."; -$a->strings["Invalid locator"] = "Localizador inválido"; -$a->strings["Invalid email address."] = "Endereço de e-mail inválido."; -$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."; -$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado."; -$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui."; -$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s."; -$a->strings["Invalid profile URL."] = "URL de perfil inválida."; -$a->strings["Disallowed profile URL."] = "URL de perfil não permitida."; -$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato."; -$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada."; -$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "A identidade autenticada está incorreta. Por favor, entre como este perfil."; -$a->strings["Hide this contact"] = "Ocultar este contato"; -$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["[Name Withheld]"] = "[Nome não revelado]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Conectar como um acompanhante por e-mail (Em 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."] = "Caso você ainda não seja membro da rede social livre, clique aqui para encontrar um site Friendica público e junte-se à nós."; -$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:"; -$a->strings["Does %s know you?"] = "%s conhece você?"; -$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:"; -$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."] = " - Por favor, não utilize esse formulário. Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."; -$a->strings["Your Identity Address:"] = "Seu endereço de identificação:"; -$a->strings["Submit Request"] = "Enviar solicitação"; -$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; -$a->strings["View in context"] = "Ver no contexto"; $a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; $a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; $a->strings["Contact updated."] = "O contato foi atualizado."; @@ -734,7 +632,6 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Ver todos os contatos"; $a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio"; $a->strings["Unignore"] = "Deixar de ignorar"; -$a->strings["Ignore"] = "Ignorar"; $a->strings["Toggle Ignored status"] = "Alternar o status de ignorado"; $a->strings["Unarchive"] = "Desarquivar"; $a->strings["Archive"] = "Arquivar"; @@ -747,7 +644,6 @@ $a->strings["Profile Visibility"] = "Visibilidade do perfil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."; $a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações"; $a->strings["Edit contact notes"] = "Editar as anotações do contato"; -$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]"; $a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato"; $a->strings["Ignore contact"] = "Ignorar o contato"; $a->strings["Repair URL settings"] = "Reparar as definições de URL"; @@ -758,8 +654,10 @@ $a->strings["Update public posts"] = "Atualizar publicações públicas"; $a->strings["Currently blocked"] = "Atualmente bloqueado"; $a->strings["Currently ignored"] = "Atualmente ignorado"; $a->strings["Currently archived"] = "Atualmente arquivado"; -$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros"; $a->strings["Replies/likes to your public posts may still be visible"] = "Respostas/gostadas associados às suas publicações ainda podem estar visíveis"; +$a->strings["Notification for new posts"] = "Notificações para novas publicações"; +$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato"; +$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds"; $a->strings["Suggestions"] = "Sugestões"; $a->strings["Suggest potential friends"] = "Sugerir amigos em potencial"; $a->strings["All Contacts"] = "Todos os contatos"; @@ -777,19 +675,98 @@ $a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos"; $a->strings["Mutual Friendship"] = "Amizade mútua"; $a->strings["is a fan of yours"] = "é um fã seu"; $a->strings["you are a fan of"] = "você é um fã de"; -$a->strings["Edit contact"] = "Editar o contato"; +$a->strings["Contacts"] = "Contatos"; $a->strings["Search your contacts"] = "Pesquisar seus contatos"; -$a->strings["everybody"] = "todos"; -$a->strings["Account settings"] = "Configurações da conta"; +$a->strings["Finding: "] = "Pesquisando: "; +$a->strings["Find"] = "Pesquisar"; +$a->strings["Update"] = "Atualizar"; +$a->strings["No videos selected"] = "Nenhum vídeo selecionado"; +$a->strings["Recent Videos"] = "Vídeos Recentes"; +$a->strings["Upload New Videos"] = "Envie Novos Vídeos"; +$a->strings["Common Friends"] = "Amigos em Comum"; +$a->strings["No contacts in common."] = "Nenhum contato em comum."; +$a->strings["Contact added"] = "O contato foi adicionado"; +$a->strings["Move account"] = "Mover conta"; +$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"; +$a->strings["Account file"] = "Arquivo de conta"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s"; +$a->strings["Friends of %s"] = "Amigos de %s"; +$a->strings["No friends to display."] = "Nenhum amigo para exibir."; +$a->strings["Tag removed"] = "A etiqueta foi removida"; +$a->strings["Remove Item Tag"] = "Remover a etiqueta do item"; +$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; +$a->strings["Remove"] = "Remover"; +$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica"; +$a->strings["New Member Checklist"] = "Dicas para os novos membros"; +$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."; +$a->strings["Getting Started"] = "Do Início"; +$a->strings["Friendica Walk-Through"] = "Passo-a-passo da 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 sua página Início Rápido - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."; +$a->strings["Go to Your Settings"] = "Ir para as suas configurações"; +$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."] = "Em sua página Configurações - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."; +$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."; +$a->strings["Profile"] = "Perfil "; +$a->strings["Upload Profile Photo"] = "Enviar foto do 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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."; +$a->strings["Edit Your Profile"] = "Editar seu 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."] = "Edite o seu perfil padrão a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."; +$a->strings["Profile Keywords"] = "Palavras-chave do 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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."; +$a->strings["Connecting"] = "Conexões"; +$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."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Se esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."; +$a->strings["Importing Emails"] = "Importação de e-mails"; +$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"; +$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos"; +$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo Adicionar Novo Contato."; +$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu 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."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link Conectar ou Seguir no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."; +$a->strings["Finding New People"] = "Pesquisar por novas pessoas"; +$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."; +$a->strings["Groups"] = "Grupos"; +$a->strings["Group Your Contacts"] = "Agrupe seus contatos"; +$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."; +$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são 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."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."; +$a->strings["Getting Help"] = "Obtendo ajuda"; +$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nossas páginas de ajuda podem ser consultadas para mais detalhes sobre características e recursos do programa."; +$a->strings["Remove term"] = "Remover o termo"; +$a->strings["Saved Searches"] = "Pesquisas salvas"; +$a->strings["Search"] = "Pesquisar"; +$a->strings["No results."] = "Nenhum resultado."; +$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido."; +$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; +$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio."; +$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; +$a->strings["%d message sent."] = array( + 0 => "%d mensagem enviada.", + 1 => "%d mensagens enviadas.", +); +$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; +$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."; +$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."; +$a->strings["Send invitations"] = "Enviar convites."; +$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."; $a->strings["Additional features"] = "Funcionalidades adicionais"; -$a->strings["Display settings"] = "Configurações de exibição"; -$a->strings["Connector settings"] = "Configurações do conector"; -$a->strings["Plugin settings"] = "Configurações dos plugins"; +$a->strings["Display"] = "Tela"; +$a->strings["Social Networks"] = "Redes Sociais"; +$a->strings["Delegations"] = "Delegações"; $a->strings["Connected apps"] = "Aplicações conectadas"; $a->strings["Export personal data"] = "Exportar dados pessoais"; $a->strings["Remove account"] = "Remover a conta"; $a->strings["Missing some important data!"] = "Está faltando algum dado importante!"; -$a->strings["Update"] = "Atualizar"; $a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas."; $a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas."; $a->strings["Features updated"] = "Funcionalidades atualizadas"; @@ -827,7 +804,6 @@ $a->strings["enabled"] = "habilitado"; $a->strings["disabled"] = "desabilitado"; $a->strings["StatusNet"] = "StatusNet"; $a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site."; -$a->strings["Connector Settings"] = "Configurações do conector"; $a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."; $a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:"; @@ -852,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Número de itens a serem $a->strings["Maximum of 100 items"] = "Máximo de 100 itens"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"; $a->strings["Don't show emoticons"] = "Não exibir emoticons"; +$a->strings["Don't show notices"] = "Não mostra avisos"; $a->strings["Infinite scroll"] = "rolamento infinito"; +$a->strings["User Types"] = "Tipos de Usuários"; +$a->strings["Community Types"] = "Tipos de Comunidades"; $a->strings["Normal Account Page"] = "Página de conta normal"; $a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal"; $a->strings["Soapbox Page"] = "Página de vitrine"; @@ -904,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições $a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)"; $a->strings["Default Post Permissions"] = "Permissões padrão de publicação"; $a->strings["(click to open/close)"] = "(clique para abrir/fechar)"; -$a->strings["Show to Groups"] = "Mostre para Grupos"; -$a->strings["Show to Contacts"] = "Mostre para Contatos"; $a->strings["Default Private Post"] = "Publicação Privada Padrão"; $a->strings["Default Public Post"] = "Publicação Pública Padrão"; $a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas"; @@ -929,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $a->strings["Relocate"] = "Relocação"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."; $a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos"; +$a->strings["Item has been removed."] = "O item foi removido."; +$a->strings["People Search"] = "Pesquisar pessoas"; +$a->strings["No matches"] = "Nenhuma correspondência"; $a->strings["Profile deleted."] = "O perfil foi excluído."; $a->strings["Profile-"] = "Perfil-"; $a->strings["New profile created."] = "O novo perfil foi criado."; @@ -997,57 +977,79 @@ $a->strings["Love/romance"] = "Amor/romance"; $a->strings["Work/employment"] = "Trabalho/emprego"; $a->strings["School/education"] = "Escola/educação"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Este é o seu perfil público.
Ele pode estar visível para qualquer um que acesse a Internet."; +$a->strings["Age: "] = "Idade: "; $a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis"; -$a->strings["Group created."] = "O grupo foi criado."; -$a->strings["Could not create group."] = "Não foi possível criar o grupo."; -$a->strings["Group not found."] = "O grupo não foi encontrado."; -$a->strings["Group name changed."] = "O nome do grupo foi alterado."; -$a->strings["Save Group"] = "Salvar o grupo"; -$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos."; -$a->strings["Group Name: "] = "Nome do grupo: "; -$a->strings["Group removed."] = "O grupo foi removido."; -$a->strings["Unable to remove group."] = "Não foi possível remover o grupo."; -$a->strings["Group Editor"] = "Editor de grupo"; -$a->strings["Members"] = "Membros"; -$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; -$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:"; -$a->strings["Source input: "] = "Entrada fonte:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):"; -$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): "] = "Fonte de entrada (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Change profile photo"] = "Mudar a foto do perfil"; +$a->strings["Create New Profile"] = "Criar um novo perfil"; +$a->strings["Profile Image"] = "Imagem do perfil"; +$a->strings["visible to everybody"] = "visível para todos"; +$a->strings["Edit visibility"] = "Editar a visibilidade"; +$a->strings["link"] = "ligação"; +$a->strings["Export account"] = "Exportar conta"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."; +$a->strings["Export all"] = "Exportar tudo"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"; +$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo"; +$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem"; +$a->strings["{0} requested registration"] = "{0} solicitou registro"; +$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s"; +$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s"; +$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s"; +$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s"; +$a->strings["{0} posted"] = "{0} publicou"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação"; +$a->strings["Nothing new here"] = "Nada de novo aqui"; +$a->strings["Clear notifications"] = "Descartar notificações"; $a->strings["Not available."] = "Não disponível."; -$a->strings["Contact added"] = "O contato foi adicionado"; -$a->strings["No more system notifications."] = "Não fazer notificações de sistema."; -$a->strings["System Notifications"] = "Notificações de sistema"; -$a->strings["New Message"] = "Nova mensagem"; -$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato."; -$a->strings["Messages"] = "Mensagens"; -$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?"; -$a->strings["Message deleted."] = "A mensagem foi excluída."; -$a->strings["Conversation removed."] = "A conversa foi removida."; -$a->strings["No messages."] = "Nenhuma mensagem."; -$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s"; -$a->strings["You and %s"] = "Você e %s"; -$a->strings["%s and You"] = "%s e você"; -$a->strings["Delete conversation"] = "Excluir conversa"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d mensagem", - 1 => "%d mensagens", -); -$a->strings["Message not available."] = "A mensagem não está disponível."; -$a->strings["Delete message"] = "Excluir a mensagem"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você pode ser capaz de responder a partir da página de perfil do remetente."; -$a->strings["Send Reply"] = "Enviar resposta"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; -$a->strings["Post successful."] = "Publicado com sucesso."; +$a->strings["Community"] = "Comunidade"; +$a->strings["Save to Folder:"] = "Salvar na pasta:"; +$a->strings["- select -"] = "-selecione-"; +$a->strings["Save"] = "Salvar"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"; +$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?"; +$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d"; +$a->strings["File upload failed."] = "Não foi possível enviar o arquivo."; +$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; +$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; +$a->strings["Visible To"] = "Visível para"; +$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)"; +$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?"; +$a->strings["Friend Suggestions"] = "Sugestões de amigos"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."; +$a->strings["Connect"] = "Conectar"; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Access denied."] = "Acesso negado."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s"; +$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou 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"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""; +$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: "; +$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada."; +$a->strings["Delegate Page Management"] = "Delegar Administração de 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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."; +$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes"; +$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes"; +$a->strings["Potential Delegates"] = "Delegados Potenciais"; +$a->strings["Add"] = "Adicionar"; +$a->strings["No entries."] = "Sem entradas."; +$a->strings["No contacts."] = "Nenhum contato."; +$a->strings["View Contacts"] = "Ver contatos"; +$a->strings["Personal Notes"] = "Notas pessoais"; +$a->strings["Poke/Prod"] = "Cutucar/Incitar"; +$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém"; +$a->strings["Recipient"] = "Destinatário"; +$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário"; +$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada"; +$a->strings["Global Directory"] = "Diretório global"; +$a->strings["Find on this site"] = "Pesquisar neste site"; +$a->strings["Site Directory"] = "Diretório do site"; +$a->strings["Gender: "] = "Gênero: "; +$a->strings["Gender:"] = "Gênero:"; +$a->strings["Status:"] = "Situação:"; +$a->strings["Homepage:"] = "Página web:"; +$a->strings["About:"] = "Sobre:"; +$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas)."; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i"; $a->strings["Time Conversion"] = "Conversão de tempo"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."; @@ -1055,82 +1057,7 @@ $a->strings["UTC time: %s"] = "Hora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso horário atual: %s"; $a->strings["Converted localtime: %s"] = "Horário local convertido: %s"; $a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:"; -$a->strings["Save to Folder:"] = "Salvar na pasta:"; -$a->strings["- select -"] = "-selecione-"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; -$a->strings["Visible To"] = "Visível para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)"; -$a->strings["No contacts."] = "Nenhum contato."; -$a->strings["View Contacts"] = "Ver contatos"; -$a->strings["People Search"] = "Pesquisar pessoas"; -$a->strings["No matches"] = "Nenhuma correspondência"; -$a->strings["Upload New Photos"] = "Enviar novas fotos"; -$a->strings["Contact information unavailable"] = "A informação de contato não está disponível"; -$a->strings["Album not found."] = "O álbum não foi encontrado."; -$a->strings["Delete Album"] = "Excluir o álbum"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"; -$a->strings["Delete Photo"] = "Excluir a foto"; -$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s"; -$a->strings["a photo"] = "uma foto"; -$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de "; -$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; -$a->strings["Unable to process image."] = "Não foi possível processar a imagem."; -$a->strings["Image upload failed."] = "Não foi possível enviar a imagem."; -$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto"; -$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."; -$a->strings["Upload Photos"] = "Enviar fotos"; -$a->strings["New album name: "] = "Nome do novo álbum: "; -$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: "; -$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio"; -$a->strings["Permissions"] = "Permissões"; -$a->strings["Private Photo"] = "Foto Privada"; -$a->strings["Public Photo"] = "Foto Pública"; -$a->strings["Edit Album"] = "Editar o álbum"; -$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro"; -$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro"; -$a->strings["View Photo"] = "Ver a foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito."; -$a->strings["Photo not available"] = "A foto não está disponível"; -$a->strings["View photo"] = "Ver a imagem"; -$a->strings["Edit photo"] = "Editar a foto"; -$a->strings["Use as profile photo"] = "Usar como uma foto de perfil"; -$a->strings["View Full Size"] = "Ver no tamanho real"; -$a->strings["Tags: "] = "Etiquetas: "; -$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]"; -$a->strings["Rotate CW (right)"] = "Rotacionar para direita"; -$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda"; -$a->strings["New album name"] = "Novo nome para o álbum"; -$a->strings["Caption"] = "Legenda"; -$a->strings["Add a Tag"] = "Adicionar uma etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"; -$a->strings["Private photo"] = "Foto privada"; -$a->strings["Public photo"] = "Foto pública"; -$a->strings["Share"] = "Compartilhar"; -$a->strings["View Album"] = "Ver álbum"; -$a->strings["Recent Photos"] = "Fotos recentes"; -$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d"; -$a->strings["File upload failed."] = "Não foi possível enviar o arquivo."; -$a->strings["No videos selected"] = "Nenhum vídeo selecionado"; -$a->strings["View Video"] = "Ver Vídeo"; -$a->strings["Recent Videos"] = "Vídeos Recentes"; -$a->strings["Upload New Videos"] = "Envie Novos Vídeos"; -$a->strings["Poke/Prod"] = "Cutucar/Incitar"; -$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém"; -$a->strings["Recipient"] = "Destinatário"; -$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário"; -$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s"; -$a->strings["Export account"] = "Exportar conta"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."; -$a->strings["Export all"] = "Exportar tudo"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"; -$a->strings["Common Friends"] = "Amigos em Comum"; -$a->strings["No contacts in common."] = "Nenhum contato em comum."; -$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d"; -$a->strings["Wall Photos"] = "Fotos do mural"; +$a->strings["Post successful."] = "Publicado com sucesso."; $a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la."; $a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s]."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"; @@ -1144,51 +1071,89 @@ $a->strings["Crop Image"] = "Cortar a imagem"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização."; $a->strings["Done Editing"] = "Encerrar a edição"; $a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso."; -$a->strings["Applications"] = "Aplicativos"; -$a->strings["No installed applications."] = "Nenhum aplicativo instalado"; -$a->strings["Nothing new here"] = "Nada de novo aqui"; -$a->strings["Clear notifications"] = "Descartar notificações"; +$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração"; +$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados."; +$a->strings["Could not create table."] = "Não foi possível criar tabela."; +$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."; +$a->strings["System check"] = "Checagem do sistema"; +$a->strings["Check again"] = "Checar novamente"; +$a->strings["Database connection"] = "Conexão de banco de dados"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."; +$a->strings["Database Server Name"] = "Nome do servidor de banco de dados"; +$a->strings["Database Login Name"] = "Nome do usuário do banco de dados"; +$a->strings["Database Login Password"] = "Senha do usuário do banco de dados"; +$a->strings["Database Name"] = "Nome do banco de dados"; +$a->strings["Site administrator email address"] = "Endereço de email do administrador do site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."; +$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site"; +$a->strings["Site settings"] = "Configurações do site"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu 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'"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Caminho para o executável do PhP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."; +$a->strings["Command line PHP"] = "PHP em linha de comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"; +$a->strings["Found PHP version: "] = "Encontrado PHP versão:"; +$a->strings["PHP cli binary"] = "Binário cli do PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."; +$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens."; +$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"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação"; +$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics"; +$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 do Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."; +$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não 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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."; +$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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."; +$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."; +$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; +$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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."; +$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados."; +$a->strings["

What next

"] = "

A seguir

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."; +$a->strings["Group created."] = "O grupo foi criado."; +$a->strings["Could not create group."] = "Não foi possível criar o grupo."; +$a->strings["Group not found."] = "O grupo não foi encontrado."; +$a->strings["Group name changed."] = "O nome do grupo foi alterado."; +$a->strings["Save Group"] = "Salvar o grupo"; +$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos."; +$a->strings["Group Name: "] = "Nome do grupo: "; +$a->strings["Group removed."] = "O grupo foi removido."; +$a->strings["Unable to remove group."] = "Não foi possível remover o grupo."; +$a->strings["Group Editor"] = "Editor de grupo"; +$a->strings["Members"] = "Membros"; +$a->strings["No such group"] = "Este grupo não existe"; +$a->strings["Group is empty"] = "O grupo está vazio"; +$a->strings["Group: "] = "Grupo: "; +$a->strings["View in context"] = "Ver no contexto"; +$a->strings["Account approved."] = "A conta foi aprovada."; +$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; +$a->strings["Please login."] = "Por favor, autentique-se."; $a->strings["Profile Match"] = "Correspondência de perfil"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."; $a->strings["is interested in:"] = "se interessa por:"; -$a->strings["Tag removed"] = "A etiqueta foi removida"; -$a->strings["Remove Item Tag"] = "Remover a etiqueta do item"; -$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; -$a->strings["Remove"] = "Remover"; -$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar o evento"; -$a->strings["link to source"] = "exibir a origem"; -$a->strings["Create New Event"] = "Criar um novo evento"; -$a->strings["Previous"] = "Anterior"; -$a->strings["hour:minute"] = "hora:minuto"; -$a->strings["Event details"] = "Detalhes do evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios."; -$a->strings["Event Starts:"] = "Início do evento:"; -$a->strings["Required"] = "Obrigatório"; -$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; -$a->strings["Event Finishes:"] = "Término do evento:"; -$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; -$a->strings["Description:"] = "Descrição:"; -$a->strings["Title:"] = "Título:"; -$a->strings["Share this event"] = "Compartilhar este evento"; -$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada."; -$a->strings["Delegate Page Management"] = "Delegar Administração de 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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."; -$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes"; -$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes"; -$a->strings["Potential Delegates"] = "Delegados Potenciais"; -$a->strings["Add"] = "Adicionar"; -$a->strings["No entries."] = "Sem entradas."; -$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo"; -$a->strings["Files"] = "Arquivos"; -$a->strings["System down for maintenance"] = "Sistema em manutenção"; -$a->strings["Remove My Account"] = "Remover minha conta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."; -$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; -$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada"; -$a->strings["Suggest Friends"] = "Sugerir amigos"; -$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; $a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; $a->strings["Empty post discarded."] = "A publicação em branco foi descartada."; $a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; @@ -1196,168 +1161,187 @@ $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"] = "Você pode visitá-lo em %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."; $a->strings["%s posted an update."] = "%s publicou uma atualização."; -$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo"; -$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem"; -$a->strings["{0} requested registration"] = "{0} solicitou registro"; -$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s"; -$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s"; -$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s"; -$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s"; -$a->strings["{0} posted"] = "{0} publicou"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação"; -$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."; -$a->strings["Login failed."] = "Não foi possível autenticar."; -$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; -$a->strings["Discard"] = "Descartar"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Rede"; -$a->strings["Introductions"] = "Apresentações"; -$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas"; -$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas"; -$a->strings["Notification type: "] = "Tipo de notificação:"; -$a->strings["Friend Suggestion"] = "Sugestão de amigo"; -$a->strings["suggested by %s"] = "sugerido por %s"; -$a->strings["Post a new friend activity"] = "Publicar a adição de amigo"; -$a->strings["if applicable"] = "se aplicável"; -$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: "; -$a->strings["yes"] = "sim"; -$a->strings["no"] = "não"; -$a->strings["Approve as: "] = "Aprovar como:"; -$a->strings["Friend"] = "Amigo"; -$a->strings["Sharer"] = "Compartilhador"; -$a->strings["Fan/Admirer"] = "Fã/Admirador"; -$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão"; -$a->strings["New Follower"] = "Novo acompanhante"; -$a->strings["No introductions."] = "Sem apresentações."; -$a->strings["Notifications"] = "Notificações"; -$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s"; -$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s"; -$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s"; -$a->strings["%s created a new post"] = "%s criou uma nova publicação"; -$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s"; -$a->strings["No more network notifications."] = "Nenhuma notificação de rede."; -$a->strings["Network Notifications"] = "Notificações de rede"; -$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal."; -$a->strings["Personal Notifications"] = "Notificações pessoais"; -$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal."; -$a->strings["Home Notifications"] = "Notificações pessoais"; -$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido."; -$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; -$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio."; -$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; -$a->strings["%d message sent."] = array( - 0 => "%d mensagem enviada.", - 1 => "%d mensagens enviadas.", +$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s"; +$a->strings["Mood"] = "Humor"; +$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos"; +$a->strings["Search Results For:"] = "Resultados de Busca Por:"; +$a->strings["add"] = "adicionar"; +$a->strings["Commented Order"] = "Ordem dos comentários"; +$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário"; +$a->strings["Posted Order"] = "Ordem das publicações"; +$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação"; +$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você"; +$a->strings["New"] = "Nova"; +$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; +$a->strings["Shared Links"] = "Links compartilhados"; +$a->strings["Interesting Links"] = "Links interessantes"; +$a->strings["Starred"] = "Destacada"; +$a->strings["Favourite Posts"] = "Publicações favoritas"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Aviso: Este grupo contém %s membro de uma rede insegura.", + 1 => "Aviso: Este grupo contém %s membros de uma rede insegura.", ); -$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; -$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."; -$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."; -$a->strings["Send invitations"] = "Enviar convites."; -$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."; -$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou 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"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""; -$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: "; -$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; -$a->strings["Friends of %s"] = "Amigos de %s"; -$a->strings["No friends to display."] = "Nenhum amigo para exibir."; -$a->strings["Add New Contact"] = "Adicionar Contato Novo"; -$a->strings["Enter address or web location"] = "Forneça endereço ou localização web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; -$a->strings["%d invitation available"] = array( - 0 => "%d convite disponível", - 1 => "%d convites disponíveis", -); -$a->strings["Find People"] = "Pesquisar por pessoas"; -$a->strings["Enter name or interest"] = "Fornecer nome ou interesse"; -$a->strings["Connect/Follow"] = "Conectar-se/acompanhar"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing"; -$a->strings["Random Profile"] = "Perfil Randômico"; -$a->strings["Networks"] = "Redes"; -$a->strings["All Networks"] = "Todas as redes"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."; +$a->strings["Contact: "] = "Contato: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."; +$a->strings["Invalid contact."] = "Contato inválido."; +$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas."; +$a->strings["Contact update failed."] = "Não foi possível atualizar o contato."; +$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATENÇÃO: Isso é muito avançado, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo."; +$a->strings["Return to contact editor"] = "Voltar ao editor de contatos"; +$a->strings["Account Nickname"] = "Identificação da conta"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação"; +$a->strings["Account URL"] = "URL da conta"; +$a->strings["Friend Request URL"] = "URL da requisição de amizade"; +$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade"; +$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação"; +$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias"; +$a->strings["New photo from this URL"] = "Nova imagem desta URL"; +$a->strings["Remote Self"] = "Auto remoto"; +$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."; +$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; +$a->strings["Your profile page"] = "Sua página de perfil"; +$a->strings["Your contacts"] = "Seus contatos"; +$a->strings["Your photos"] = "Suas fotos"; +$a->strings["Your events"] = "Seus eventos"; +$a->strings["Personal notes"] = "Suas anotações pessoais"; +$a->strings["Your personal photos"] = "Suas fotos pessoais"; +$a->strings["Community Pages"] = "Páginas da Comunidade"; +$a->strings["Community Profiles"] = "Profiles Comunitários"; +$a->strings["Last users"] = "Últimos usuários"; +$a->strings["Last likes"] = "Últimas gostadas"; +$a->strings["event"] = "evento"; +$a->strings["Last photos"] = "Últimas fotos"; +$a->strings["Find Friends"] = "Encontrar amigos"; +$a->strings["Local Directory"] = "Diretório Local"; +$a->strings["Similar Interests"] = "Interesses Parecidos"; +$a->strings["Invite Friends"] = "Convidar amigos"; +$a->strings["Earth Layers"] = "Camadas da Terra"; +$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra"; +$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra"; +$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?"; +$a->strings["Connect Services"] = "Conectar serviços"; +$a->strings["don't show"] = "não exibir"; +$a->strings["show"] = "exibir"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:"; +$a->strings["Theme settings"] = "Configurações do tema"; +$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários"; +$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários"; +$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio"; +$a->strings["Set color scheme"] = "Configure o esquema de cores"; +$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra"; +$a->strings["Set style"] = "escolha estilo"; +$a->strings["Set colour scheme"] = "Configure o esquema de cores"; +$a->strings["Alignment"] = "Alinhamento"; +$a->strings["Left"] = "Esquerda"; +$a->strings["Center"] = "Centro"; +$a->strings["Color scheme"] = "Esquema de cores"; +$a->strings["Posts font size"] = "Tamanho da fonte para publicações"; +$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"; +$a->strings["Set theme width"] = "Configure a largura do tema"; +$a->strings["Delete this item?"] = "Excluir este item?"; +$a->strings["show fewer"] = "exibir menos"; +$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log)."; +$a->strings["Update Error at %s"] = "Erro de Atualização em %s"; +$a->strings["Create a New Account"] = "Criar uma nova conta"; +$a->strings["Logout"] = "Sair"; +$a->strings["Login"] = "Entrar"; +$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: "; +$a->strings["Password: "] = "Senha: "; +$a->strings["Remember me"] = "Lembre-se de mim"; +$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:"; +$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; +$a->strings["Website Terms of Service"] = "Termos de Serviço do Website"; +$a->strings["terms of service"] = "termos de serviço"; +$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website"; +$a->strings["privacy policy"] = "política de privacidade"; +$a->strings["Requested account is not available."] = "Conta solicitada não disponível"; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Message"] = "Mensagem"; +$a->strings["Profiles"] = "Perfis"; +$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis"; +$a->strings["g A l F d"] = "G l d F"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoje]"; +$a->strings["Birthday Reminders"] = "Lembretes de aniversário"; +$a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; +$a->strings["[No description]"] = "[Sem descrição]"; +$a->strings["Event Reminders"] = "Lembretes de eventos"; +$a->strings["Events this week:"] = "Eventos esta semana:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações"; +$a->strings["Profile Details"] = "Detalhe do Perfil"; +$a->strings["Videos"] = "Vídeos"; +$a->strings["Events and Calendar"] = "Eventos e Agenda"; +$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso"; +$a->strings["General Features"] = "Funcionalidades Gerais"; +$a->strings["Multiple Profiles"] = "Perfís Múltiplos"; +$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos"; +$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações"; +$a->strings["Richtext Editor"] = "Editor Richtext"; +$a->strings["Enable richtext editor"] = "Habilite editor richtext"; +$a->strings["Post Preview"] = "Pré-visualização da Publicação"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los"; +$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"; +$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede"; +$a->strings["Search by Date"] = "Buscar por Data"; +$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data"; +$a->strings["Group Filter"] = "Filtrar Grupo"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"; +$a->strings["Network Filter"] = "Filtrar Rede"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas"; +$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso"; +$a->strings["Network Tabs"] = "Abas da Rede"; +$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"; +$a->strings["Network New Tab"] = "Aba Nova da Rede"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"; +$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links"; +$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário"; +$a->strings["Multiple Deletion"] = "Deleção Multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente"; +$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas"; +$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio"; +$a->strings["Tagging"] = "Etiquetagem"; +$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes"; +$a->strings["Post Categories"] = "Categorias de Publicações"; +$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações"; $a->strings["Saved Folders"] = "Pastas salvas"; -$a->strings["Everything"] = "Tudo"; -$a->strings["Categories"] = "Categorias"; -$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade)."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; -$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura."; -$a->strings["view full size"] = "ver na tela inteira"; -$a->strings["Starts:"] = "Início:"; -$a->strings["Finishes:"] = "Término:"; -$a->strings["(no subject)"] = "(sem assunto)"; -$a->strings["noreply"] = "naoresponda"; -$a->strings["An invitation is required."] = "É necessário um convite."; -$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; -$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida"; +$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas"; +$a->strings["Dislike Posts"] = "Desgostar de publicações"; +$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários"; +$a->strings["Star Posts"] = "Destacar publicações"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora"; +$a->strings["Logged out."] = "Saiu."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."; $a->strings["The error message was:"] = "A mensagem de erro foi:"; -$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; -$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto."; -$a->strings["Name too short."] = "O nome é muito curto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site."; -$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido."; -$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."; -$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança."; -$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."; -$a->strings["Friends"] = "Amigos"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; -$a->strings["poked"] = "cutucado"; -$a->strings["post/item"] = "postagem/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito"; -$a->strings["remove"] = "remover"; -$a->strings["Delete Selected Items"] = "Excluir os itens selecionados"; -$a->strings["Follow Thread"] = "Seguir o Thread"; -$a->strings["View Status"] = "Ver Status"; -$a->strings["View Profile"] = "Ver Perfil"; -$a->strings["View Photos"] = "Ver Fotos"; -$a->strings["Network Posts"] = "Publicações da Rede"; -$a->strings["Edit Contact"] = "Editar Contato"; -$a->strings["Send PM"] = "Enviar MP"; -$a->strings["Poke"] = "Cutucar"; -$a->strings["%s likes this."] = "%s gostou disso."; -$a->strings["%s doesn't like this."] = "%s não gostou disso."; -$a->strings["%2\$d people like this"] = "%2\$d pessoas gostaram disso"; -$a->strings["%2\$d people don't like this"] = "%2\$d pessoas não gostaram disso"; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = ", e mais %d outras pessoas"; -$a->strings["%s like this."] = "%s gostaram disso."; -$a->strings["%s don't like this."] = "%s não gostaram disso."; -$a->strings["Visible to everybody"] = "Visível para todos"; -$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo"; -$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio"; -$a->strings["Tag term:"] = "Etiqueta:"; -$a->strings["Where are you right now?"] = "Onde você está agora?"; -$a->strings["Delete item(s)?"] = "Deletar item(s)?"; -$a->strings["Post to Email"] = "Enviar por e-mail"; -$a->strings["permissions"] = "permissões"; -$a->strings["Post to Groups"] = "Postar em Grupos"; -$a->strings["Post to Contacts"] = "Publique para Contatos"; -$a->strings["Private post"] = "Publicação privada"; -$a->strings["Logged out."] = "Saiu."; -$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)"; -$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!"; -$a->strings["User creation error"] = "Erro na criação do usuário"; -$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contato não foi importado", - 1 => "%d contatos não foram importados", -); -$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha"; +$a->strings["Starts:"] = "Início:"; +$a->strings["Finishes:"] = "Término:"; +$a->strings["j F, Y"] = "j de F, Y"; +$a->strings["j F"] = "j de F"; +$a->strings["Birthday:"] = "Aniversário:"; +$a->strings["Age:"] = "Idade:"; +$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Religion:"] = "Religião:"; +$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:"; +$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:"; +$a->strings["Musical interests:"] = "Preferências musicais:"; +$a->strings["Books, literature:"] = "Livros, literatura:"; +$a->strings["Television:"] = "Televisão:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:"; +$a->strings["Love/Romance:"] = "Amor/romance:"; +$a->strings["Work/employment:"] = "Trabalho/emprego:"; +$a->strings["School/education:"] = "Escola/educação:"; +$a->strings["[no subject]"] = "[sem assunto]"; +$a->strings[" on Last.fm"] = "na Last.fm"; $a->strings["newer"] = "mais recente"; $a->strings["older"] = "antigo"; $a->strings["prev"] = "anterior"; @@ -1370,6 +1354,7 @@ $a->strings["%d Contact"] = array( 1 => "%d contatos", ); $a->strings["poke"] = "cutucar"; +$a->strings["poked"] = "cutucado"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "pingado"; $a->strings["prod"] = "incentivar"; @@ -1421,56 +1406,25 @@ $a->strings["November"] = "Novembro"; $a->strings["December"] = "Dezembro"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clique para abrir/fechar"; +$a->strings["default"] = "padrão"; $a->strings["Select an alternate language"] = "Selecione um idioma alternativo"; $a->strings["activity"] = "atividade"; $a->strings["post"] = "publicação"; $a->strings["Item filed"] = "O item foi arquivado"; -$a->strings["Friendica Notification"] = "Notificação Friendica"; -$a->strings["Thank You,"] = "Obrigado,"; -$a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s."; -$a->strings["a private message"] = "uma mensagem privada"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s."; -$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação."; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s"; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão."; -$a->strings[" on Last.fm"] = "na Last.fm"; -$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; -$a->strings["Everybody"] = "Todos"; -$a->strings["edit"] = "editar"; -$a->strings["Edit group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Criar um novo grupo"; -$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo"; +$a->strings["User not found."] = "Usuário não encontrado."; +$a->strings["There is no status with this id."] = "Não existe status com esse id."; +$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; +$a->strings["%s's birthday"] = "aniversários de %s's"; +$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s"; +$a->strings["A new person is sharing with you at "] = "Uma nova pessoa está compartilhando com você em "; +$a->strings["You have a new follower at "] = "Você tem um novo acompanhante em "; +$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?"; +$a->strings["Archives"] = "Arquivos"; +$a->strings["(no subject)"] = "(sem assunto)"; +$a->strings["noreply"] = "naoresponda"; +$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora"; +$a->strings["Attachments:"] = "Anexos:"; $a->strings["Connect URL missing."] = "URL de conexão faltando."; $a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."; @@ -1483,138 +1437,6 @@ $a->strings["The profile address specified belongs to a network which has been d $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."; $a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato."; $a->strings["following"] = "acompanhando"; -$a->strings["[no subject]"] = "[sem assunto]"; -$a->strings["End this session"] = "Terminar esta sessão"; -$a->strings["Sign in"] = "Entrar"; -$a->strings["Home Page"] = "Página pessoal"; -$a->strings["Create an account"] = "Criar uma conta"; -$a->strings["Help and documentation"] = "Ajuda e documentação"; -$a->strings["Apps"] = "Aplicativos"; -$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos"; -$a->strings["Search site content"] = "Pesquisar conteúdo no site"; -$a->strings["Conversations on this site"] = "Conversas neste site"; -$a->strings["Directory"] = "Diretório"; -$a->strings["People directory"] = "Diretório de pessoas"; -$a->strings["Conversations from your friends"] = "Conversas dos seus amigos"; -$a->strings["Network Reset"] = "Reiniciar Rede"; -$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros"; -$a->strings["Friend Requests"] = "Requisições de Amizade"; -$a->strings["See all notifications"] = "Ver todas notificações"; -$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; -$a->strings["Private mail"] = "Mensagem privada"; -$a->strings["Inbox"] = "Recebidas"; -$a->strings["Outbox"] = "Enviadas"; -$a->strings["Manage"] = "Gerenciar"; -$a->strings["Manage other pages"] = "Gerenciar outras páginas"; -$a->strings["Delegations"] = "Delegações"; -$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis"; -$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos"; -$a->strings["Site setup and configuration"] = "Configurações do site"; -$a->strings["Navigation"] = "Navegação"; -$a->strings["Site map"] = "Mapa do Site"; -$a->strings["j F, Y"] = "j de F, Y"; -$a->strings["j F"] = "j de F"; -$a->strings["Birthday:"] = "Aniversário:"; -$a->strings["Age:"] = "Idade:"; -$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Religion:"] = "Religião:"; -$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:"; -$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:"; -$a->strings["Musical interests:"] = "Preferências musicais:"; -$a->strings["Books, literature:"] = "Livros, literatura:"; -$a->strings["Television:"] = "Televisão:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:"; -$a->strings["Love/Romance:"] = "Amor/romance:"; -$a->strings["Work/employment:"] = "Trabalho/emprego:"; -$a->strings["School/education:"] = "Escola/educação:"; -$a->strings["Image/photo"] = "Imagem/foto"; -$a->strings["%s wrote the following post"] = "%sescreveu o seguintepublicação"; -$a->strings["$1 wrote:"] = "$1 escreveu:"; -$a->strings["Encrypted content"] = "Conteúdo criptografado"; -$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado"; -$a->strings["Block immediately"] = "Bloquear imediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista"; -$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca"; -$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo"; -$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensalmente"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Miscellaneous"] = "Miscelânea"; -$a->strings["year"] = "ano"; -$a->strings["month"] = "mês"; -$a->strings["day"] = "dia"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "menos de um segundo atrás"; -$a->strings["years"] = "anos"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$a->strings["days"] = "dias"; -$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"] = "%1\$d %2\$s atrás"; -$a->strings["%s's birthday"] = "aniversários de %s's"; -$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s"; -$a->strings["General Features"] = "Funcionalidades Gerais"; -$a->strings["Multiple Profiles"] = "Perfís Múltiplos"; -$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos"; -$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações"; -$a->strings["Richtext Editor"] = "Editor Richtext"; -$a->strings["Enable richtext editor"] = "Habilite editor richtext"; -$a->strings["Post Preview"] = "Pré-visualização da Publicação"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los"; -$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede"; -$a->strings["Search by Date"] = "Buscar por Data"; -$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data"; -$a->strings["Group Filter"] = "Filtrar Grupo"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"; -$a->strings["Network Filter"] = "Filtrar Rede"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas"; -$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso"; -$a->strings["Network Tabs"] = "Abas da Rede"; -$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"; -$a->strings["Network New Tab"] = "Aba Nova da Rede"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"; -$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links"; -$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário"; -$a->strings["Multiple Deletion"] = "Deleção Multipla"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente"; -$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas"; -$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio"; -$a->strings["Tagging"] = "Etiquetagem"; -$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes"; -$a->strings["Post Categories"] = "Categorias de Publicações"; -$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações"; -$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas"; -$a->strings["Dislike Posts"] = "Desgostar de publicações"; -$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários"; -$a->strings["Star Posts"] = "Destacar publicações"; -$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora"; -$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora"; -$a->strings["Attachments:"] = "Anexos:"; -$a->strings["Visible to everybody"] = "Visível para todos"; -$a->strings["A new person is sharing with you at "] = "Uma nova pessoa está compartilhando com você em "; -$a->strings["You have a new follower at "] = "Você tem um novo acompanhante em "; -$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?"; -$a->strings["Archives"] = "Arquivos"; -$a->strings["Embedded content"] = "Conteúdo incorporado"; -$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; $a->strings["Welcome "] = "Bem-vindo(a) "; $a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil."; $a->strings["Welcome back "] = "Bem-vindo(a) de volta "; @@ -1655,6 +1477,7 @@ $a->strings["Infatuated"] = "Apaixonado"; $a->strings["Dating"] = "Saindo com alguém"; $a->strings["Unfaithful"] = "Infiel"; $a->strings["Sex Addict"] = "Viciado(a) em sexo"; +$a->strings["Friends"] = "Amigos"; $a->strings["Friends/Benefits"] = "Amigos/Benefícios"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Envolvido(a)"; @@ -1676,6 +1499,208 @@ $a->strings["Uncertain"] = "Incerto(a)"; $a->strings["It's complicated"] = "É complicado"; $a->strings["Don't care"] = "Não importa"; $a->strings["Ask me"] = "Pergunte-me"; +$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)"; +$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!"; +$a->strings["User creation error"] = "Erro na criação do usuário"; +$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contato não foi importado", + 1 => "%d contatos não foram importados", +); +$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha"; +$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade)."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; +$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; +$a->strings["post/item"] = "postagem/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito"; +$a->strings["remove"] = "remover"; +$a->strings["Delete Selected Items"] = "Excluir os itens selecionados"; +$a->strings["Follow Thread"] = "Seguir o Thread"; +$a->strings["View Status"] = "Ver Status"; +$a->strings["View Profile"] = "Ver Perfil"; +$a->strings["View Photos"] = "Ver Fotos"; +$a->strings["Network Posts"] = "Publicações da Rede"; +$a->strings["Edit Contact"] = "Editar Contato"; +$a->strings["Send PM"] = "Enviar MP"; +$a->strings["Poke"] = "Cutucar"; +$a->strings["%s likes this."] = "%s gostou disso."; +$a->strings["%s doesn't like this."] = "%s não gostou disso."; +$a->strings["%2\$d people like this"] = "%2\$d pessoas gostaram disso"; +$a->strings["%2\$d people don't like this"] = "%2\$d pessoas não gostaram disso"; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = ", e mais %d outras pessoas"; +$a->strings["%s like this."] = "%s gostaram disso."; +$a->strings["%s don't like this."] = "%s não gostaram disso."; +$a->strings["Visible to everybody"] = "Visível para todos"; +$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo"; +$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio"; +$a->strings["Tag term:"] = "Etiqueta:"; +$a->strings["Where are you right now?"] = "Onde você está agora?"; +$a->strings["Delete item(s)?"] = "Deletar item(s)?"; +$a->strings["Post to Email"] = "Enviar por e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado."; +$a->strings["permissions"] = "permissões"; +$a->strings["Post to Groups"] = "Postar em Grupos"; +$a->strings["Post to Contacts"] = "Publique para Contatos"; +$a->strings["Private post"] = "Publicação privada"; +$a->strings["Add New Contact"] = "Adicionar Contato Novo"; +$a->strings["Enter address or web location"] = "Forneça endereço ou localização web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; +$a->strings["%d invitation available"] = array( + 0 => "%d convite disponível", + 1 => "%d convites disponíveis", +); +$a->strings["Find People"] = "Pesquisar por pessoas"; +$a->strings["Enter name or interest"] = "Fornecer nome ou interesse"; +$a->strings["Connect/Follow"] = "Conectar-se/acompanhar"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing"; +$a->strings["Random Profile"] = "Perfil Randômico"; +$a->strings["Networks"] = "Redes"; +$a->strings["All Networks"] = "Todas as redes"; +$a->strings["Everything"] = "Tudo"; +$a->strings["Categories"] = "Categorias"; +$a->strings["End this session"] = "Terminar esta sessão"; +$a->strings["Sign in"] = "Entrar"; +$a->strings["Home Page"] = "Página pessoal"; +$a->strings["Create an account"] = "Criar uma conta"; +$a->strings["Help and documentation"] = "Ajuda e documentação"; +$a->strings["Apps"] = "Aplicativos"; +$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos"; +$a->strings["Search site content"] = "Pesquisar conteúdo no site"; +$a->strings["Conversations on this site"] = "Conversas neste site"; +$a->strings["Directory"] = "Diretório"; +$a->strings["People directory"] = "Diretório de pessoas"; +$a->strings["Information"] = "Informação"; +$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica"; +$a->strings["Conversations from your friends"] = "Conversas dos seus amigos"; +$a->strings["Network Reset"] = "Reiniciar Rede"; +$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros"; +$a->strings["Friend Requests"] = "Requisições de Amizade"; +$a->strings["See all notifications"] = "Ver todas notificações"; +$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; +$a->strings["Private mail"] = "Mensagem privada"; +$a->strings["Inbox"] = "Recebidas"; +$a->strings["Outbox"] = "Enviadas"; +$a->strings["Manage"] = "Gerenciar"; +$a->strings["Manage other pages"] = "Gerenciar outras páginas"; +$a->strings["Account settings"] = "Configurações da conta"; +$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis"; +$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos"; +$a->strings["Site setup and configuration"] = "Configurações do site"; +$a->strings["Navigation"] = "Navegação"; +$a->strings["Site map"] = "Mapa do Site"; +$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado"; +$a->strings["Block immediately"] = "Bloquear imediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista"; +$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca"; +$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo"; +$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança"; +$a->strings["Weekly"] = "Semanalmente"; +$a->strings["Monthly"] = "Mensalmente"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Conector do Diáspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["Friendica Notification"] = "Notificação Friendica"; +$a->strings["Thank You,"] = "Obrigado,"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s."; +$a->strings["a private message"] = "uma mensagem privada"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s"; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão."; +$a->strings["An invitation is required."] = "É necessário um convite."; +$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; +$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida"; +$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; +$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto."; +$a->strings["Name too short."] = "O nome é muito curto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site."; +$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido."; +$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."; +$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança."; +$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."; +$a->strings["Visible to everybody"] = "Visível para todos"; +$a->strings["Image/photo"] = "Imagem/foto"; +$a->strings["%s wrote the following post"] = "%s escreveu a seguinte publicação"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 escreveu:"; +$a->strings["Encrypted content"] = "Conteúdo criptografado"; +$a->strings["Embedded content"] = "Conteúdo incorporado"; +$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; +$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; +$a->strings["Everybody"] = "Todos"; +$a->strings["edit"] = "editar"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Criar um novo grupo"; +$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo"; $a->strings["stopped following"] = "parou de acompanhar"; $a->strings["Drop Contact"] = "Excluir o contato"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; +$a->strings["Miscellaneous"] = "Miscelânea"; +$a->strings["year"] = "ano"; +$a->strings["month"] = "mês"; +$a->strings["day"] = "dia"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "menos de um segundo atrás"; +$a->strings["years"] = "anos"; +$a->strings["months"] = "meses"; +$a->strings["week"] = "semana"; +$a->strings["weeks"] = "semanas"; +$a->strings["days"] = "dias"; +$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"] = "%1\$d %2\$s atrás"; +$a->strings["view full size"] = "ver na tela inteira"; From 5a55541dbdea9e3779202311f06a1c655a72a789 Mon Sep 17 00:00:00 2001 From: tobiasd Date: Sun, 25 May 2014 08:00:22 +0200 Subject: [PATCH 25/30] rev up --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 3a9e8c3e72..94e6fbc000 100644 --- a/boot.php +++ b/boot.php @@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.2.1748' ); +define ( 'FRIENDICA_VERSION', '3.2.1749' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1170 ); define ( 'EOL', "
\r\n" ); From e3122c4bf3268c27b07268deadd7354893b1a23a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 29 May 2014 07:03:42 +0200 Subject: [PATCH 26/30] NB NO: update to the strings --- view/nb-no/messages.po | 10343 +++++++++++++++++++-------------------- view/nb-no/strings.php | 1907 ++++---- 2 files changed, 6105 insertions(+), 6145 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 7304eab339..a85bca9d3c 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-26 09:22+0200\n" -"PO-Revision-Date: 2014-04-29 07:37+0000\n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-26 10:42+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -22,25 +22,26 @@ msgstr "" msgid "This entry was edited" msgstr "Denne oppføringen ble endret" -#: ../../object/Item.php:113 ../../mod/content.php:619 -#: ../../mod/photos.php:1355 +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 msgid "Private Message" msgstr "Privat melding" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:670 +#: ../../mod/settings.php:671 ../../mod/content.php:727 msgid "Edit" msgstr "Endre" -#: ../../object/Item.php:126 ../../mod/content.php:437 -#: ../../mod/content.php:739 ../../include/conversation.php:612 +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 +#: ../../include/conversation.php:612 msgid "Select" msgstr "Velg" -#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/contacts.php:703 -#: ../../mod/settings.php:671 ../../mod/group.php:171 -#: ../../mod/photos.php:1646 ../../include/conversation.php:613 +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 msgid "Delete" msgstr "Slett" @@ -68,8 +69,8 @@ msgstr "Med stjerne" msgid "add tag" msgstr "Legg til merkelapp" -#: ../../object/Item.php:213 ../../mod/content.php:683 -#: ../../mod/photos.php:1538 +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 msgid "I like this (toggle)" msgstr "Jeg liker dette (skru på/av)" @@ -77,8 +78,8 @@ msgstr "Jeg liker dette (skru på/av)" msgid "like" msgstr "liker" -#: ../../object/Item.php:214 ../../mod/content.php:684 -#: ../../mod/photos.php:1539 +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 msgid "I don't like this (toggle)" msgstr "Jeg liker ikke dette (skru på/av)" @@ -131,17 +132,17 @@ msgstr "via vegg-til-vegg" msgid "%s from %s" msgstr "%s fra %s" -#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 -#: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1687 +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 msgid "Comment" msgstr "Kommentar" -#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/content.php:498 -#: ../../mod/content.php:882 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/photos.php:1541 -#: ../../include/conversation.php:690 ../../include/conversation.php:1102 +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 msgid "Please wait" msgstr "Vennligst vent" @@ -153,40 +154,37 @@ msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" #: ../../object/Item.php:369 ../../object/Item.php:382 -#: ../../mod/content.php:604 ../../include/text.php:1946 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "kommentar" msgstr[1] "kommentarer" -#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "vis mer" -#: ../../object/Item.php:655 ../../mod/content.php:706 -#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 -#: ../../mod/photos.php:1685 +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 msgid "This is you" msgstr "Dette er deg" -#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/clean/config.php:71 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:171 ../../mod/content.php:709 -#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 #: ../../mod/photos.php:1203 ../../mod/photos.php:1510 #: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1688 ../../mod/poke.php:199 ../../mod/events.php:478 -#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 -#: ../../mod/manage.php:110 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 msgid "Submit" msgstr "Lagre" @@ -223,9 +221,9 @@ msgid "Video" msgstr "video" #: ../../object/Item.php:667 ../../mod/editpost.php:145 -#: ../../mod/content.php:718 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1689 -#: ../../include/conversation.php:1119 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 +#: ../../include/conversation.php:1124 msgid "Preview" msgstr "forhåndsvisning" @@ -241,32 +239,33 @@ msgstr "Ikke funnet" msgid "Page not found." msgstr "Fant ikke siden." -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Tilgang nektet" -#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 -#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 -#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 -#: ../../mod/settings.php:101 ../../mod/settings.php:590 -#: ../../mod/settings.php:595 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 -#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 -#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 -#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 -#: ../../mod/notifications.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../wall_attach.php:55 ../../include/items.php:4373 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 +#: ../../include/items.php:4390 msgid "Permission denied." msgstr "Ingen tilgang." @@ -274,742 +273,1684 @@ msgstr "Ingen tilgang." msgid "toggle mobile" msgstr "Velg mobilvisning" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 -#: ../../include/nav.php:104 ../../include/nav.php:145 -msgid "Home" -msgstr "Hjem" +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Innebygget innhold - hent siden på nytt for å se det]" -#: ../../view/theme/perihel/theme.php:33 -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:145 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "Kontakt ikke funnet." -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 -msgid "Profile" -msgstr "Profil" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Venneforslag sendt." -#: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Din profilside" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Foreslå venner" -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 -#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 -msgid "Photos" -msgstr "Bilder" - -#: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 -#: ../../mod/events.php:370 ../../include/nav.php:79 -msgid "Events" -msgstr "Hendelser" - -#: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 -msgid "Your events" -msgstr "Dine hendelser" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Personlige notater" - -#: ../../view/theme/perihel/theme.php:37 -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Dine personlige bilder" - -#: ../../view/theme/perihel/theme.php:38 -#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Fellesskap" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "ikke vis" - -#: ../../view/theme/perihel/config.php:89 -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "vis" - -#: ../../view/theme/perihel/config.php:97 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -#: ../../view/theme/clean/config.php:73 -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:49 -msgid "Theme settings" -msgstr "Temainnstillinger" - -#: ../../view/theme/perihel/config.php:98 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Angi skriftstørrelse for innlegg og kommentarer" - -#: ../../view/theme/perihel/config.php:99 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Angi linjeavstand for innlegg og kommentarer" - -#: ../../view/theme/perihel/config.php:100 -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Angi oppløsning for midtkolonnen" - -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 -#: ../../include/nav.php:173 -msgid "Contacts" -msgstr "Kontakter" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Dine kontakter" - -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Felleskapssider" - -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Fellesskapsprofiler" - -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Siste brukere" - -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Siste liker" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1940 -msgid "event" -msgstr "hendelse" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1908 -msgid "status" -msgstr "status" - -#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 -#: ../../mod/like.php:150 ../../mod/subthread.php:87 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1942 ../../include/diaspora.php:1908 -msgid "photo" -msgstr "bilde" - -#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s liker %2$s's %3$s" +msgid "Suggest a friend for %s" +msgstr "Foreslå en venn for %s" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Siste bilder" +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Denne introduksjonen har allerede blitt akseptert." -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1062 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1751 ../../mod/photos.php:1763 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon." -#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 -#: ../../mod/photos.php:729 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -msgid "Profile Photos" -msgstr "Profilbilder" +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn." -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Finn venner" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Advarsel: profilstedet har ikke noe profilbilde." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokal katalog" +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "one: %d nødvendig parameter ble ikke funnet på angitt sted" +msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Global katalog" +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Introduksjon ferdig." -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Liknende interesser" +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Uopprettelig protokollfeil." -#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Venneforslag" +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil utilgjengelig." -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Inviterer venner" +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s har mottatt for mange kontaktforespørsler idag." -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84 -#: ../../include/nav.php:169 -msgid "Settings" -msgstr "Innstillinger" +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Tiltak mot søppelpost har blitt iverksatt." -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Venner anbefales å prøve igjen om 24 timer." -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Angi zoomfaktor for Earth Layers" +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ugyldig stedsangivelse" -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Angi lengdegrad (X) for Earth Layers" +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Ugyldig e-postadresse." -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Angi breddegrad (Y) for Earth Layers" +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes." -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Hjelp eller @NewHere ?" +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet." -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Forbindelse til tjenester" +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Du har allerede introdusert deg selv her." -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Vis/skjul bokser i kolonnen til høyre:" +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Du er visst allerede venn med %s." -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Angi fargekart" +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Ugyldig profil-URL." -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Angi zoomfaktor for Earth Layer" +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Underkjent profil-URL." -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Justering" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Mislyktes med å oppdatere kontaktposten." -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Venstre" +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Din introduksjon er sendt." -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Midtstilt" +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Vennligst logg inn for å bekrefte introduksjonen." -#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Fargekart" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Skriftstørrelse for innlegg" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Skriftstørrelse for tekstområder" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Angi fargekart" - -#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 -#: ../../include/text.php:1676 -msgid "default" -msgstr "standard" - -#: ../../view/theme/clean/config.php:74 -msgid "Background Image" -msgstr "Bakgrunnsbilde" - -#: ../../view/theme/clean/config.php:74 +#: ../../mod/dfrn_request.php:659 msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "URL-en til et bilde (for eksempel fra ditt fotoalbum) som skal brukes som bakgrunnsbilde" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen." -#: ../../view/theme/clean/config.php:75 -msgid "Background Color" -msgstr "Bakgrunnsfarge" +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Skjul denne kontakten" -#: ../../view/theme/clean/config.php:75 -msgid "HEX value for the background color. Don't include the #" -msgstr "HEX-verdi til bakgrunnsfargen. Ikke ta med #" - -#: ../../view/theme/clean/config.php:77 -msgid "font size" -msgstr "skriftstørrelse" - -#: ../../view/theme/clean/config.php:77 -msgid "base font size for your interface" -msgstr "standard skriftstørrelse i ditt brukergrensesnitt" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Angi temabredde" - -#: ../../view/theme/vier/config.php:50 -msgid "Set style" -msgstr "Angi stil" - -#: ../../boot.php:692 -msgid "Delete this item?" -msgstr "Slett dette elementet?" - -#: ../../boot.php:695 -msgid "show fewer" -msgstr "vis færre" - -#: ../../boot.php:1023 +#: ../../mod/dfrn_request.php:673 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Oppdatering %s mislyktes. Se feilloggene." +msgid "Welcome home %s." +msgstr "Velkommen hjem %s." -#: ../../boot.php:1025 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Update Error at %s" -msgstr "Oppdateringsfeil i %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s." -#: ../../boot.php:1135 -msgid "Create a New Account" -msgstr "Lag en ny konto" +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Bekreft" -#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 -msgid "Register" -msgstr "Registrer" +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Navnet tilbakeholdt]" -#: ../../boot.php:1160 ../../include/nav.php:73 -msgid "Logout" -msgstr "Logg ut" - -#: ../../boot.php:1161 ../../include/nav.php:91 -msgid "Login" -msgstr "Logg inn" - -#: ../../boot.php:1163 -msgid "Nickname or Email address: " -msgstr "Kallenavn eller epostadresse: " - -#: ../../boot.php:1164 -msgid "Password: " -msgstr "Passord: " - -#: ../../boot.php:1165 -msgid "Remember me" -msgstr "Husk meg" - -#: ../../boot.php:1168 -msgid "Or login using OpenID: " -msgstr "Eller logg inn med OpenID:" - -#: ../../boot.php:1174 -msgid "Forgot your password?" -msgstr "Glemt passordet?" - -#: ../../boot.php:1175 ../../mod/lostpass.php:84 -msgid "Password Reset" -msgstr "Passord tilbakestilling" - -#: ../../boot.php:1177 -msgid "Website Terms of Service" -msgstr "Nettstedets bruksbetingelser" - -#: ../../boot.php:1178 -msgid "terms of service" -msgstr "bruksbetingelser" - -#: ../../boot.php:1180 -msgid "Website Privacy Policy" -msgstr "Nettstedets retningslinjer for personvern" - -#: ../../boot.php:1181 -msgid "privacy policy" -msgstr "retningslinjer for personvern" - -#: ../../boot.php:1314 -msgid "Requested account is not available." -msgstr "Profil utilgjengelig." - -#: ../../boot.php:1353 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Profil utilgjengelig." - -#: ../../boot.php:1393 ../../boot.php:1497 -msgid "Edit profile" -msgstr "Rediger profil" - -#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Forbindelse" - -#: ../../boot.php:1459 -msgid "Message" -msgstr "Melding" - -#: ../../boot.php:1467 ../../include/nav.php:171 -msgid "Profiles" -msgstr "Profiler" - -#: ../../boot.php:1467 -msgid "Manage/edit profiles" -msgstr "Behandle/endre profiler" - -#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../boot.php:1474 ../../mod/profiles.php:731 -msgid "Create New Profile" -msgstr "Lag ny profil" - -#: ../../boot.php:1484 ../../mod/profiles.php:742 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../boot.php:1487 ../../mod/profiles.php:744 -msgid "visible to everybody" -msgstr "synlig for alle" - -#: ../../boot.php:1488 ../../mod/profiles.php:745 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 -msgid "Location:" -msgstr "Plassering:" - -#: ../../boot.php:1515 ../../mod/directory.php:136 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Kjønn:" - -#: ../../boot.php:1518 ../../mod/directory.php:138 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../boot.php:1520 ../../mod/directory.php:140 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../boot.php:1596 ../../boot.php:1682 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1597 ../../boot.php:1683 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1642 ../../boot.php:1723 -msgid "[today]" -msgstr "[idag]" - -#: ../../boot.php:1654 -msgid "Birthday Reminders" -msgstr "Fødselsdager" - -#: ../../boot.php:1655 -msgid "Birthdays this week:" -msgstr "Fødselsdager denne uken:" - -#: ../../boot.php:1716 -msgid "[No description]" -msgstr "[Ingen beskrivelse]" - -#: ../../boot.php:1734 -msgid "Event Reminders" -msgstr "Påminnelser om hendelser" - -#: ../../boot.php:1735 -msgid "Events this week:" -msgstr "Hendelser denne uken:" - -#: ../../boot.php:1972 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:1975 -msgid "Status Messages and Posts" -msgstr "Status meldinger og innlegg" - -#: ../../boot.php:1982 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../boot.php:1989 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../boot.php:1993 ../../boot.php:1996 -msgid "Videos" -msgstr "Videoer" - -#: ../../boot.php:2006 -msgid "Events and Calendar" -msgstr "Hendelser og kalender" - -#: ../../boot.php:2010 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Personlige notater" - -#: ../../boot.php:2013 -msgid "Only You Can See This" -msgstr "Bare du kan se dette" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s er for øyeblikket %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stemning" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Angi din stemning og fortell dine venner" - -#: ../../mod/display.php:19 ../../mod/_search.php:89 -#: ../../mod/directory.php:31 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 -#: ../../mod/videos.php:115 +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 msgid "Public access denied." msgstr "Offentlig tilgang ikke tillatt." -#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:953 ../../mod/admin.php:1153 -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4177 -msgid "Item not found." -msgstr "Enheten ble ikke funnet." - -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Tilgang til denne profilen er blitt begrenset." - -#: ../../mod/display.php:263 -msgid "Item has been removed." -msgstr "Elementet har blitt slettet." - -#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Tilgang avslått." - -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" -msgstr "Dette er Friendica, versjon" - -#: ../../mod/friendica.php:59 -msgid "running at web location" -msgstr "kjører på web-plassering" - -#: ../../mod/friendica.php:61 +#: ../../mod/dfrn_request.php:811 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet." +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:" -#: ../../mod/friendica.php:63 -msgid "Bug reports and issues: please visit" -msgstr "Feilrapporter og problemer: vennligst besøk" +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Koble til som en e-postfølgesvenn (Kommer snart)" -#: ../../mod/friendica.php:64 +#: ../../mod/dfrn_request.php:829 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com" +"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 "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag." -#: ../../mod/friendica.php:78 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte plugins/tillegg/apper:" +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Venne-/Koblings-forespørsel" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte plugins/tillegg/apper" +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Vennligst svar på følgende:" + +#: ../../mod/dfrn_request.php:835 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s hilser %2$s" +msgid "Does %s know you?" +msgstr "Kjenner %s deg?" -#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "Registeringsdetaljer for %s" - -#: ../../mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner." - -#: ../../mod/register.php:104 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes." - -#: ../../mod/register.php:109 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../mod/register.php:149 -#, php-format -msgid "Registration request at %s" -msgstr "Henvendelse om registrering ved %s" - -#: ../../mod/register.php:158 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning fra eier av stedet." - -#: ../../mod/register.php:196 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen." - -#: ../../mod/register.php:224 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"." - -#: ../../mod/register.php:225 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene." - -#: ../../mod/register.php:226 -msgid "Your OpenID (optional): " -msgstr "Din OpenID (valgfritt):" - -#: ../../mod/register.php:240 -msgid "Include your profile in member directory?" -msgstr "Legg til profilen din i medlemskatalogen?" - -#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 -#: ../../mod/settings.php:998 ../../mod/settings.php:1004 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1027 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1069 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1071 ../../mod/settings.php:1072 -#: ../../mod/settings.php:1073 ../../mod/profiles.php:614 -#: ../../mod/message.php:209 ../../include/items.php:4218 +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 msgid "Yes" msgstr "Ja" -#: ../../mod/register.php:244 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:998 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1016 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1027 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1039 ../../mod/settings.php:1069 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1071 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 #: ../../mod/profiles.php:615 msgid "No" msgstr "Nei" -#: ../../mod/register.php:261 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon." +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Legg til en personlig melding:" -#: ../../mod/register.php:262 -msgid "Your invitation ID: " -msgstr "Din invitasjons-ID:" +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/register.php:265 ../../mod/admin.php:573 +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federeated Social Web" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Din identitetsadresse:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Send forespørsel" + +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 +msgid "Cancel" +msgstr "Avbryt" + +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Vis video" + +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Profil utilgjengelig." + +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "Tilgang til denne profilen er blitt begrenset." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tips til nye medlemmer" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Forkast" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Nettverk" + +#: ../../mod/notifications.php:88 ../../mod/network.php:365 +msgid "Personal" +msgstr "Personlig" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" +msgstr "Hjem" + +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Introduksjoner" + +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Meldinger" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Vis ignorerte forespørsler" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Skjul ignorerte forespørsler" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Beskjedtype:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Venneforslag" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "foreslått av %s" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Skjul denne kontakten for andre" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Post om en ny venn" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "hvis gyldig" + +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Godkjenn" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Påstår å kjenne deg:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ja" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "ei" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Godkjenn som:" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Venn" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Deler" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Beundrer" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Venn/kontakt-forespørsel" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Ny følgesvenn" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Ingen introduksjoner." + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Varslinger" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s likte %s sitt innlegg" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislikte %s sitt innlegg" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nå venner med %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s skrev et nytt innlegg" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s kommenterte på %s sitt innlegg" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Ingen flere nettverksvarslinger." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Nettverksvarslinger" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systemvarsler" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Ingen flere personlige varsler." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Personlige varsler" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Ingen flere hjemmevarsler." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Hjemmevarsler" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "bilde" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "status" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s liker %2$s's %3$s" + +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s liker ikke %2$s's %3$s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID kom i retur." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet." + +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Innlogging mislyktes." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "BBcode kildetekst:" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Diaspora kildetekst å konvertere til BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Kilde-input:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (rå HTML):" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb:" + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md:" + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html:" + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb:" + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb:" + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Diaspora-formatert kilde-input:" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb:" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Temainnstillinger oppdatert." + +#: ../../mod/admin.php:102 ../../mod/admin.php:573 +msgid "Site" +msgstr "Nettsted" + +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 +msgid "Users" +msgstr "Brukere" + +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Tillegg" + +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 +msgid "Themes" +msgstr "Tema" + +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 +msgid "Logs" +msgstr "Logger" + +#: ../../mod/admin.php:126 ../../include/nav.php:180 +msgid "Admin" +msgstr "Administrator" + +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "Utvidelse - egenskaper" + +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Brukerregistreringer venter på bekreftelse" + +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 +msgid "Item not found." +msgstr "Enheten ble ikke funnet." + +#: ../../mod/admin.php:188 ../../mod/admin.php:855 +msgid "Normal Account" +msgstr "Vanlig konto" + +#: ../../mod/admin.php:189 ../../mod/admin.php:856 +msgid "Soapbox Account" +msgstr "Talerstol-konto" + +#: ../../mod/admin.php:190 ../../mod/admin.php:857 +msgid "Community/Celebrity Account" +msgstr "Gruppe-/kjendiskonto" + +#: ../../mod/admin.php:191 ../../mod/admin.php:858 +msgid "Automatic Friend Account" +msgstr "Automatisk vennekonto" + +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Bloggkonto" + +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "Privat forum" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "Meldingskøer" + +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 +msgid "Administration" +msgstr "Administrasjon" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "Oppsummering" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "Registrerte brukere" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Ventende registreringer" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "Versjon" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "Aktive tillegg" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "Kan ikke tolke base URL. Må ha minst ://" + +#: ../../mod/admin.php:485 +msgid "Site settings updated." +msgstr "Nettstedets innstillinger er oppdatert." + +#: ../../mod/admin.php:514 ../../mod/settings.php:823 +msgid "No special theme for mobile devices" +msgstr "Ikke eget tema for mobile enheter" + +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 +msgid "Never" +msgstr "Aldri" + +#: ../../mod/admin.php:532 +msgid "At post arrival" +msgstr "Ved mottak av innlegg" + +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Ofte" + +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Hver time" + +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "To ganger daglig" + +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Daglig" + +#: ../../mod/admin.php:541 +msgid "Multi user instance" +msgstr "Flerbrukerinstans" + +#: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Stengt" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Krever godkjenning" + +#: ../../mod/admin.php:561 +msgid "Open" +msgstr "Åpen" + +#: ../../mod/admin.php:565 +msgid "No SSL policy, links will track page SSL state" +msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand" + +#: ../../mod/admin.php:566 +msgid "Force all links to use SSL" +msgstr "Tving alle lenker til å bruke SSL" + +#: ../../mod/admin.php:567 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)" + +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 +msgid "Save Settings" +msgstr "Lagre innstillinger" + +#: ../../mod/admin.php:575 ../../mod/register.php:265 msgid "Registration" msgstr "Registrering" -#: ../../mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Ditt fulle navn (f.eks. Ola Nordmann):" +#: ../../mod/admin.php:576 +msgid "File upload" +msgstr "Last opp fil" -#: ../../mod/register.php:274 -msgid "Your Email Address: " -msgstr "Din e-postadresse:" +#: ../../mod/admin.php:577 +msgid "Policies" +msgstr "Retningslinjer" -#: ../../mod/register.php:275 +#: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Avansert" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Ytelse" + +#: ../../mod/admin.php:580 msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@$sitename\"." +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Omplasser - ADVARSEL: avansert funksjon. Kan gjøre denne tjeneren utilgjengelig." -#: ../../mod/register.php:276 -msgid "Choose a nickname: " -msgstr "Velg et kallenavn:" +#: ../../mod/admin.php:583 +msgid "Site name" +msgstr "Nettstedets navn" -#: ../../mod/register.php:285 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importer" +#: ../../mod/admin.php:584 +msgid "Banner/Logo" +msgstr "Banner/logo" -#: ../../mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "Importer din profil til denne Friendica-instansen." +#: ../../mod/admin.php:585 +msgid "Additional Info" +msgstr "Ekstra informasjon" + +#: ../../mod/admin.php:585 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "For offentlige tjenere: du kan legge til ekstra informasjon her som vil bli vist på dir.friendica.com/siteinfo." + +#: ../../mod/admin.php:586 +msgid "System language" +msgstr "Systemspråk" + +#: ../../mod/admin.php:587 +msgid "System theme" +msgstr "Systemtema" + +#: ../../mod/admin.php:587 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - endre temainnstillinger" + +#: ../../mod/admin.php:588 +msgid "Mobile system theme" +msgstr "Mobilt tema til systemet" + +#: ../../mod/admin.php:588 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" + +#: ../../mod/admin.php:589 +msgid "SSL link policy" +msgstr "Retningslinjer for SSL og lenker" + +#: ../../mod/admin.php:589 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL" + +#: ../../mod/admin.php:590 +msgid "Old style 'Share'" +msgstr "\"Deling\" på gamlemåten" + +#: ../../mod/admin.php:590 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Skrur av bbcode \"dele\" for gjentatte elementer." + +#: ../../mod/admin.php:591 +msgid "Hide help entry from navigation menu" +msgstr "Skjul punktet om hjelp fra navigasjonsmenyen" + +#: ../../mod/admin.php:591 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte." + +#: ../../mod/admin.php:592 +msgid "Single user instance" +msgstr "Enkeltbrukerinstans" + +#: ../../mod/admin.php:592 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren" + +#: ../../mod/admin.php:593 +msgid "Maximum image size" +msgstr "Maksimum bildestørrelse" + +#: ../../mod/admin.php:593 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense." + +#: ../../mod/admin.php:594 +msgid "Maximum image length" +msgstr "Maksimal bildelenge" + +#: ../../mod/admin.php:594 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense." + +#: ../../mod/admin.php:595 +msgid "JPEG image quality" +msgstr "JPEG-bildekvalitet" + +#: ../../mod/admin.php:595 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet." + +#: ../../mod/admin.php:597 +msgid "Register policy" +msgstr "Registrer retningslinjer" + +#: ../../mod/admin.php:598 +msgid "Maximum Daily Registrations" +msgstr "Maksimalt antall daglige registreringer" + +#: ../../mod/admin.php:598 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt." + +#: ../../mod/admin.php:599 +msgid "Register text" +msgstr "Registrer tekst" + +#: ../../mod/admin.php:599 +msgid "Will be displayed prominently on the registration page." +msgstr "Vil bli vist på en fremtredende måte på registreringssiden." + +#: ../../mod/admin.php:600 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" + +#: ../../mod/admin.php:600 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense." + +#: ../../mod/admin.php:601 +msgid "Allowed friend domains" +msgstr "Tillate vennedomener" + +#: ../../mod/admin.php:601 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener." + +#: ../../mod/admin.php:602 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../mod/admin.php:602 +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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener." + +#: ../../mod/admin.php:603 +msgid "Block public" +msgstr "Utesteng publikum" + +#: ../../mod/admin.php:603 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn." + +#: ../../mod/admin.php:604 +msgid "Force publish" +msgstr "Tving publisering" + +#: ../../mod/admin.php:604 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen." + +#: ../../mod/admin.php:605 +msgid "Global directory update URL" +msgstr "URL for oppdatering av Global-katalog" + +#: ../../mod/admin.php:605 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet." + +#: ../../mod/admin.php:606 +msgid "Allow threaded items" +msgstr "Tillat en tråd av elementer " + +#: ../../mod/admin.php:606 +msgid "Allow infinite level threading for items on this site." +msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet." + +#: ../../mod/admin.php:607 +msgid "Private posts by default for new users" +msgstr "Private meldinger som standard for nye brukere" + +#: ../../mod/admin.php:607 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig." + +#: ../../mod/admin.php:608 +msgid "Don't include post content in email notifications" +msgstr "Ikke inkluder innholdet i en melding i epostvarsler" + +#: ../../mod/admin.php:608 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak." + +#: ../../mod/admin.php:609 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen." + +#: ../../mod/admin.php:609 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer." + +#: ../../mod/admin.php:610 +msgid "Don't embed private images in posts" +msgstr "Ikke innebygg private bilder i innlegg" + +#: ../../mod/admin.php:610 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund." + +#: ../../mod/admin.php:611 +msgid "Allow Users to set remote_self" +msgstr "Tillat brukere å sette remote_self" + +#: ../../mod/admin.php:611 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ved å sette hake her får hver bruker lov å markere hver kontakt som en remote_self i dialogen for kontaktreparasjon. Å sette denne haken på en kontakt medfører speiling av hvert innlegg fra denne kontakten i brukerens strøm. " + +#: ../../mod/admin.php:612 +msgid "Block multiple registrations" +msgstr "Blokker flere registreringer" + +#: ../../mod/admin.php:612 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider." + +#: ../../mod/admin.php:613 +msgid "OpenID support" +msgstr "OpenID-støtte" + +#: ../../mod/admin.php:613 +msgid "OpenID support for registration and logins." +msgstr "OpenID-støtte for registrering og innlogging." + +#: ../../mod/admin.php:614 +msgid "Fullname check" +msgstr "Sjekk fullt navn" + +#: ../../mod/admin.php:614 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)." + +#: ../../mod/admin.php:615 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 regulære uttrykk" + +#: ../../mod/admin.php:615 +msgid "Use PHP UTF8 regular expressions" +msgstr "Bruk PHP UTF8 regulære uttrykk" + +#: ../../mod/admin.php:616 +msgid "Show Community Page" +msgstr "Vis Felleskap-side" + +#: ../../mod/admin.php:616 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet." + +#: ../../mod/admin.php:617 +msgid "Enable OStatus support" +msgstr "Aktiver Ostatus-støtte" + +#: ../../mod/admin.php:617 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til." + +#: ../../mod/admin.php:618 +msgid "OStatus conversation completion interval" +msgstr "OStatus intervall for samtalefullførelse" + +#: ../../mod/admin.php:618 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave." + +#: ../../mod/admin.php:619 +msgid "Enable Diaspora support" +msgstr "Aktiver Diaspora-støtte" + +#: ../../mod/admin.php:619 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket." + +#: ../../mod/admin.php:620 +msgid "Only allow Friendica contacts" +msgstr "Bare tillat Friendica-kontakter" + +#: ../../mod/admin.php:620 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert." + +#: ../../mod/admin.php:621 +msgid "Verify SSL" +msgstr "Bekreft SSL" + +#: ../../mod/admin.php:621 +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 "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater." + +#: ../../mod/admin.php:622 +msgid "Proxy user" +msgstr "Brukernavn til mellomtjener" + +#: ../../mod/admin.php:623 +msgid "Proxy URL" +msgstr "Mellomtjener URL" + +#: ../../mod/admin.php:624 +msgid "Network timeout" +msgstr "Tidsavbrudd for nettverk" + +#: ../../mod/admin.php:624 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)." + +#: ../../mod/admin.php:625 +msgid "Delivery interval" +msgstr "Leveringsintervall" + +#: ../../mod/admin.php:625 +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 "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere." + +#: ../../mod/admin.php:626 +msgid "Poll interval" +msgstr "Spørreintervall" + +#: ../../mod/admin.php:626 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall." + +#: ../../mod/admin.php:627 +msgid "Maximum Load Average" +msgstr "Maksimal snittlast" + +#: ../../mod/admin.php:627 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50." + +#: ../../mod/admin.php:629 +msgid "Use MySQL full text engine" +msgstr "Bruk MySQL fulltekstmotor" + +#: ../../mod/admin.php:629 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn." + +#: ../../mod/admin.php:630 +msgid "Suppress Language" +msgstr "Ikke vis språk" + +#: ../../mod/admin.php:630 +msgid "Suppress language information in meta information about a posting." +msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg." + +#: ../../mod/admin.php:631 +msgid "Path to item cache" +msgstr "Sti til mellomlager for elementer" + +#: ../../mod/admin.php:632 +msgid "Cache duration in seconds" +msgstr "Mellomlagringens varighet i sekunder" + +#: ../../mod/admin.php:632 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)." + +#: ../../mod/admin.php:633 +msgid "Path for lock file" +msgstr "Sti til fillås" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Temp-sti" + +#: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Sti til installasjonsbasen" + +#: ../../mod/admin.php:637 +msgid "New base url" +msgstr "Ny base URL" + +#: ../../mod/admin.php:655 +msgid "Update has been marked successful" +msgstr "Oppdatering har blitt markert som vellykket" + +#: ../../mod/admin.php:665 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s mislyktes. Sjekk systemlogger." + +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble iverksatt på en vellykket måte." + +#: ../../mod/admin.php:672 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket." + +#: ../../mod/admin.php:675 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdateringsfunksjon %s ble ikke funnet." + +#: ../../mod/admin.php:690 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." + +#: ../../mod/admin.php:694 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" + +#: ../../mod/admin.php:695 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status." + +#: ../../mod/admin.php:696 +msgid "Mark success (if update was manually applied)" +msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)" + +#: ../../mod/admin.php:697 +msgid "Attempt to execute this update step automatically" +msgstr "Forsøk å utføre dette oppdateringspunktet automatisk" + +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Registeringsdetaljer for %s" + +#: ../../mod/admin.php:743 +msgid "Registration successful. Email send to user" +msgstr "Vellykket registrering. E-post er sendt til bruker" + +#: ../../mod/admin.php:753 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s bruker blokkert/ikke blokkert" +msgstr[1] "%s brukere blokkert/ikke blokkert" + +#: ../../mod/admin.php:760 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s bruker slettet" +msgstr[1] "%s brukere slettet" + +#: ../../mod/admin.php:799 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' unblocked" +msgstr "Brukeren '%s' er ikke blokkert" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' blocked" +msgstr "Brukeren '%s' er blokkert" + +#: ../../mod/admin.php:902 +msgid "Add User" +msgstr "Legg til bruker" + +#: ../../mod/admin.php:903 +msgid "select all" +msgstr "velg alle" + +#: ../../mod/admin.php:904 +msgid "User registrations waiting for confirm" +msgstr "Brukerregistreringer venter på bekreftelse" + +#: ../../mod/admin.php:905 +msgid "User waiting for permanent deletion" +msgstr "Bruker venter på permanent sletting" + +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Forespørselsdato" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 +msgid "Name" +msgstr "Navn" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-post" + +#: ../../mod/admin.php:907 +msgid "No registrations." +msgstr "Ingen registreringer." + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Nekt" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "Blokker" + +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "Ikke blokker" + +#: ../../mod/admin.php:913 +msgid "Site admin" +msgstr "Nettstedets administrator" + +#: ../../mod/admin.php:914 +msgid "Account expired" +msgstr "Konto utgått" + +#: ../../mod/admin.php:917 +msgid "New User" +msgstr "Ny bruker" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Register date" +msgstr "Registreringsdato" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last login" +msgstr "Siste innlogging" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last item" +msgstr "Siste element" + +#: ../../mod/admin.php:918 +msgid "Deleted since" +msgstr "Slettet siden" + +#: ../../mod/admin.php:919 ../../mod/settings.php:36 +msgid "Account" +msgstr "Konto" + +#: ../../mod/admin.php:921 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?" + +#: ../../mod/admin.php:922 +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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?" + +#: ../../mod/admin.php:932 +msgid "Name of the new user." +msgstr "Navnet til den nye brukeren." + +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "Kallenavn" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "Kallenavnet til den nye brukeren." + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "E-postadressen til den nye brukeren." + +#: ../../mod/admin.php:967 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tillegget %s er avskrudd." + +#: ../../mod/admin.php:971 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tillegget %s er aktivert." + +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 +msgid "Disable" +msgstr "Skru av" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 +msgid "Enable" +msgstr "Aktiver" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 +msgid "Toggle" +msgstr "Veksle" + +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Innstillinger" + +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 +msgid "Author: " +msgstr "Forfatter:" + +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 +msgid "Maintainer: " +msgstr "Vedlikeholder:" + +#: ../../mod/admin.php:1155 +msgid "No themes found." +msgstr "Ingen temaer funnet." + +#: ../../mod/admin.php:1217 +msgid "Screenshot" +msgstr "Skjermbilde" + +#: ../../mod/admin.php:1263 +msgid "[Experimental]" +msgstr "[Eksperimentell]" + +#: ../../mod/admin.php:1264 +msgid "[Unsupported]" +msgstr "[Ikke støttet]" + +#: ../../mod/admin.php:1291 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." + +#: ../../mod/admin.php:1347 +msgid "Clear" +msgstr "Tøm" + +#: ../../mod/admin.php:1353 +msgid "Enable Debugging" +msgstr "Aktiver feilsøking" + +#: ../../mod/admin.php:1354 +msgid "Log file" +msgstr "Loggfil" + +#: ../../mod/admin.php:1354 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas." + +#: ../../mod/admin.php:1355 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "Oppdater nå" + +#: ../../mod/admin.php:1405 +msgid "Close" +msgstr "Lukk" + +#: ../../mod/admin.php:1411 +msgid "FTP Host" +msgstr "FTP-tjener" + +#: ../../mod/admin.php:1412 +msgid "FTP Path" +msgstr "FTP-sti" + +#: ../../mod/admin.php:1413 +msgid "FTP User" +msgstr "FTP-bruker" + +#: ../../mod/admin.php:1414 +msgid "FTP Password" +msgstr "FTP-passord" + +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Ny melding" + +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Ingen mottaker valgt." + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Mislyktes med å finne kontaktinformasjon." + +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Meldingen kunne ikke sendes." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Meldingsinnsamling mislyktes." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Melding sendt." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Ønsker du virkelig å slette denne meldingen?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Melding slettet." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Samtale slettet." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Send privat melding" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Til:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Emne:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Din melding:" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Last opp bilde" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Sett inn web-adresse" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Ukjent avsender - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du og %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s og du" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d melding" +msgstr[1] "%d meldinger" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Melding utilgjengelig." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Slett melding" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Send svar" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Fant ikke elementet" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Endre innlegg" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 +msgid "upload photo" +msgstr "last opp bilde" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 +msgid "Attach file" +msgstr "Legg ved fil" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 +msgid "attach file" +msgstr "legg ved fil" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 +msgid "web link" +msgstr "web-adresse" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 +msgid "Insert video link" +msgstr "Sett inn video-link" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 +msgid "video link" +msgstr "videolink" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 +msgid "Insert audio link" +msgstr "Sett inn lydlink" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 +msgid "audio link" +msgstr "lydlink" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 +msgid "Set your location" +msgstr "Angi din plassering" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 +msgid "set location" +msgstr "angi plassering" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 +msgid "Clear browser location" +msgstr "Fjern nettleserplassering" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 +msgid "clear location" +msgstr "fjern plassering" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 +msgid "Permission settings" +msgstr "Tillatelser" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 +msgid "CC: email addresses" +msgstr "Kopi: e-postadresser" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 +msgid "Public post" +msgstr "Offentlig innlegg" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 +msgid "Set title" +msgstr "Lagre tittel" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Eksempel: ola@example.com, kari@example.com" #: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 #: ../../mod/profiles.php:133 ../../mod/profiles.php:160 @@ -1017,11 +1958,6 @@ msgstr "Importer din profil til denne Friendica-instansen." msgid "Profile not found." msgstr "Fant ikke profilen." -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt ikke funnet." - #: ../../mod/dfrn_confirm.php:119 msgid "" "This may occasionally happen if contact was requested by both persons and it" @@ -1057,8 +1993,8 @@ msgstr "Introduksjon mislyktes eller ble trukket tilbake." msgid "Unable to set contact photo." msgstr "Fikk ikke satt kontaktbilde." -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s er nå venner med %2$s" @@ -1109,6 +2045,213 @@ msgstr "Tilkobling godtatt på %s" msgid "%1$s has joined %2$s" msgstr "%1$s har blitt med %2$s" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Hendelsens tittel og starttidspunkt er påkrevet." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Rediger hendelse" + +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "lenke til kilde" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Hendelser" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Lag ny hendelse" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Forrige" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Neste" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "time:minutt" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Hendelsesdetaljer" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formatet er %s %s. Startdato og tittel er påkrevet." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Hendelsen starter:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Påkrevet" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Hendelsen slutter:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Tilpass til iakttakerens tidssone" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beskrivelse:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Plassering:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Tittel:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Filer" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Synlig for:" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Ingen mottaker." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besøk %ss profil [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Endre kontakt" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakter som ikke er medlemmer av en gruppe" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Dette er Friendica, versjon" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "kjører på web-plassering" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Feilrapporter og problemer: vennligst besøk" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte plugins/tillegg/apper:" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte plugins/tillegg/apper" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Slett min konto" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Vennligst skriv inn ditt passord for å bekrefte:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Ikke i stand til å behandle bildet." + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Veggbilder" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Mislyktes med å laste opp bilde." + #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" msgstr "Tillat forbindelse til program" @@ -1127,6 +2270,316 @@ msgid "" " and/or create new posts for you?" msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?" +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %2$s sitt %3$s med %4$s" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "alle" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontaktinformasjon utilgjengelig" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album ble ikke funnet." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Ønsker du virkelig å slette dette bildet?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s ble merket i %2$s av %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "et bilde" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "Bilde overstiger størrelsesbegrensningen på " + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Bildefilen er tom." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Ingen bilder er valgt" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nytt albumnavn:" + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "eller eksisterende albumnavn:" + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Ikke vis statusoppdatering for denne opplastingen" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Tillatelser" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Vis til grupper" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Vis til kontakter" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Privat bilde" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Offentlig bilde" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Vis nyeste først" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Vis eldste først" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Vis bilde" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "Bilde ikke tilgjengelig" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Vis foto" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Tagger:" + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Fjern en tag]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (høyre)" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Nytt albumnavn" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Overskrift" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Legg til tag" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Privat bilde" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Offentlig bilde" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Del" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Vis album" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Ingen profil" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner." + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Din registrering kan ikke behandles." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Henvendelse om registrering ved %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering venter på godkjenning fra eier av stedet." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen." + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Din OpenID (valgfritt):" + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Legg til profilen din i medlemskatalogen?" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "Din invitasjons-ID:" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Ditt fulle navn (f.eks. Ola Nordmann):" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Din e-postadresse:" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@$sitename\"." + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "Velg et kallenavn:" + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrer" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importer" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Importer din profil til denne Friendica-instansen." + #: ../../mod/lostpass.php:17 msgid "No valid account found." msgstr "Fant ingen gyldig konto." @@ -1146,6 +2599,10 @@ msgid "" "Password reset failed." msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes." +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Passord tilbakestilling" + #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." msgstr "Ditt passord er tilbakestilt som forespurt." @@ -1191,79 +2648,424 @@ msgstr "Kallenavn eller e-post:" msgid "Reset" msgstr "Tilbakestill" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systemet er nede for vedlikehold" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elementet er ikke tilgjengelig." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Programmer" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Ingen installerte programmer." + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Hjelp:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Hjelp" + +#: ../../mod/contacts.php:104 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes." +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d kontakt redigert." +msgstr[1] "%d kontakter redigert" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Ingen mottaker valgt." +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktposten." -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted." +#: ../../mod/contacts.php:149 +msgid "Could not locate selected profile." +msgstr "Kunne ikke lokalisere valgt profil." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Meldingen kunne ikke sendes." +#: ../../mod/contacts.php:178 +msgid "Contact updated." +msgstr "Kontakt oppdatert." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Meldingsinnsamling mislyktes." +#: ../../mod/contacts.php:278 +msgid "Contact has been blocked" +msgstr "Kontakten er blokkert" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Melding sendt." +#: ../../mod/contacts.php:278 +msgid "Contact has been unblocked" +msgstr "Kontakten er ikke blokkert lenger" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Ingen mottaker." +#: ../../mod/contacts.php:288 +msgid "Contact has been ignored" +msgstr "Kontakten er ignorert" -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" +#: ../../mod/contacts.php:288 +msgid "Contact has been unignored" +msgstr "Kontakten er ikke ignorert lenger" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Send privat melding" +#: ../../mod/contacts.php:299 +msgid "Contact has been archived" +msgstr "Kontakt har blitt arkivert" -#: ../../mod/wallmessage.php:143 +#: ../../mod/contacts.php:299 +msgid "Contact has been unarchived" +msgstr "Kontakt har blitt hentet tilbake fra arkivet" + +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 +msgid "Do you really want to delete this contact?" +msgstr "Ønsker du virkelig å slette denne kontakten?" + +#: ../../mod/contacts.php:341 +msgid "Contact has been removed." +msgstr "Kontakten er fjernet." + +#: ../../mod/contacts.php:379 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du er gjensidig venn med %s" + +#: ../../mod/contacts.php:383 +#, php-format +msgid "You are sharing with %s" +msgstr "Du deler med %s" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deler med deg" + +#: ../../mod/contacts.php:405 +msgid "Private communications are not available for this contact." +msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten." + +#: ../../mod/contacts.php:412 +msgid "(Update was successful)" +msgstr "(Oppdatering vellykket)" + +#: ../../mod/contacts.php:412 +msgid "(Update was not successful)" +msgstr "(Oppdatering mislykket)" + +#: ../../mod/contacts.php:414 +msgid "Suggest friends" +msgstr "Foreslå venner" + +#: ../../mod/contacts.php:418 +#, php-format +msgid "Network type: %s" +msgstr "Nettverkstype: %s" + +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d felles kontakt" +msgstr[1] "%d felles kontakter" + +#: ../../mod/contacts.php:426 +msgid "View all contacts" +msgstr "Vis alle kontakter" + +#: ../../mod/contacts.php:434 +msgid "Toggle Blocked status" +msgstr "Veksle blokkeringsstatus" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 +msgid "Unignore" +msgstr "Fjern ignorering" + +#: ../../mod/contacts.php:440 +msgid "Toggle Ignored status" +msgstr "Veksle ingnorertstatus" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Unarchive" +msgstr "Hent ut av arkivet" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Archive" +msgstr "Arkiver" + +#: ../../mod/contacts.php:447 +msgid "Toggle Archive status" +msgstr "Veksle arkivertstatus" + +#: ../../mod/contacts.php:450 +msgid "Repair" +msgstr "Reparer" + +#: ../../mod/contacts.php:453 +msgid "Advanced Contact Settings" +msgstr "Avanserte kontaktinnstillinger" + +#: ../../mod/contacts.php:459 +msgid "Communications lost with this contact!" +msgstr "Kommunikasjon tapt med denne kontakten!" + +#: ../../mod/contacts.php:462 +msgid "Contact Editor" +msgstr "Endre kontakt" + +#: ../../mod/contacts.php:465 +msgid "Profile Visibility" +msgstr "Profilens synlighet" + +#: ../../mod/contacts.php:466 #, 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 "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Til:" +#: ../../mod/contacts.php:467 +msgid "Contact Information / Notes" +msgstr "Kontaktinformasjon/-notater" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Emne:" +#: ../../mod/contacts.php:468 +msgid "Edit contact notes" +msgstr "Endre kontaktnotater" -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Din melding:" +#: ../../mod/contacts.php:474 +msgid "Block/Unblock contact" +msgstr "Blokker kontakt/fjern blokkering for kontakt" -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../include/conversation.php:1084 -msgid "Upload photo" -msgstr "Last opp bilde" +#: ../../mod/contacts.php:475 +msgid "Ignore contact" +msgstr "Ignorer kontakt" -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../include/conversation.php:1088 -msgid "Insert web link" -msgstr "Sett inn web-adresse" +#: ../../mod/contacts.php:476 +msgid "Repair URL settings" +msgstr "Reparer URL-innstillinger" + +#: ../../mod/contacts.php:477 +msgid "View conversations" +msgstr "Vis samtaler" + +#: ../../mod/contacts.php:479 +msgid "Delete contact" +msgstr "Slett kontakt" + +#: ../../mod/contacts.php:483 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: ../../mod/contacts.php:485 +msgid "Update public posts" +msgstr "Oppdater offentlige innlegg" + +#: ../../mod/contacts.php:494 +msgid "Currently blocked" +msgstr "Blokkert nå" + +#: ../../mod/contacts.php:495 +msgid "Currently ignored" +msgstr "Ignorert nå" + +#: ../../mod/contacts.php:496 +msgid "Currently archived" +msgstr "For øyeblikket arkivert" + +#: ../../mod/contacts.php:497 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Svar/liker til dine offentlige innlegg kan fortsatt være synlige" + +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Varsling om nye innlegg" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Send et varsel ved hvert nytt innlegg fra denne kontakten" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Hent ytterligere informasjon til strømmer" + +#: ../../mod/contacts.php:550 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../mod/contacts.php:553 +msgid "Suggest potential friends" +msgstr "Foreslå mulige venner" + +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Alle kontakter" + +#: ../../mod/contacts.php:559 +msgid "Show all contacts" +msgstr "Vis alle kontakter" + +#: ../../mod/contacts.php:562 +msgid "Unblocked" +msgstr "Ikke blokkert" + +#: ../../mod/contacts.php:565 +msgid "Only show unblocked contacts" +msgstr "Bare vis ikke blokkerte kontakter" + +#: ../../mod/contacts.php:569 +msgid "Blocked" +msgstr "Blokkert" + +#: ../../mod/contacts.php:572 +msgid "Only show blocked contacts" +msgstr "Bare vis blokkerte kontakter" + +#: ../../mod/contacts.php:576 +msgid "Ignored" +msgstr "Ignorert" + +#: ../../mod/contacts.php:579 +msgid "Only show ignored contacts" +msgstr "Bare vis ignorerte kontakter" + +#: ../../mod/contacts.php:583 +msgid "Archived" +msgstr "Arkivert" + +#: ../../mod/contacts.php:586 +msgid "Only show archived contacts" +msgstr "Bare vis arkiverte kontakter" + +#: ../../mod/contacts.php:590 +msgid "Hidden" +msgstr "Skjult" + +#: ../../mod/contacts.php:593 +msgid "Only show hidden contacts" +msgstr "Bare vis skjulte kontakter" + +#: ../../mod/contacts.php:641 +msgid "Mutual Friendship" +msgstr "Gjensidig vennskap" + +#: ../../mod/contacts.php:645 +msgid "is a fan of yours" +msgstr "er en tilhenger av deg" + +#: ../../mod/contacts.php:649 +msgid "you are a fan of" +msgstr "du er en tilhenger av" + +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Kontakter" + +#: ../../mod/contacts.php:692 +msgid "Search your contacts" +msgstr "Søk i dine kontakter" + +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Fant:" + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Finn" + +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 +msgid "Update" +msgstr "Oppdater" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Ingen videoer er valgt" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Nye videoer" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Last opp nye videoer" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Felles venner" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Ingen kontakter felles." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt lagt til " + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Flytt konto" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kan importere en konto fra en annen Friendica-tjener." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Kontofil" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Venner av %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Ingen venner å vise." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Fjernet tag" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Fjern tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Velg en tag å fjerne:" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Slett" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" @@ -1315,6 +3117,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg." +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Profil" + #: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Last opp profilbilde" @@ -1455,2741 +3264,724 @@ msgid "" " features and resources." msgstr "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet." -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vil du virkelig slette dette forslaget?" - -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 -#: ../../mod/settings.php:609 ../../mod/settings.php:635 -#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1122 -#: ../../include/items.php:4221 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." - -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorér/Skjul" - -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Søkeresultater for:" - -#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 +#: ../../mod/search.php:21 ../../mod/network.php:179 msgid "Remove term" msgstr "Fjern uttrykk" -#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../mod/search.php:30 ../../mod/network.php:188 #: ../../include/features.php:42 msgid "Saved Searches" msgstr "Lagrede søk" -#: ../../mod/network.php:189 ../../include/group.php:275 -msgid "add" -msgstr "legg til" - -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Etter kommentarer" - -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentardato" - -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Etter innlegg" - -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" - -#: ../../mod/network.php:365 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Personlig" - -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" - -#: ../../mod/network.php:374 -msgid "New" -msgstr "Ny" - -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" - -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Delte lenker" - -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Interessante lenker" - -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Med stjerne" - -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" - -#: ../../mod/network.php:457 -#, 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] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk." -msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk." - -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort." - -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppen er tom" - -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppe:" - -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Kontakt:" - -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private meldinger til denne personen risikerer å bli offentliggjort." - -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Ugyldig kontakt." - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica kommunikasjonstjeneste - oppsett" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Kunne ikke koble til database." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Kunne ikke lage tabell." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Databasen til Friendica-nettstedet ditt har blitt installert." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:521 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Vennligst se filen \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Systemsjekk" - -#: ../../mod/install.php:207 ../../mod/events.php:373 -msgid "Next" -msgstr "Neste" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Sjekk på nytt" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Databaseforbindelse" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Databasetjenerens navn" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Database brukernavn" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Database passord" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Databasenavn" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Nettstedsadministrator sin e-postadresse" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Innstillinger for nettstedet" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "PHP kjørefil sin sti" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Kommandolinje PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Fant PHP-versjon:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binærfil" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Dette er nødvendig for at meldingslevering skal virke." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Lag krypteringsnøkler" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP modul" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP modul" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP modul" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php er skrivbar" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere." - -#: ../../mod/install.php:455 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe." - -#: ../../mod/install.php:456 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen." - -#: ../../mod/install.php:457 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 er skrivbar" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten." - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL omskriving virker" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener." - -#: ../../mod/install.php:508 -msgid "Errors encountered creating database tables." -msgstr "Feil oppstod under opprettelsen av databasetabeller." - -#: ../../mod/install.php:519 -msgid "

What next

" -msgstr "

Hva nå

" - -#: ../../mod/install.php:520 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering." - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Temainnstillinger oppdatert." - -#: ../../mod/admin.php:101 ../../mod/admin.php:571 -msgid "Site" -msgstr "Nettsted" - -#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914 -msgid "Users" -msgstr "Brukere" - -#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045 -#: ../../mod/settings.php:56 -msgid "Plugins" -msgstr "Tillegg" - -#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245 -msgid "Themes" -msgstr "Tema" - -#: ../../mod/admin.php:105 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332 -msgid "Logs" -msgstr "Logger" - -#: ../../mod/admin.php:125 ../../include/nav.php:180 -msgid "Admin" -msgstr "Administrator" - -#: ../../mod/admin.php:126 -msgid "Plugin Features" -msgstr "Utvidelse - egenskaper" - -#: ../../mod/admin.php:128 -msgid "User registrations waiting for confirmation" -msgstr "Brukerregistreringer venter på bekreftelse" - -#: ../../mod/admin.php:187 ../../mod/admin.php:853 -msgid "Normal Account" -msgstr "Vanlig konto" - -#: ../../mod/admin.php:188 ../../mod/admin.php:854 -msgid "Soapbox Account" -msgstr "Talerstol-konto" - -#: ../../mod/admin.php:189 ../../mod/admin.php:855 -msgid "Community/Celebrity Account" -msgstr "Gruppe-/kjendiskonto" - -#: ../../mod/admin.php:190 ../../mod/admin.php:856 -msgid "Automatic Friend Account" -msgstr "Automatisk vennekonto" - -#: ../../mod/admin.php:191 -msgid "Blog Account" -msgstr "Bloggkonto" - -#: ../../mod/admin.php:192 -msgid "Private Forum" -msgstr "Privat forum" - -#: ../../mod/admin.php:211 -msgid "Message queues" -msgstr "Meldingskøer" - -#: ../../mod/admin.php:216 ../../mod/admin.php:570 ../../mod/admin.php:898 -#: ../../mod/admin.php:1002 ../../mod/admin.php:1044 ../../mod/admin.php:1210 -#: ../../mod/admin.php:1244 ../../mod/admin.php:1331 -msgid "Administration" -msgstr "Administrasjon" - -#: ../../mod/admin.php:217 -msgid "Summary" -msgstr "Oppsummering" - -#: ../../mod/admin.php:219 -msgid "Registered users" -msgstr "Registrerte brukere" - -#: ../../mod/admin.php:221 -msgid "Pending registrations" -msgstr "Ventende registreringer" - -#: ../../mod/admin.php:222 -msgid "Version" -msgstr "Versjon" - -#: ../../mod/admin.php:224 -msgid "Active plugins" -msgstr "Aktive tillegg" - -#: ../../mod/admin.php:247 -msgid "Can not parse base url. Must have at least ://" -msgstr "Kan ikke tolke base URL. Må ha minst ://" - -#: ../../mod/admin.php:483 -msgid "Site settings updated." -msgstr "Nettstedets innstillinger er oppdatert." - -#: ../../mod/admin.php:512 ../../mod/settings.php:822 -msgid "No special theme for mobile devices" -msgstr "Ikke eget tema for mobile enheter" - -#: ../../mod/admin.php:529 ../../mod/contacts.php:408 -msgid "Never" -msgstr "Aldri" - -#: ../../mod/admin.php:530 -msgid "At post arrival" -msgstr "Ved mottak av innlegg" - -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofte" - -#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Hver time" - -#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "To ganger daglig" - -#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Daglig" - -#: ../../mod/admin.php:539 -msgid "Multi user instance" -msgstr "Flerbrukerinstans" - -#: ../../mod/admin.php:557 -msgid "Closed" -msgstr "Stengt" - -#: ../../mod/admin.php:558 -msgid "Requires approval" -msgstr "Krever godkjenning" - -#: ../../mod/admin.php:559 -msgid "Open" -msgstr "Åpen" - -#: ../../mod/admin.php:563 -msgid "No SSL policy, links will track page SSL state" -msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand" - -#: ../../mod/admin.php:564 -msgid "Force all links to use SSL" -msgstr "Tving alle lenker til å bruke SSL" - -#: ../../mod/admin.php:565 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)" - -#: ../../mod/admin.php:572 ../../mod/admin.php:1046 ../../mod/admin.php:1246 -#: ../../mod/admin.php:1333 ../../mod/settings.php:608 -#: ../../mod/settings.php:718 ../../mod/settings.php:792 -#: ../../mod/settings.php:871 ../../mod/settings.php:1101 -msgid "Save Settings" -msgstr "Lagre innstillinger" - -#: ../../mod/admin.php:574 -msgid "File upload" -msgstr "Last opp fil" - -#: ../../mod/admin.php:575 -msgid "Policies" -msgstr "Retningslinjer" - -#: ../../mod/admin.php:576 -msgid "Advanced" -msgstr "Avansert" - -#: ../../mod/admin.php:577 -msgid "Performance" -msgstr "Ytelse" - -#: ../../mod/admin.php:578 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Omplasser - ADVARSEL: avansert funksjon. Kan gjøre denne tjeneren utilgjengelig." - -#: ../../mod/admin.php:581 -msgid "Site name" -msgstr "Nettstedets navn" - -#: ../../mod/admin.php:582 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: ../../mod/admin.php:583 -msgid "Additional Info" -msgstr "Ekstra informasjon" - -#: ../../mod/admin.php:583 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "For offentlige tjenere: du kan legge til ekstra informasjon her som vil bli vist på dir.friendica.com/siteinfo." - -#: ../../mod/admin.php:584 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:585 -msgid "System theme" -msgstr "Systemtema" - -#: ../../mod/admin.php:585 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - endre temainnstillinger" - -#: ../../mod/admin.php:586 -msgid "Mobile system theme" -msgstr "Mobilt tema til systemet" - -#: ../../mod/admin.php:586 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" - -#: ../../mod/admin.php:587 -msgid "SSL link policy" -msgstr "Retningslinjer for SSL og lenker" - -#: ../../mod/admin.php:587 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL" - -#: ../../mod/admin.php:588 -msgid "Old style 'Share'" -msgstr "\"Deling\" på gamlemåten" - -#: ../../mod/admin.php:588 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Skrur av bbcode \"dele\" for gjentatte elementer." - -#: ../../mod/admin.php:589 -msgid "Hide help entry from navigation menu" -msgstr "Skjul punktet om hjelp fra navigasjonsmenyen" - -#: ../../mod/admin.php:589 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte." - -#: ../../mod/admin.php:590 -msgid "Single user instance" -msgstr "Enkeltbrukerinstans" - -#: ../../mod/admin.php:590 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren" - -#: ../../mod/admin.php:591 -msgid "Maximum image size" -msgstr "Maksimum bildestørrelse" - -#: ../../mod/admin.php:591 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense." - -#: ../../mod/admin.php:592 -msgid "Maximum image length" -msgstr "Maksimal bildelenge" - -#: ../../mod/admin.php:592 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense." - -#: ../../mod/admin.php:593 -msgid "JPEG image quality" -msgstr "JPEG-bildekvalitet" - -#: ../../mod/admin.php:593 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet." - -#: ../../mod/admin.php:595 -msgid "Register policy" -msgstr "Registrer retningslinjer" - -#: ../../mod/admin.php:596 -msgid "Maximum Daily Registrations" -msgstr "Maksimalt antall daglige registreringer" - -#: ../../mod/admin.php:596 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt." - -#: ../../mod/admin.php:597 -msgid "Register text" -msgstr "Registrer tekst" - -#: ../../mod/admin.php:597 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." - -#: ../../mod/admin.php:598 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" - -#: ../../mod/admin.php:598 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense." - -#: ../../mod/admin.php:599 -msgid "Allowed friend domains" -msgstr "Tillate vennedomener" - -#: ../../mod/admin.php:599 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener." - -#: ../../mod/admin.php:600 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" - -#: ../../mod/admin.php:600 -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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener." - -#: ../../mod/admin.php:601 -msgid "Block public" -msgstr "Utesteng publikum" - -#: ../../mod/admin.php:601 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn." - -#: ../../mod/admin.php:602 -msgid "Force publish" -msgstr "Tving publisering" - -#: ../../mod/admin.php:602 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen." - -#: ../../mod/admin.php:603 -msgid "Global directory update URL" -msgstr "URL for oppdatering av Global-katalog" - -#: ../../mod/admin.php:603 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet." - -#: ../../mod/admin.php:604 -msgid "Allow threaded items" -msgstr "Tillat en tråd av elementer " - -#: ../../mod/admin.php:604 -msgid "Allow infinite level threading for items on this site." -msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet." - -#: ../../mod/admin.php:605 -msgid "Private posts by default for new users" -msgstr "Private meldinger som standard for nye brukere" - -#: ../../mod/admin.php:605 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig." - -#: ../../mod/admin.php:606 -msgid "Don't include post content in email notifications" -msgstr "Ikke inkluder innholdet i en melding i epostvarsler" - -#: ../../mod/admin.php:606 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak." - -#: ../../mod/admin.php:607 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen." - -#: ../../mod/admin.php:607 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer." - -#: ../../mod/admin.php:608 -msgid "Don't embed private images in posts" -msgstr "Ikke innebygg private bilder i innlegg" - -#: ../../mod/admin.php:608 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund." - -#: ../../mod/admin.php:609 -msgid "Allow Users to set remote_self" -msgstr "Tillat brukere å sette remote_self" - -#: ../../mod/admin.php:609 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Ved å sette hake her får hver bruker lov å markere hver kontakt som en remote_self i dialogen for kontaktreparasjon. Å sette denne haken på en kontakt medfører speiling av hvert innlegg fra denne kontakten i brukerens strøm. " - -#: ../../mod/admin.php:610 -msgid "Block multiple registrations" -msgstr "Blokker flere registreringer" - -#: ../../mod/admin.php:610 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider." - -#: ../../mod/admin.php:611 -msgid "OpenID support" -msgstr "OpenID-støtte" - -#: ../../mod/admin.php:611 -msgid "OpenID support for registration and logins." -msgstr "OpenID-støtte for registrering og innlogging." - -#: ../../mod/admin.php:612 -msgid "Fullname check" -msgstr "Sjekk fullt navn" - -#: ../../mod/admin.php:612 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)." - -#: ../../mod/admin.php:613 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 regulære uttrykk" - -#: ../../mod/admin.php:613 -msgid "Use PHP UTF8 regular expressions" -msgstr "Bruk PHP UTF8 regulære uttrykk" - -#: ../../mod/admin.php:614 -msgid "Show Community Page" -msgstr "Vis Felleskap-side" - -#: ../../mod/admin.php:614 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet." - -#: ../../mod/admin.php:615 -msgid "Enable OStatus support" -msgstr "Aktiver Ostatus-støtte" - -#: ../../mod/admin.php:615 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Tilby innebygget Ostatus-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til." - -#: ../../mod/admin.php:616 -msgid "OStatus conversation completion interval" -msgstr "OStatus intervall for samtalefullførelse" - -#: ../../mod/admin.php:616 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave." - -#: ../../mod/admin.php:617 -msgid "Enable Diaspora support" -msgstr "Aktiver Diaspora-støtte" - -#: ../../mod/admin.php:617 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket." - -#: ../../mod/admin.php:618 -msgid "Only allow Friendica contacts" -msgstr "Bare tillat Friendica-kontakter" - -#: ../../mod/admin.php:618 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert." - -#: ../../mod/admin.php:619 -msgid "Verify SSL" -msgstr "Bekreft SSL" - -#: ../../mod/admin.php:619 -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 "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater." - -#: ../../mod/admin.php:620 -msgid "Proxy user" -msgstr "Brukernavn til mellomtjener" - -#: ../../mod/admin.php:621 -msgid "Proxy URL" -msgstr "Mellomtjener URL" - -#: ../../mod/admin.php:622 -msgid "Network timeout" -msgstr "Tidsavbrudd for nettverk" - -#: ../../mod/admin.php:622 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)." - -#: ../../mod/admin.php:623 -msgid "Delivery interval" -msgstr "Leveringsintervall" - -#: ../../mod/admin.php:623 -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 "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere." - -#: ../../mod/admin.php:624 -msgid "Poll interval" -msgstr "Spørreintervall" - -#: ../../mod/admin.php:624 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall." - -#: ../../mod/admin.php:625 -msgid "Maximum Load Average" -msgstr "Maksimal snittlast" - -#: ../../mod/admin.php:625 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50." - -#: ../../mod/admin.php:627 -msgid "Use MySQL full text engine" -msgstr "Bruk MySQL fulltekstmotor" - -#: ../../mod/admin.php:627 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn." - -#: ../../mod/admin.php:628 -msgid "Suppress Language" -msgstr "Ikke vis språk" - -#: ../../mod/admin.php:628 -msgid "Suppress language information in meta information about a posting." -msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg." - -#: ../../mod/admin.php:629 -msgid "Path to item cache" -msgstr "Sti til mellomlager for elementer" - -#: ../../mod/admin.php:630 -msgid "Cache duration in seconds" -msgstr "Mellomlagringens varighet i sekunder" - -#: ../../mod/admin.php:630 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)." - -#: ../../mod/admin.php:631 -msgid "Path for lock file" -msgstr "Sti til fillås" - -#: ../../mod/admin.php:632 -msgid "Temp path" -msgstr "Temp-sti" - -#: ../../mod/admin.php:633 -msgid "Base path to installation" -msgstr "Sti til installasjonsbasen" - -#: ../../mod/admin.php:635 -msgid "New base url" -msgstr "Ny base URL" - -#: ../../mod/admin.php:653 -msgid "Update has been marked successful" -msgstr "Oppdatering har blitt markert som vellykket" - -#: ../../mod/admin.php:663 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s mislyktes. Sjekk systemlogger." - -#: ../../mod/admin.php:666 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble iverksatt på en vellykket måte." - -#: ../../mod/admin.php:670 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket." - -#: ../../mod/admin.php:673 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdateringsfunksjon %s ble ikke funnet." - -#: ../../mod/admin.php:688 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." - -#: ../../mod/admin.php:692 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" - -#: ../../mod/admin.php:693 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status." - -#: ../../mod/admin.php:694 -msgid "Mark success (if update was manually applied)" -msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)" - -#: ../../mod/admin.php:695 -msgid "Attempt to execute this update step automatically" -msgstr "Forsøk å utføre dette oppdateringspunktet automatisk" - -#: ../../mod/admin.php:741 -msgid "Registration successful. Email send to user" -msgstr "Vellykket registrering. E-post er sendt til bruker" - -#: ../../mod/admin.php:751 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s bruker blokkert/ikke blokkert" -msgstr[1] "%s brukere blokkert/ikke blokkert" - -#: ../../mod/admin.php:758 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s bruker slettet" -msgstr[1] "%s brukere slettet" - -#: ../../mod/admin.php:797 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" - -#: ../../mod/admin.php:805 -#, php-format -msgid "User '%s' unblocked" -msgstr "Brukeren '%s' er ikke blokkert" - -#: ../../mod/admin.php:805 -#, php-format -msgid "User '%s' blocked" -msgstr "Brukeren '%s' er blokkert" - -#: ../../mod/admin.php:900 -msgid "Add User" -msgstr "Legg til bruker" - -#: ../../mod/admin.php:901 -msgid "select all" -msgstr "velg alle" - -#: ../../mod/admin.php:902 -msgid "User registrations waiting for confirm" -msgstr "Brukerregistreringer venter på bekreftelse" - -#: ../../mod/admin.php:903 -msgid "User waiting for permanent deletion" -msgstr "Bruker venter på permanent sletting" - -#: ../../mod/admin.php:904 -msgid "Request date" -msgstr "Forespørselsdato" - -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:930 ../../mod/crepair.php:150 -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -msgid "Name" -msgstr "Navn" - -#: ../../mod/admin.php:904 ../../mod/admin.php:916 ../../mod/admin.php:917 -#: ../../mod/admin.php:932 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-post" - -#: ../../mod/admin.php:905 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../mod/admin.php:906 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Godkjenn" - -#: ../../mod/admin.php:907 -msgid "Deny" -msgstr "Nekt" - -#: ../../mod/admin.php:909 ../../mod/contacts.php:431 -#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 -msgid "Block" -msgstr "Blokker" - -#: ../../mod/admin.php:910 ../../mod/contacts.php:431 -#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 -msgid "Unblock" -msgstr "Ikke blokker" - -#: ../../mod/admin.php:911 -msgid "Site admin" -msgstr "Nettstedets administrator" - -#: ../../mod/admin.php:912 -msgid "Account expired" -msgstr "Konto utgått" - -#: ../../mod/admin.php:915 -msgid "New User" -msgstr "Ny bruker" - -#: ../../mod/admin.php:916 ../../mod/admin.php:917 -msgid "Register date" -msgstr "Registreringsdato" - -#: ../../mod/admin.php:916 ../../mod/admin.php:917 -msgid "Last login" -msgstr "Siste innlogging" - -#: ../../mod/admin.php:916 ../../mod/admin.php:917 -msgid "Last item" -msgstr "Siste element" - -#: ../../mod/admin.php:916 -msgid "Deleted since" -msgstr "Slettet siden" - -#: ../../mod/admin.php:917 ../../mod/settings.php:35 -msgid "Account" -msgstr "Konto" - -#: ../../mod/admin.php:919 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?" - -#: ../../mod/admin.php:920 -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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?" - -#: ../../mod/admin.php:930 -msgid "Name of the new user." -msgstr "Navnet til den nye brukeren." - -#: ../../mod/admin.php:931 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../mod/admin.php:931 -msgid "Nickname of the new user." -msgstr "Kallenavnet til den nye brukeren." - -#: ../../mod/admin.php:932 -msgid "Email address of the new user." -msgstr "E-postadressen til den nye brukeren." - -#: ../../mod/admin.php:965 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tillegget %s er avskrudd." - -#: ../../mod/admin.php:969 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tillegget %s er aktivert." - -#: ../../mod/admin.php:979 ../../mod/admin.php:1182 -msgid "Disable" -msgstr "Skru av" - -#: ../../mod/admin.php:981 ../../mod/admin.php:1184 -msgid "Enable" -msgstr "Aktiver" - -#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 -msgid "Toggle" -msgstr "Veksle" - -#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 -msgid "Author: " -msgstr "Forfatter:" - -#: ../../mod/admin.php:1013 ../../mod/admin.php:1223 -msgid "Maintainer: " -msgstr "Vedlikeholder:" - -#: ../../mod/admin.php:1142 -msgid "No themes found." -msgstr "Ingen temaer funnet." - -#: ../../mod/admin.php:1204 -msgid "Screenshot" -msgstr "Skjermbilde" - -#: ../../mod/admin.php:1250 -msgid "[Experimental]" -msgstr "[Eksperimentell]" - -#: ../../mod/admin.php:1251 -msgid "[Unsupported]" -msgstr "[Ikke støttet]" - -#: ../../mod/admin.php:1278 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." - -#: ../../mod/admin.php:1334 -msgid "Clear" -msgstr "Tøm" - -#: ../../mod/admin.php:1340 -msgid "Enable Debugging" -msgstr "Aktiver feilsøking" - -#: ../../mod/admin.php:1341 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1341 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas." - -#: ../../mod/admin.php:1342 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/admin.php:1391 ../../mod/contacts.php:487 -msgid "Update now" -msgstr "Oppdater nå" - -#: ../../mod/admin.php:1392 -msgid "Close" -msgstr "Lukk" - -#: ../../mod/admin.php:1398 -msgid "FTP Host" -msgstr "FTP-tjener" - -#: ../../mod/admin.php:1399 -msgid "FTP Path" -msgstr "FTP-sti" - -#: ../../mod/admin.php:1400 -msgid "FTP User" -msgstr "FTP-bruker" - -#: ../../mod/admin.php:1401 -msgid "FTP Password" -msgstr "FTP-passord" - -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938 -#: ../../include/text.php:939 ../../include/nav.php:118 +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 msgid "Search" msgstr "Søk" -#: ../../mod/_search.php:180 ../../mod/_search.php:206 #: ../../mod/search.php:170 ../../mod/search.php:196 #: ../../mod/community.php:62 ../../mod/community.php:89 msgid "No results." msgstr "Fant ikke noe." -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips til nye medlemmer" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Grensen for totalt antall invitasjoner er overskredet." -#: ../../mod/share.php:44 -msgid "link" -msgstr "lenke" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: ../../mod/invite.php:49 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %2$s sitt %3$s med %4$s" +msgid "%s : Not a valid email address." +msgstr "%s: Ugyldig e-postadresse." -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Fant ikke elementet" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Vær med oss på Friendica" -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted." -#: ../../mod/editpost.php:111 ../../include/conversation.php:1085 -msgid "upload photo" -msgstr "last opp bilde" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1086 -msgid "Attach file" -msgstr "Legg ved fil" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1087 -msgid "attach file" -msgstr "legg ved fil" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1089 -msgid "web link" -msgstr "web-adresse" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1090 -msgid "Insert video link" -msgstr "Sett inn video-link" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1091 -msgid "video link" -msgstr "videolink" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1092 -msgid "Insert audio link" -msgstr "Sett inn lydlink" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1093 -msgid "audio link" -msgstr "lydlink" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1094 -msgid "Set your location" -msgstr "Angi din plassering" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1095 -msgid "set location" -msgstr "angi plassering" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1096 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1097 -msgid "clear location" -msgstr "fjern plassering" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1103 -msgid "Permission settings" -msgstr "Tillatelser" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1112 -msgid "CC: email addresses" -msgstr "Kopi: e-postadresser" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1113 -msgid "Public post" -msgstr "Offentlig innlegg" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1099 -msgid "Set title" -msgstr "Lagre tittel" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1101 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1115 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Eksempel: ola@example.com, kari@example.com" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../mod/regmod.php:100 +#: ../../mod/invite.php:89 #, php-format -msgid "Registration revoked for %s" -msgstr "Registreringen til %s er trukket tilbake" +msgid "%s : Message delivery failed." +msgstr "%s: Mislyktes med å levere meldingen." -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Vennligst logg inn." - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Finn på dette nettstedet" - -#: ../../mod/directory.php:59 ../../mod/contacts.php:693 -msgid "Finding: " -msgstr "Fant:" - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Stedets katalog" - -#: ../../mod/directory.php:61 ../../mod/contacts.php:694 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Finn" - -#: ../../mod/directory.php:111 ../../mod/profiles.php:690 -msgid "Age: " -msgstr "Alder:" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Kjønn:" - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Om:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)." - -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Kontaktinnstillinger i bruk." - -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Kontaktoppdatering mislyktes." - -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Reparer kontaktinnstillinger" - -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke." - -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden." - -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Gå tilbake til å endre kontakt" - -#: ../../mod/crepair.php:151 -msgid "Account Nickname" -msgstr "Konto Kallenavn" - -#: ../../mod/crepair.php:152 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn" - -#: ../../mod/crepair.php:153 -msgid "Account URL" -msgstr "Konto URL" - -#: ../../mod/crepair.php:154 -msgid "Friend Request URL" -msgstr "Venneforespørsel URL" - -#: ../../mod/crepair.php:155 -msgid "Friend Confirm URL" -msgstr "Vennebekreftelse URL" - -#: ../../mod/crepair.php:156 -msgid "Notification Endpoint URL" -msgstr "Endepunkt URL for beskjed" - -#: ../../mod/crepair.php:157 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL" - -#: ../../mod/crepair.php:158 -msgid "New photo from this URL" -msgstr "Nytt bilde fra denne URL-en" - -#: ../../mod/crepair.php:159 -msgid "Remote Self" -msgstr "Fjernbetjent selv" - -#: ../../mod/crepair.php:161 -msgid "Mirror postings from this contact" -msgstr "Speil innlegg fra denne kontakten" - -#: ../../mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Flytt konto" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kan importere en konto fra en annen Friendica-tjener." - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Kontofil" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Synlig for:" - -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941 -msgid "Save" -msgstr "Lagre" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Hjelp:" - -#: ../../mod/help.php:84 ../../include/nav.php:113 -msgid "Help" -msgstr "Hjelp" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Ingen profil" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Denne introduksjonen har allerede blitt akseptert." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Advarsel: profilstedet har ikke noe profilbilde." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#: ../../mod/invite.php:93 #, 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] "one: %d nødvendig parameter ble ikke funnet på angitt sted" -msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "one: %d melding sendt." +msgstr[1] "other: %d meldinger sendt." -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Introduksjon ferdig." +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du har ingen flere tilgjengelige invitasjoner" -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Uopprettelig protokollfeil." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil utilgjengelig." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s har mottatt for mange kontaktforespørsler idag." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Tiltak mot søppelpost har blitt iverksatt." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Venner anbefales å prøve igjen om 24 timer." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Ugyldig stedsangivelse" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Ugyldig e-postadresse." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Du har allerede introdusert deg selv her." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Du er visst allerede venn med %s." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Ugyldig profil-URL." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Underkjent profil-URL." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 -msgid "Failed to update contact record." -msgstr "Mislyktes med å oppdatere kontaktposten." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Din introduksjon er sendt." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Vennligst logg inn for å bekrefte introduksjonen." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Skjul denne kontakten" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Velkommen hjem %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Bekreft" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686 -msgid "[Name Withheld]" -msgstr "[Navnet tilbakeholdt]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Koble til som en e-postfølgesvenn (Kommer snart)" - -#: ../../mod/dfrn_request.php:829 -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 "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Venne-/Koblings-forespørsel" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Vennligst svar på følgende:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Kjenner %s deg?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Legg til en personlig melding:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federeated Social Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 +#: ../../mod/invite.php:120 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora." +"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 "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk." -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Din identitetsadresse:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Send forespørsel" - -#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Innebygget innhold - hent siden på nytt for å se det]" - -#: ../../mod/content.php:496 ../../include/conversation.php:688 -msgid "View in context" -msgstr "Vis i sammenheng" - -#: ../../mod/contacts.php:104 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d kontakt redigert." -msgstr[1] "%d kontakter redigert" - -#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktposten." - -#: ../../mod/contacts.php:149 -msgid "Could not locate selected profile." -msgstr "Kunne ikke lokalisere valgt profil." - -#: ../../mod/contacts.php:178 -msgid "Contact updated." -msgstr "Kontakt oppdatert." - -#: ../../mod/contacts.php:278 -msgid "Contact has been blocked" -msgstr "Kontakten er blokkert" - -#: ../../mod/contacts.php:278 -msgid "Contact has been unblocked" -msgstr "Kontakten er ikke blokkert lenger" - -#: ../../mod/contacts.php:288 -msgid "Contact has been ignored" -msgstr "Kontakten er ignorert" - -#: ../../mod/contacts.php:288 -msgid "Contact has been unignored" -msgstr "Kontakten er ikke ignorert lenger" - -#: ../../mod/contacts.php:299 -msgid "Contact has been archived" -msgstr "Kontakt har blitt arkivert" - -#: ../../mod/contacts.php:299 -msgid "Contact has been unarchived" -msgstr "Kontakt har blitt hentet tilbake fra arkivet" - -#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 -msgid "Do you really want to delete this contact?" -msgstr "Ønsker du virkelig å slette denne kontakten?" - -#: ../../mod/contacts.php:341 -msgid "Contact has been removed." -msgstr "Kontakten er fjernet." - -#: ../../mod/contacts.php:379 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Du er gjensidig venn med %s" - -#: ../../mod/contacts.php:383 -#, php-format -msgid "You are sharing with %s" -msgstr "Du deler med %s" - -#: ../../mod/contacts.php:388 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deler med deg" - -#: ../../mod/contacts.php:405 -msgid "Private communications are not available for this contact." -msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten." - -#: ../../mod/contacts.php:412 -msgid "(Update was successful)" -msgstr "(Oppdatering vellykket)" - -#: ../../mod/contacts.php:412 -msgid "(Update was not successful)" -msgstr "(Oppdatering mislykket)" - -#: ../../mod/contacts.php:414 -msgid "Suggest friends" -msgstr "Foreslå venner" - -#: ../../mod/contacts.php:418 -#, php-format -msgid "Network type: %s" -msgstr "Nettverkstype: %s" - -#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d felles kontakt" -msgstr[1] "%d felles kontakter" - -#: ../../mod/contacts.php:426 -msgid "View all contacts" -msgstr "Vis alle kontakter" - -#: ../../mod/contacts.php:434 -msgid "Toggle Blocked status" -msgstr "Veksle blokkeringsstatus" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 -msgid "Unignore" -msgstr "Fjern ignorering" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/contacts.php:440 -msgid "Toggle Ignored status" -msgstr "Veksle ingnorertstatus" - -#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 -msgid "Unarchive" -msgstr "Hent ut av arkivet" - -#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 -msgid "Archive" -msgstr "Arkiver" - -#: ../../mod/contacts.php:447 -msgid "Toggle Archive status" -msgstr "Veksle arkivertstatus" - -#: ../../mod/contacts.php:450 -msgid "Repair" -msgstr "Reparer" - -#: ../../mod/contacts.php:453 -msgid "Advanced Contact Settings" -msgstr "Avanserte kontaktinnstillinger" - -#: ../../mod/contacts.php:459 -msgid "Communications lost with this contact!" -msgstr "Kommunikasjon tapt med denne kontakten!" - -#: ../../mod/contacts.php:462 -msgid "Contact Editor" -msgstr "Endre kontakt" - -#: ../../mod/contacts.php:465 -msgid "Profile Visibility" -msgstr "Profilens synlighet" - -#: ../../mod/contacts.php:466 +#: ../../mod/invite.php:122 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte." +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted." -#: ../../mod/contacts.php:467 -msgid "Contact Information / Notes" -msgstr "Kontaktinformasjon/-notater" - -#: ../../mod/contacts.php:468 -msgid "Edit contact notes" -msgstr "Endre kontaktnotater" - -#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#: ../../mod/invite.php:123 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %ss profil [%s]" - -#: ../../mod/contacts.php:474 -msgid "Block/Unblock contact" -msgstr "Blokker kontakt/fjern blokkering for kontakt" - -#: ../../mod/contacts.php:475 -msgid "Ignore contact" -msgstr "Ignorer kontakt" - -#: ../../mod/contacts.php:476 -msgid "Repair URL settings" -msgstr "Reparer URL-innstillinger" - -#: ../../mod/contacts.php:477 -msgid "View conversations" -msgstr "Vis samtaler" - -#: ../../mod/contacts.php:479 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: ../../mod/contacts.php:483 -msgid "Last update:" -msgstr "Siste oppdatering:" - -#: ../../mod/contacts.php:485 -msgid "Update public posts" -msgstr "Oppdater offentlige innlegg" - -#: ../../mod/contacts.php:494 -msgid "Currently blocked" -msgstr "Blokkert nå" - -#: ../../mod/contacts.php:495 -msgid "Currently ignored" -msgstr "Ignorert nå" - -#: ../../mod/contacts.php:496 -msgid "Currently archived" -msgstr "For øyeblikket arkivert" - -#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Skjul denne kontakten for andre" - -#: ../../mod/contacts.php:497 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svar/liker til dine offentlige innlegg kan fortsatt være synlige" +"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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i." -#: ../../mod/contacts.php:498 -msgid "Notification for new posts" -msgstr "Varsling om nye innlegg" +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer." -#: ../../mod/contacts.php:498 -msgid "Send a notification of every new post of this contact" -msgstr "Send et varsel ved hvert nytt innlegg fra denne kontakten" +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Send invitasjoner" -#: ../../mod/contacts.php:499 -msgid "Fetch further information for feeds" -msgstr "Hent ytterligere informasjon til strømmer" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" -#: ../../mod/contacts.php:550 -msgid "Suggestions" -msgstr "Forslag" +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web." -#: ../../mod/contacts.php:553 -msgid "Suggest potential friends" -msgstr "Foreslå mulige venner" +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du må oppgi denne invitasjonskoden: $invite_code" -#: ../../mod/contacts.php:556 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Alle kontakter" +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:" -#: ../../mod/contacts.php:559 -msgid "Show all contacts" -msgstr "Vis alle kontakter" +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com" -#: ../../mod/contacts.php:562 -msgid "Unblocked" -msgstr "Ikke blokkert" - -#: ../../mod/contacts.php:565 -msgid "Only show unblocked contacts" -msgstr "Bare vis ikke blokkerte kontakter" - -#: ../../mod/contacts.php:569 -msgid "Blocked" -msgstr "Blokkert" - -#: ../../mod/contacts.php:572 -msgid "Only show blocked contacts" -msgstr "Bare vis blokkerte kontakter" - -#: ../../mod/contacts.php:576 -msgid "Ignored" -msgstr "Ignorert" - -#: ../../mod/contacts.php:579 -msgid "Only show ignored contacts" -msgstr "Bare vis ignorerte kontakter" - -#: ../../mod/contacts.php:583 -msgid "Archived" -msgstr "Arkivert" - -#: ../../mod/contacts.php:586 -msgid "Only show archived contacts" -msgstr "Bare vis arkiverte kontakter" - -#: ../../mod/contacts.php:590 -msgid "Hidden" -msgstr "Skjult" - -#: ../../mod/contacts.php:593 -msgid "Only show hidden contacts" -msgstr "Bare vis skjulte kontakter" - -#: ../../mod/contacts.php:641 -msgid "Mutual Friendship" -msgstr "Gjensidig vennskap" - -#: ../../mod/contacts.php:645 -msgid "is a fan of yours" -msgstr "er en tilhenger av deg" - -#: ../../mod/contacts.php:649 -msgid "you are a fan of" -msgstr "du er en tilhenger av" - -#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Endre kontakt" - -#: ../../mod/contacts.php:692 -msgid "Search your contacts" -msgstr "Søk i dine kontakter" - -#: ../../mod/contacts.php:699 ../../mod/settings.php:131 -#: ../../mod/settings.php:634 -msgid "Update" -msgstr "Oppdater" - -#: ../../mod/settings.php:28 ../../mod/photos.php:80 -msgid "everybody" -msgstr "alle" - -#: ../../mod/settings.php:40 +#: ../../mod/settings.php:41 msgid "Additional features" msgstr "Tilleggsfunksjoner" -#: ../../mod/settings.php:45 +#: ../../mod/settings.php:46 msgid "Display" msgstr "Vis" -#: ../../mod/settings.php:51 ../../mod/settings.php:774 +#: ../../mod/settings.php:52 ../../mod/settings.php:775 msgid "Social Networks" msgstr "Sosiale nettverk" -#: ../../mod/settings.php:61 ../../include/nav.php:167 +#: ../../mod/settings.php:62 ../../include/nav.php:167 msgid "Delegations" msgstr "Delegasjoner" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:67 msgid "Connected apps" msgstr "Tilkoblede programmer" -#: ../../mod/settings.php:71 ../../mod/uexport.php:85 +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" msgstr "Eksporter personlige data" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:77 msgid "Remove account" msgstr "Fjern konto" -#: ../../mod/settings.php:128 +#: ../../mod/settings.php:129 msgid "Missing some important data!" msgstr "Mangler noen viktige data!" -#: ../../mod/settings.php:237 +#: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene." -#: ../../mod/settings.php:242 +#: ../../mod/settings.php:243 msgid "Email settings updated." msgstr "E-postinnstillinger er oppdatert." -#: ../../mod/settings.php:257 +#: ../../mod/settings.php:258 msgid "Features updated" msgstr "Funksjoner oppdatert" -#: ../../mod/settings.php:318 +#: ../../mod/settings.php:319 msgid "Relocate message has been send to your contacts" msgstr "Omplasseringsmelding har blitt sendt til dine kontakter" -#: ../../mod/settings.php:332 +#: ../../mod/settings.php:333 msgid "Passwords do not match. Password unchanged." msgstr "Passordene er ikke like. Passord uendret." -#: ../../mod/settings.php:337 +#: ../../mod/settings.php:338 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke lov. Passord uendret." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:346 msgid "Wrong password." msgstr "Feil passord." -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:357 msgid "Password changed." msgstr "Passord endret." -#: ../../mod/settings.php:358 +#: ../../mod/settings.php:359 msgid "Password update failed. Please try again." msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen." -#: ../../mod/settings.php:423 +#: ../../mod/settings.php:424 msgid " Please use a shorter name." msgstr "Vennligst bruk et kortere navn." -#: ../../mod/settings.php:425 +#: ../../mod/settings.php:426 msgid " Name too short." msgstr "Navnet er for kort." -#: ../../mod/settings.php:434 +#: ../../mod/settings.php:435 msgid "Wrong Password" msgstr "Feil passord" -#: ../../mod/settings.php:439 +#: ../../mod/settings.php:440 msgid " Not valid email." msgstr "Ugyldig e-postadresse." -#: ../../mod/settings.php:445 +#: ../../mod/settings.php:446 msgid " Cannot change to that email." msgstr "Kan ikke endre til den e-postadressen." -#: ../../mod/settings.php:500 +#: ../../mod/settings.php:501 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe." -#: ../../mod/settings.php:504 +#: ../../mod/settings.php:505 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe." -#: ../../mod/settings.php:534 +#: ../../mod/settings.php:535 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 msgid "Add application" msgstr "Legg til program" -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Redirect" msgstr "Omdiriger" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:615 ../../mod/settings.php:641 msgid "Icon url" msgstr "Ikon URL" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:626 msgid "You can't edit this application." msgstr "Du kan ikke redigere dette programmet." -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:669 msgid "Connected Apps" msgstr "Tilkoblede programmer" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:673 msgid "Client key starts with" msgstr "Klientnøkkelen starter med" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:674 msgid "No name" msgstr "Ingen navn" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:675 msgid "Remove authorization" msgstr "Fjern tillatelse" -#: ../../mod/settings.php:686 +#: ../../mod/settings.php:687 msgid "No Plugin settings configured" msgstr "Ingen tilleggsinnstillinger konfigurert" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Plugin Settings" msgstr "Tilleggsinnstillinger" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "Off" msgstr "Av" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:709 msgid "On" msgstr "På" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:717 msgid "Additional Features" msgstr "Tilleggsfunksjoner" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Innebygget støtte for %s forbindelse er %s" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "enabled" msgstr "aktivert" -#: ../../mod/settings.php:730 ../../mod/settings.php:731 +#: ../../mod/settings.php:731 ../../mod/settings.php:732 msgid "disabled" msgstr "avskrudd" -#: ../../mod/settings.php:731 +#: ../../mod/settings.php:732 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:768 msgid "Email access is disabled on this site." msgstr "E-posttilgang er avskrudd på dette stedet." -#: ../../mod/settings.php:779 +#: ../../mod/settings.php:780 msgid "Email/Mailbox Setup" msgstr "E-post-/postboksinnstillinger" -#: ../../mod/settings.php:780 +#: ../../mod/settings.php:781 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes." -#: ../../mod/settings.php:781 +#: ../../mod/settings.php:782 msgid "Last successful email check:" msgstr "Siste vellykkede e-postsjekk:" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:784 msgid "IMAP server name:" msgstr "IMAP-tjeners navn:" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:785 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:785 +#: ../../mod/settings.php:786 msgid "Security:" msgstr "Sikkerhet:" -#: ../../mod/settings.php:785 ../../mod/settings.php:790 +#: ../../mod/settings.php:786 ../../mod/settings.php:791 msgid "None" msgstr "Ingen" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:787 msgid "Email login name:" msgstr "E-post brukernavn:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:788 msgid "Email password:" msgstr "E-post passord:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:789 msgid "Reply-to address:" msgstr "Svar-til-adresse:" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:790 msgid "Send public posts to all email contacts:" msgstr "Send offentlige meldinger til alle e-postkontakter:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Action after import:" msgstr "Handling etter import:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Mark as seen" msgstr "Marker som sett" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:791 msgid "Move to folder" msgstr "Flytt til mappe" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:792 msgid "Move to folder:" msgstr "Flytt til mappe:" -#: ../../mod/settings.php:869 +#: ../../mod/settings.php:870 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../mod/settings.php:875 ../../mod/settings.php:889 +#: ../../mod/settings.php:876 ../../mod/settings.php:890 msgid "Display Theme:" msgstr "Vis tema:" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:877 msgid "Mobile Theme:" msgstr "Mobilt tema:" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekund" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:878 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../mod/settings.php:878 +#: ../../mod/settings.php:879 msgid "Number of items to display per page:" msgstr "Antall elementer som vises per side:" -#: ../../mod/settings.php:878 ../../mod/settings.php:879 +#: ../../mod/settings.php:879 ../../mod/settings.php:880 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:880 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Antall elementer å vise per side ved visning på mobil enhet:" -#: ../../mod/settings.php:880 +#: ../../mod/settings.php:881 msgid "Don't show emoticons" msgstr "Ikke vis uttrykksikoner" -#: ../../mod/settings.php:881 +#: ../../mod/settings.php:882 msgid "Don't show notices" msgstr "Ikke vis varsler" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:883 msgid "Infinite scroll" msgstr "Uendelig rulling" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Brukerkategorier" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Felleskapskategorier" + +#: ../../mod/settings.php:962 msgid "Normal Account Page" msgstr "Vanlig konto-side" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:963 msgid "This account is a normal personal profile" msgstr "Denne kontoen er en vanlig personlig profil" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:966 msgid "Soapbox Page" msgstr "Talerstol-side" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:967 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Forum/Celebrity Account" msgstr "Fellesskapsforum/Kjendis-side" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:974 msgid "Automatic Friend Page" msgstr "Automatisk venn-side" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Automatically approve all connection/friend requests as friends" msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:978 msgid "Private Forum [Experimental]" msgstr "Privat forum [Eksperimentell]" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Private forum - approved members only" msgstr "Privat forum - kun godkjente medlemmer" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:991 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen." -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1001 msgid "Publish your default profile in your local site directory?" msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1007 msgid "Publish your default profile in the global social directory?" msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1015 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 msgid "Hide your profile details from unknown viewers?" msgstr "Skjul dine profildetaljer fra ukjente besøkende?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Allow friends to post to your profile page?" msgstr "Tillat venner å poste innlegg på din profilside?" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1030 msgid "Allow friends to tag your posts?" msgstr "Tillat venner å merke dine innlegg?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1036 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../mod/settings.php:1039 +#: ../../mod/settings.php:1042 msgid "Permit unknown people to send you private mail?" msgstr "Tillat ukjente personer å sende deg privat post?" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1050 msgid "Profile is not published." msgstr "Profilen er ikke publisert." -#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 msgid "or" msgstr "eller" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1058 msgid "Your Identity Address is" msgstr "Din identitetsadresse er" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "Automatically expire posts after this many days:" msgstr "Innlegg utgår automatisk etter så mange dager:" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1069 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes." -#: ../../mod/settings.php:1067 +#: ../../mod/settings.php:1070 msgid "Advanced expiration settings" msgstr "Avanserte innstillinger for å utgå" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1071 msgid "Advanced Expiration" msgstr "Avansert utgå" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1072 msgid "Expire posts:" msgstr "Innlegg utgår:" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1073 msgid "Expire personal notes:" msgstr "Personlige notater utgår:" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1074 msgid "Expire starred posts:" msgstr "Innlegg med stjerne utgår:" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1075 msgid "Expire photos:" msgstr "Bilder utgår:" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1076 msgid "Only expire posts by others:" msgstr "Kun innlegg fra andre utgår:" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1102 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1110 msgid "Password Settings" msgstr "Passordinnstillinger" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "New Password:" msgstr "Nytt passord:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Confirm:" msgstr "Bekreft:" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1112 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå tomme hvis du ikke skal bytte" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1113 msgid "Current Password:" msgstr "Gjeldende passord:" -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 msgid "Your current password to confirm the changes" msgstr "Ditt gjeldende passord for å bekrefte endringene" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1114 msgid "Password:" msgstr "Passord:" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1118 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Fullt navn:" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Default Post Location:" msgstr "Standard oppholdssted når du poster:" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Use Browser Location:" msgstr "Bruk nettleserens oppholdssted:" -#: ../../mod/settings.php:1123 +#: ../../mod/settings.php:1126 msgid "Security and Privacy Settings" msgstr "Sikkerhet og privatlivsinnstillinger" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1128 msgid "Maximum Friend Requests/Day:" msgstr "Maksimum venneforespørsler/dag:" -#: ../../mod/settings.php:1125 ../../mod/settings.php:1155 +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 msgid "(to prevent spam abuse)" msgstr "(for å forhindre søppelpost)" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1129 msgid "Default Post Permissions" msgstr "Standardtillatelser ved posting" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "(click to open/close)" msgstr "(klikk for å åpne/lukke)" -#: ../../mod/settings.php:1136 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1515 -msgid "Show to Groups" -msgstr "Vis til grupper" - -#: ../../mod/settings.php:1137 ../../mod/photos.php:1145 -#: ../../mod/photos.php:1516 -msgid "Show to Contacts" -msgstr "Vis til kontakter" - -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1141 msgid "Default Private Post" msgstr "Standard privat innlegg" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1142 msgid "Default Public Post" msgstr "Standard offentlig innlegg" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1146 msgid "Default Permissions for New Posts" msgstr "Standard tillatelser for nye innlegg" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1158 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1161 msgid "Notification Settings" msgstr "Beskjedinnstillinger" -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1162 msgid "By default post a status message when:" msgstr "Standard å legge inn en statusmelding når:" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1163 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../mod/settings.php:1161 +#: ../../mod/settings.php:1164 msgid "joining a forum/community" msgstr "blir med i et forum/fellesskap" -#: ../../mod/settings.php:1162 +#: ../../mod/settings.php:1165 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../mod/settings.php:1163 +#: ../../mod/settings.php:1166 msgid "Send a notification email when:" msgstr "Send en e-post med beskjed når:" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "You receive an introduction" msgstr "Du mottar en introduksjon" -#: ../../mod/settings.php:1165 +#: ../../mod/settings.php:1168 msgid "Your introductions are confirmed" msgstr "Dine introduksjoner er bekreftet" -#: ../../mod/settings.php:1166 +#: ../../mod/settings.php:1169 msgid "Someone writes on your profile wall" msgstr "Noen skriver på veggen til profilen din" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgingskommentar" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "You receive a friend suggestion" msgstr "Du mottar et venneforslag" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "You are tagged in a post" msgstr "Du er merket i et innlegg" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "You are poked/prodded/etc. in a post" msgstr "Du er dyttet/dultet/etc i et innlegg" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte konto-/sidetype-innstillinger" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Change the behaviour of this account for special situations" msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "Relocate" msgstr "Omplasser" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Hvis du har flyttet denne profilen fra en annen tjener, og noen av dine kontakter ikke mottar dine oppdateringer, prøv å trykke denne knappen." -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "Resend relocate message to contacts" msgstr "Send omplasseringsmelding på nytt til kontakter" +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "Elementet har blitt slettet." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Personsøk" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Ingen treff" + #: ../../mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil slettet." @@ -4468,207 +4260,323 @@ msgid "" "be visible to anybody using the internet." msgstr "Dette er din offentlige profil.
Den kan ses av alle på Internet." +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Alder:" + #: ../../mod/profiles.php:729 msgid "Edit/Manage Profiles" msgstr "Rediger/Behandle profiler" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppen er laget." +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Endre profilbilde" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Kunne ikke lage gruppen." +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Lag ny profil" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Fant ikke gruppen." +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Profilbilde" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenavnet er endret" +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "synlig for alle" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Lagre gruppe" +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Endre synlighet" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Lag en gruppe med kontakter/venner." +#: ../../mod/share.php:44 +msgid "link" +msgstr "lenke" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Gruppenavn:" +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Eksporter konto" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe fjernet." +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener." -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Mislyktes med å fjerne gruppe." +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Eksporter alt" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Gruppebehandler" +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Medlemmer" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} ønsker å bli din venn" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} sendte deg en melding" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "BBcode kildetekst:" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} forespurte om registrering" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Diaspora kildetekst å konvertere til BBcode:" +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} kommenterte %s sitt innlegg" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Kilde-input:" +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} likte %s sitt innlegg" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (rå HTML):" +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} likte ikke %s sitt innlegg" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} er nå venner med %s" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb:" +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} postet et innlegg" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md:" +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} merket %s sitt innlegg med #%s" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html:" +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} nevnte deg i et innlegg" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb:" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Ikke noe nytt her" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb:" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Diaspora-formatert kilde-input:" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb:" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Fjern varslinger" #: ../../mod/community.php:23 msgid "Not available." msgstr "Ikke tilgjengelig." -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt lagt til " +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Fellesskap" -#: ../../mod/notify.php:61 ../../mod/notifications.php:332 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" -#: ../../mod/notify.php:65 ../../mod/notifications.php:336 -msgid "System Notifications" -msgstr "Systemvarsler" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- velg -" -#: ../../mod/message.php:9 ../../include/nav.php:161 -msgid "New Message" -msgstr "Ny melding" +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Lagre" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Mislyktes med å finne kontaktinformasjon." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater" -#: ../../mod/message.php:182 ../../mod/notifications.php:103 -#: ../../include/nav.php:158 -msgid "Messages" -msgstr "Meldinger" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Eller - forsøkte du å laste opp en tom fil?" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Ønsker du virkelig å slette denne meldingen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Melding slettet." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Samtale slettet." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../mod/message.php:378 +#: ../../mod/wall_attach.php:81 #, php-format -msgid "Unknown sender - %s" -msgstr "Ukjent avsender - %s" +msgid "File exceeds size limit of %d" +msgstr "Filstørrelsen er større enn begrensning på %d" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du og %s" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Opplasting av filen mislyktes." -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s og du" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ugyldig profilidentifikator." -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Slett samtale" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Behandle profilsynlighet" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d melding" -msgstr[1] "%d meldinger" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Synlig for" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Melding utilgjengelig." +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle kontakter (med sikret profiltilgang)" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Slett melding" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vil du virkelig slette dette forslaget?" -#: ../../mod/message.php:548 +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Venneforslag" + +#: ../../mod/suggest.php:72 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Send svar" +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Forbindelse" -#: ../../mod/like.php:169 ../../include/conversation.php:140 +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorér/Skjul" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Tilgang avslått." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s liker ikke %2$s's %3$s" +msgid "%1$s welcomes %2$s" +msgstr "%1$s hilser %2$s" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Innlegg vellykket." +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Behandle identiteter og/eller sider" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Velg en identitet å behandle:" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Fant ingen potensielle sidedelegater." + +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Deleger sidebehandling" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på." + +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Eksisterende sidebehandlere" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Eksisterende sidedelegater" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Mulige delegater" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Legg til" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Ingen oppføringer" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Ingen kontakter." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Vis kontakter" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Personlige notater" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Dytt/dult" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "dytt, dult eller gjør andre ting med noen" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Global katalog" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Finn på dette nettstedet" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Stedets katalog" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Kjønn:" + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Kjønn:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Om:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)." #: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../include/bb2diaspora.php:133 @@ -4704,334 +4612,9 @@ msgstr "Konvertert lokaltid: %s" msgid "Please select your timezone:" msgstr "Vennligst velg din tidssone:" -#: ../../mod/filer.php:30 ../../include/conversation.php:1004 -#: ../../include/conversation.php:1022 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- velg -" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ugyldig profilidentifikator." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Behandle profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle kontakter (med sikret profiltilgang)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Ingen kontakter." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:861 -msgid "View Contacts" -msgstr "Vis kontakter" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Personsøk" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Ingen treff" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontaktinformasjon utilgjengelig" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album ble ikke funnet." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Ønsker du virkelig å slette dette bildet?" - -#: ../../mod/photos.php:660 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s ble merket i %2$s av %3$s" - -#: ../../mod/photos.php:660 -msgid "a photo" -msgstr "et bilde" - -#: ../../mod/photos.php:765 -msgid "Image exceeds size limit of " -msgstr "Bilde overstiger størrelsesbegrensningen på " - -#: ../../mod/photos.php:773 -msgid "Image file is empty." -msgstr "Bildefilen er tom." - -#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Ikke i stand til å behandle bildet." - -#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Mislyktes med å laste opp bilde." - -#: ../../mod/photos.php:928 -msgid "No photos selected" -msgstr "Ingen bilder er valgt" - -#: ../../mod/photos.php:1029 ../../mod/videos.php:226 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../mod/photos.php:1092 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring." - -#: ../../mod/photos.php:1127 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nytt albumnavn:" - -#: ../../mod/photos.php:1132 -msgid "or existing album name: " -msgstr "eller eksisterende albumnavn:" - -#: ../../mod/photos.php:1133 -msgid "Do not show a status post for this upload" -msgstr "Ikke vis statusoppdatering for denne opplastingen" - -#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 -msgid "Permissions" -msgstr "Tillatelser" - -#: ../../mod/photos.php:1146 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../mod/photos.php:1147 -msgid "Public Photo" -msgstr "Offentlig bilde" - -#: ../../mod/photos.php:1214 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../mod/photos.php:1220 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../mod/photos.php:1222 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../mod/photos.php:1255 ../../mod/photos.php:1793 -msgid "View Photo" -msgstr "Vis bilde" - -#: ../../mod/photos.php:1290 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset." - -#: ../../mod/photos.php:1292 -msgid "Photo not available" -msgstr "Bilde ikke tilgjengelig" - -#: ../../mod/photos.php:1348 -msgid "View photo" -msgstr "Vis foto" - -#: ../../mod/photos.php:1348 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../mod/photos.php:1349 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../mod/photos.php:1374 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../mod/photos.php:1453 -msgid "Tags: " -msgstr "Tagger:" - -#: ../../mod/photos.php:1456 -msgid "[Remove any tag]" -msgstr "[Fjern en tag]" - -#: ../../mod/photos.php:1496 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (høyre)" - -#: ../../mod/photos.php:1497 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../mod/photos.php:1499 -msgid "New album name" -msgstr "Nytt albumnavn" - -#: ../../mod/photos.php:1502 -msgid "Caption" -msgstr "Overskrift" - -#: ../../mod/photos.php:1504 -msgid "Add a Tag" -msgstr "Legg til tag" - -#: ../../mod/photos.php:1508 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1517 -msgid "Private photo" -msgstr "Privat bilde" - -#: ../../mod/photos.php:1518 -msgid "Public photo" -msgstr "Offentlig bilde" - -#: ../../mod/photos.php:1540 ../../include/conversation.php:1083 -msgid "Share" -msgstr "Del" - -#: ../../mod/photos.php:1799 ../../mod/videos.php:308 -msgid "View Album" -msgstr "Vis album" - -#: ../../mod/photos.php:1808 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater" - -#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Eller - forsøkte du å laste opp en tom fil?" - -#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filstørrelsen er større enn begrensning på %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -#: ../../wall_attach.php:122 ../../wall_attach.php:133 -msgid "File upload failed." -msgstr "Opplasting av filen mislyktes." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Ingen videoer er valgt" - -#: ../../mod/videos.php:301 ../../include/text.php:1387 -msgid "View Video" -msgstr "Vis video" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Nye videoer" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Last opp nye videoer" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Dytt/dult" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "dytt, dult eller gjør andre ting med noen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Eksporter konto" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Eksporter alt" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Felles venner" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Ingen kontakter felles." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d" - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Veggbilder" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Innlegg vellykket." #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -5089,21 +4672,373 @@ msgstr "Behandling ferdig" msgid "Image uploaded successfully." msgstr "Bilde ble lastet opp." -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Programmer" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica kommunikasjonstjeneste - oppsett" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Ingen installerte programmer." +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Kunne ikke koble til database." -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Ikke noe nytt her" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Kunne ikke lage tabell." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Fjern varslinger" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Databasen til Friendica-nettstedet ditt har blitt installert." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Vennligst se filen \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Systemsjekk" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Sjekk på nytt" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Databaseforbindelse" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Databasetjenerens navn" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Database brukernavn" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Database passord" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Databasenavn" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Nettstedsadministrator sin e-postadresse" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon." + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Vennligst velg en standard tidssone for ditt nettsted" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Innstillinger for nettstedet" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH." + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "PHP kjørefil sin sti" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen." + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Kommandolinje PHP" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Fant PHP-versjon:" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP cli binærfil" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Dette er nødvendig for at meldingslevering skal virke." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Lag krypteringsnøkler" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert." + +#: ../../mod/install.php:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette." + +#: ../../mod/install.php:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe." + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner." + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php er skrivbar" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere." + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe." + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen." + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 er skrivbar" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten." + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "URL omskriving virker" + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "Feil oppstod under opprettelsen av databasetabeller." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Hva nå

" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppen er laget." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Kunne ikke lage gruppen." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Fant ikke gruppen." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenavnet er endret" + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Lagre gruppe" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Lag en gruppe med kontakter/venner." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenavn:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe fjernet." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Mislyktes med å fjerne gruppe." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Gruppebehandler" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Medlemmer" + +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "Gruppen er tom" + +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Gruppe:" + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Vis i sammenheng" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registreringen til %s er trukket tilbake" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Vennligst logg inn." #: ../../mod/match.php:12 msgid "Profile Match" @@ -5117,166 +5052,6 @@ msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din sta msgid "is interested in:" msgstr "er interessert i:" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Fjernet tag" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Fjern tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Velg en tag å fjerne:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 -msgid "Remove" -msgstr "Slett" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Hendelsens tittel og starttidspunkt er påkrevet." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Rediger hendelse" - -#: ../../mod/events.php:335 ../../include/text.php:1620 -#: ../../include/text.php:1631 -msgid "link to source" -msgstr "lenke til kilde" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Lag ny hendelse" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Forrige" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "time:minutt" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Hendelsesdetaljer" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formatet er %s %s. Startdato og tittel er påkrevet." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Hendelsen starter:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Påkrevet" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Hendelsen slutter:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Tilpass til iakttakerens tidssone" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beskrivelse:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Tittel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Fant ingen potensielle sidedelegater." - -#: ../../mod/delegate.php:124 ../../include/nav.php:167 -msgid "Delegate Page Management" -msgstr "Deleger sidebehandling" - -#: ../../mod/delegate.php:126 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på." - -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Eksisterende sidebehandlere" - -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Eksisterende sidedelegater" - -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Mulige delegater" - -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Legg til" - -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Ingen oppføringer" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakter som ikke er medlemmer av en gruppe" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Filer" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systemet er nede for vedlikehold" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Slett min konto" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv inn ditt passord for å bekrefte:" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Venneforslag sendt." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Foreslå venner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Foreslå en venn for %s" - #: ../../mod/item.php:110 msgid "Unable to locate original post." msgstr "Mislyktes med å lokalisere opprinnelig melding." @@ -5312,402 +5087,1032 @@ msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ik msgid "%s posted an update." msgstr "%s postet en oppdatering." -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} ønsker å bli din venn" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} sendte deg en melding" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} forespurte om registrering" - -#: ../../mod/ping.php:254 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommenterte %s sitt innlegg" +msgid "%1$s is currently %2$s" +msgstr "%1$s er for øyeblikket %2$s" -#: ../../mod/ping.php:259 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stemning" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Angi din stemning og fortell dine venner" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Søkeresultater for:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "legg til" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Etter kommentarer" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Sorter etter kommentardato" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Etter innlegg" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Sorter etter innleggsdato" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Innlegg som nevner eller involverer deg" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Ny" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Aktivitetsstrøm - etter dato" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Delte lenker" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Interessante lenker" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Med stjerne" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Favorittinnlegg" + +#: ../../mod/network.php:457 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} likte %s sitt innlegg" +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] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk." +msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk." -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} likte ikke %s sitt innlegg" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort." -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} er nå venner med %s" +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Kontakt:" -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} postet et innlegg" +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private meldinger til denne personen risikerer å bli offentliggjort." -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} merket %s sitt innlegg med #%s" +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Ugyldig kontakt." -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} nevnte deg i et innlegg" +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Kontaktinnstillinger i bruk." -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID kom i retur." +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Kontaktoppdatering mislyktes." -#: ../../mod/openid.php:53 +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Reparer kontaktinnstillinger" + +#: ../../mod/crepair.php:139 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke." -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Forkast" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:83 ../../include/nav.php:142 -msgid "Network" -msgstr "Nettverk" - -#: ../../mod/notifications.php:98 ../../include/nav.php:151 -msgid "Introductions" -msgstr "Introduksjoner" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Vis ignorerte forespørsler" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Skjul ignorerte forespørsler" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Beskjedtype:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Venneforslag" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "foreslått av %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Post om en ny venn" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "hvis gyldig" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Påstår å kjenne deg:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "ei" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Godkjenn som:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Venn" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Deler" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Beundrer" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Venn/kontakt-forespørsel" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Ny følgesvenn" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Ingen introduksjoner." - -#: ../../mod/notifications.php:220 ../../include/nav.php:152 -msgid "Notifications" -msgstr "Varslinger" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s likte %s sitt innlegg" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mislikte %s sitt innlegg" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s er nå venner med %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s skrev et nytt innlegg" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s kommenterte på %s sitt innlegg" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Ingen flere nettverksvarslinger." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Nettverksvarslinger" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Ingen flere personlige varsler." - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Personlige varsler" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Ingen flere hjemmevarsler." - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Hjemmevarsler" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Ugyldig e-postadresse." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Vær med oss på Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Mislyktes med å levere meldingen." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "one: %d melding sendt." -msgstr[1] "other: %d meldinger sendt." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du har ingen flere tilgjengelige invitasjoner" - -#: ../../mod/invite.php:120 -#, php-format +#: ../../mod/crepair.php:140 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 "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden." -#: ../../mod/invite.php:122 +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Gå tilbake til å endre kontakt" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Konto Kallenavn" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "Konto URL" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "Venneforespørsel URL" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "Vennebekreftelse URL" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "Endepunkt URL for beskjed" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Nytt bilde fra denne URL-en" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Fjernbetjent selv" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Speil innlegg fra denne kontakten" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten." + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Din profilside" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Dine kontakter" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Dine bilder" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Dine hendelser" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Personlige notater" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Dine personlige bilder" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Felleskapssider" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Fellesskapsprofiler" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Siste brukere" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Siste liker" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "hendelse" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Siste bilder" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Finn venner" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokal katalog" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Liknende interesser" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Inviterer venner" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Angi zoomfaktor for Earth Layers" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Angi lengdegrad (X) for Earth Layers" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Angi breddegrad (Y) for Earth Layers" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Hjelp eller @NewHere ?" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Forbindelse til tjenester" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "ikke vis" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "vis" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Vis/skjul bokser i kolonnen til høyre:" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Temainnstillinger" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Angi skriftstørrelse for innlegg og kommentarer" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Angi linjeavstand for innlegg og kommentarer" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Angi oppløsning for midtkolonnen" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Angi fargekart" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Angi zoomfaktor for Earth Layer" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Angi stil" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Angi fargekart" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Justering" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Venstre" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Midtstilt" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Fargekart" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Skriftstørrelse for innlegg" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Skriftstørrelse for tekstområder" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Angi temabredde" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Slett dette elementet?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "vis færre" + +#: ../../boot.php:1023 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted." +msgid "Update %s failed. See error logs." +msgstr "Oppdatering %s mislyktes. Se feilloggene." -#: ../../mod/invite.php:123 +#: ../../boot.php:1025 #, php-format +msgid "Update Error at %s" +msgstr "Oppdateringsfeil i %s" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Lag en ny konto" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Logg ut" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Logg inn" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Kallenavn eller epostadresse: " + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Passord: " + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Husk meg" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Eller logg inn med OpenID:" + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Glemt passordet?" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Nettstedets bruksbetingelser" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "bruksbetingelser" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Nettstedets retningslinjer for personvern" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "retningslinjer for personvern" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Profil utilgjengelig." + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Rediger profil" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Melding" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profiler" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Behandle/endre profiler" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[idag]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Fødselsdager" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Fødselsdager denne uken:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Ingen beskrivelse]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Påminnelser om hendelser" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Hendelser denne uken:" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Status meldinger og innlegg" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Profildetaljer" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Videoer" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Hendelser og kalender" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Bare du kan se dette" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Generelle egenskaper" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Flere profiler" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mulighet for å lage flere profiler" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funksjoner for å skrive innlegg" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Rik tekstredigering" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Skru på rik tekstredigering" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Forhåndsvisning av innlegg" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-nevning av forum" + +#: ../../include/features.php:33 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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i." +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet." -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer." +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Småprogrammer i sidestolpen for Nettverk" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Send invitasjoner" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Søk etter dato" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Mulighet for å velge innlegg etter datoområder" -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web." +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Gruppefilter" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du må oppgi denne invitasjonskoden: $invite_code" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Nettverksfilter" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Behandle identiteter og/eller sider" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Lagre søkeuttrykk for gjenbruk" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser" +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Nettverksfaner" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Velg en identitet å behandle:" +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Nettverk personlig fane" -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Venner av %s" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nettverk Ny fane" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Ingen venner å vise." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Legg til ny kontakt" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Nettverk Delte lenker fane" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Skriv adresse eller web-plassering" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Innleggs-/kommentarverktøy" -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Slett flere" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Finn personer" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Velg og slett flere innlegg/kommentarer på en gang" -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Endre sendte innlegg" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Koble/Følg" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Endre og korriger innlegg og kommentarer etter sending" -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Robert Morgenstein, fisking" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Merking" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Tilfeldig profil" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Mulighet til å merke eksisterende innlegg" -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Nettverk" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Innleggskategorier" -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Alle nettverk" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Legg til kategorier til dine innlegg" -#: ../../include/contact_widgets.php:103 ../../include/features.php:60 +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 msgid "Saved Folders" msgstr "Lagrede mapper" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Alt" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Kategorier" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Liker ikke innlegg" -#: ../../include/plugin.php:454 ../../include/plugin.php:456 -msgid "Click here to upgrade." -msgstr "Klikk her for oppgradere." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Mulighet til å ikke like innlegg/kommentarer" -#: ../../include/plugin.php:462 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan." +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Stjerneinnlegg" -#: ../../include/plugin.php:467 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan." +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Logget ut." + +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig." + +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "Feilmeldingen var:" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Starter:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Slutter:" + +#: ../../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 "Fødselsdag:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Alder:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Merkelapper:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/Interesser:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Musikksmak:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "TV:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Kjærlighet/romanse:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Arbeid/ansatt hos:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Skole/utdanning:" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[ikke noe emne]" + +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "på Last.fm" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "nyere" + +#: ../../include/text.php:298 +msgid "older" +msgstr "eldre" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "forrige" + +#: ../../include/text.php:305 +msgid "first" +msgstr "første" + +#: ../../include/text.php:337 +msgid "last" +msgstr "siste" + +#: ../../include/text.php:340 +msgid "next" +msgstr "neste" + +#: ../../include/text.php:853 +msgid "No contacts" +msgstr "Ingen kontakter" + +#: ../../include/text.php:862 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" + +#: ../../include/text.php:1003 +msgid "poke" +msgstr "dytt" + +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "dyttet" + +#: ../../include/text.php:1004 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1004 +msgid "pinged" +msgstr "pinget" + +#: ../../include/text.php:1005 +msgid "prod" +msgstr "dult" + +#: ../../include/text.php:1005 +msgid "prodded" +msgstr "dultet" + +#: ../../include/text.php:1006 +msgid "slap" +msgstr "klaske" + +#: ../../include/text.php:1006 +msgid "slapped" +msgstr "klasket" + +#: ../../include/text.php:1007 +msgid "finger" +msgstr "fingre" + +#: ../../include/text.php:1007 +msgid "fingered" +msgstr "fingret" + +#: ../../include/text.php:1008 +msgid "rebuff" +msgstr "avslå" + +#: ../../include/text.php:1008 +msgid "rebuffed" +msgstr "avslo" + +#: ../../include/text.php:1022 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:1023 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1024 +msgid "mellow" +msgstr "dempet" + +#: ../../include/text.php:1025 +msgid "tired" +msgstr "trøtt" + +#: ../../include/text.php:1026 +msgid "perky" +msgstr "oppkvikket" + +#: ../../include/text.php:1027 +msgid "angry" +msgstr "sint" + +#: ../../include/text.php:1028 +msgid "stupified" +msgstr "tanketom" + +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "forundret" + +#: ../../include/text.php:1030 +msgid "interested" +msgstr "interessert" + +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:1033 +msgid "alive" +msgstr "livlig" + +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "irritert" + +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "nervøs" + +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "grinete" + +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "forstyrret" + +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "frustrert" + +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "motivert" + +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "avslappet" + +#: ../../include/text.php:1041 +msgid "surprised" +msgstr "overrasket" + +#: ../../include/text.php:1209 +msgid "Monday" +msgstr "mandag" + +#: ../../include/text.php:1209 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/text.php:1209 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1209 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1209 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1209 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/text.php:1209 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/text.php:1213 +msgid "January" +msgstr "januar" + +#: ../../include/text.php:1213 +msgid "February" +msgstr "februar" + +#: ../../include/text.php:1213 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1213 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1213 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1213 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1213 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1213 +msgid "August" +msgstr "august" + +#: ../../include/text.php:1213 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1213 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1213 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1213 +msgid "December" +msgstr "desember" + +#: ../../include/text.php:1432 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1456 ../../include/text.php:1468 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1701 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1957 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:1960 +msgid "post" +msgstr "innlegg" + +#: ../../include/text.php:2128 +msgid "Item filed" +msgstr "Element arkivert" #: ../../include/api.php:263 ../../include/api.php:274 #: ../../include/api.php:375 @@ -5722,119 +6127,413 @@ msgstr "Det er ingen status tilknyttet denne id-en." msgid "There is no conversation with this id." msgstr "Det finnes ingen samtale med denne id-en." -#: ../../include/network.php:886 -msgid "view full size" -msgstr "Vis i full størrelse" +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' " -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 -msgid "Starts:" -msgstr "Starter:" +#: ../../include/items.php:1981 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%s sin bursdag" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 -msgid "Finishes:" -msgstr "Slutter:" +#: ../../include/items.php:1982 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gratulerer med dagen, %s" -#: ../../include/notifier.php:774 ../../include/delivery.php:456 +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "En ny person deler med deg hos" + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "Du har en ny følgesvenn på " + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "Ønsker du virkelig å slette dette elementet?" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "Arkiverer" + +#: ../../include/delivery.php:456 ../../include/notifier.php:774 msgid "(no subject)" msgstr "(uten emne)" -#: ../../include/notifier.php:784 ../../include/enotify.php:28 -#: ../../include/delivery.php:467 +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 msgid "noreply" msgstr "ikke svar" -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "En invitasjon er nødvendig." +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Dele varslinger fra Diaspora nettverket" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Vedlegg:" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Ugyldig OpenID URL" +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Forbindelses-URL mangler." -#: ../../include/user.php:66 ../../include/auth.php:128 +#: ../../include/follow.php:59 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig." +"This site is not configured to allow communications with other networks." +msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk." -#: ../../include/user.php:66 ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Feilmeldingen var:" +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget." -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn den nødvendige informasjonen." +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Den angitte profiladressen inneholder for lite information." -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "Vennligst bruk et kortere navn." +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Fant ingen forfatter eller navn." -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "Navnet er for kort." +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Ingen nettleser-URL passet med denne adressen." -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)." - -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." -msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet." - -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "Ugyldig e-postadresse." - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "Kan ikke bruke den e-postadressen." - -#: ../../include/user.php:131 +#: ../../include/follow.php:86 msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav." +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt." -#: ../../include/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet." +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk." -#: ../../include/user.php:147 +#: ../../include/follow.php:93 msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet." +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet." -#: ../../include/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler." +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg." -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "En feil oppstod under registreringen. Vennligst prøv igjen." +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Ikke i stand til å hente kontaktinformasjon." -#: ../../include/user.php:256 -msgid "An error occurred creating your default profile. Please try again." -msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen." +#: ../../include/follow.php:259 +msgid "following" +msgstr "følger" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Velkommen" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Vennligst last opp et profilbilde." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Velkommen tilbake" + +#: ../../include/security.php:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Mann" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Kvinne" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "For øyeblikket mann" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "For øyeblikket kvinne" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Stort sett mann" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Stort sett kvinne" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transkjønnet" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Tvekjønnet" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafroditt" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Intetkjønn" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ikke spesifisert" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Annet" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Ubestemt" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Menn" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Kvinner" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Homse" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbe" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Ingen preferanse" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Biseksuell" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autoseksuell" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Avholdende" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Jomfru" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Avvikende" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Mange" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Aseksuell" -#: ../../include/user.php:288 ../../include/user.php:292 #: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Alene" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Ensom" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Tilgjengelig" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Ikke tilgjengelig" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Er forelsket" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Betatt" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Stevnemøter/dater" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Utro" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexavhengig" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 msgid "Friends" msgstr "Venner" +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Venner med fordeler" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Tilfeldig" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Forlovet" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Gift" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Fantasiekteskap" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partnere" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Samboere" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Samboer" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Lykkelig" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Ikke på utkikk" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Partnerbytte/swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Bedratt" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separert" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Ustabil" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Skilt" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Fantasiskilt" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Enke/enkemann" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Usikker" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Det er komplisert" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Uinteressert" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Spør meg" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Feil ved dekoding av kontofil" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Feil! Kan ikke sjekke kallenavn" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Brukeren '%s' finnes allerede på denne tjeneren!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Feil ved oppretting av bruker" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Feil ved opprettelsen av brukerprofil" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt ikke importert" +msgstr[1] "%d kontakter ikke importert" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Klikk her for oppgradere." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan." + #: ../../include/conversation.php:207 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s dyttet %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:990 -msgid "poked" -msgstr "dyttet" - #: ../../include/conversation.php:291 msgid "post/item" msgstr "innlegg/element" @@ -5950,324 +6649,281 @@ msgstr "Hvor er du akkurat nå?" msgid "Delete item(s)?" msgstr "Slett element(er)?" -#: ../../include/conversation.php:1048 +#: ../../include/conversation.php:1049 msgid "Post to Email" msgstr "Innlegg til e-post" -#: ../../include/conversation.php:1104 +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Koblinger avskrudd, siden \"%s\" er påskrudd." + +#: ../../include/conversation.php:1109 msgid "permissions" msgstr "tillatelser" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1133 msgid "Post to Groups" msgstr "Innlegg til grupper" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1134 msgid "Post to Contacts" msgstr "Innlegg til kontakter" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Private post" msgstr "Privat innlegg" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Logget ut." +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Legg til ny kontakt" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Feil ved dekoding av kontofil" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Skriv adresse eller web-plassering" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Feil! Kan ikke sjekke kallenavn" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../include/contact_widgets.php:23 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Brukeren '%s' finnes allerede på denne tjeneren!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Feil ved oppretting av bruker" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Feil ved opprettelsen av brukerprofil" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt ikke importert" -msgstr[1] "%d kontakter ikke importert" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord" - -#: ../../include/text.php:304 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:306 -msgid "older" -msgstr "eldre" - -#: ../../include/text.php:311 -msgid "prev" -msgstr "forrige" - -#: ../../include/text.php:313 -msgid "first" -msgstr "første" - -#: ../../include/text.php:345 -msgid "last" -msgstr "siste" - -#: ../../include/text.php:348 -msgid "next" -msgstr "neste" - -#: ../../include/text.php:840 -msgid "No contacts" -msgstr "Ingen kontakter" - -#: ../../include/text.php:849 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "dytt" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "pinget" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "dult" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "dultet" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "klaske" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "klasket" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "avslå" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "avslo" - -#: ../../include/text.php:1009 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:1010 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1011 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:1012 -msgid "tired" -msgstr "trøtt" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitasjon tilgjengelig" +msgstr[1] "%d invitasjoner tilgjengelig" -#: ../../include/text.php:1013 -msgid "perky" -msgstr "oppkvikket" +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Finn personer" -#: ../../include/text.php:1014 -msgid "angry" -msgstr "sint" +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" -#: ../../include/text.php:1015 -msgid "stupified" -msgstr "tanketom" +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Koble/Følg" -#: ../../include/text.php:1016 -msgid "puzzled" -msgstr "forundret" +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Robert Morgenstein, fisking" -#: ../../include/text.php:1017 -msgid "interested" -msgstr "interessert" +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Tilfeldig profil" -#: ../../include/text.php:1018 -msgid "bitter" -msgstr "bitter" +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Nettverk" -#: ../../include/text.php:1019 -msgid "cheerful" -msgstr "munter" +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Alle nettverk" -#: ../../include/text.php:1020 -msgid "alive" -msgstr "livlig" +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Alt" -#: ../../include/text.php:1021 -msgid "annoyed" -msgstr "irritert" +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Kategorier" -#: ../../include/text.php:1022 -msgid "anxious" -msgstr "nervøs" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Avslutt denne økten" -#: ../../include/text.php:1023 -msgid "cranky" -msgstr "grinete" +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Logg inn" -#: ../../include/text.php:1024 -msgid "disturbed" -msgstr "forstyrret" +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Hovedside" -#: ../../include/text.php:1025 -msgid "frustrated" -msgstr "frustrert" +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Lag konto" -#: ../../include/text.php:1026 -msgid "motivated" -msgstr "motivert" +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" -#: ../../include/text.php:1027 -msgid "relaxed" -msgstr "avslappet" +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Programmer" -#: ../../include/text.php:1028 -msgid "surprised" -msgstr "overrasket" +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Tilleggsprorammer, verktøy, spill" -#: ../../include/text.php:1196 -msgid "Monday" -msgstr "mandag" +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Søk i nettstedets innhold" -#: ../../include/text.php:1196 -msgid "Tuesday" -msgstr "tirsdag" +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Samtaler på dette nettstedet" -#: ../../include/text.php:1196 -msgid "Wednesday" -msgstr "onsdag" +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Katalog" -#: ../../include/text.php:1196 -msgid "Thursday" -msgstr "torsdag" +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Personkatalog" -#: ../../include/text.php:1196 -msgid "Friday" -msgstr "fredag" +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informasjon" -#: ../../include/text.php:1196 -msgid "Saturday" -msgstr "lørdag" +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informasjon om denne Friendica-instansen." -#: ../../include/text.php:1196 -msgid "Sunday" -msgstr "søndag" +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Samtaler fra dine venner" -#: ../../include/text.php:1200 -msgid "January" -msgstr "januar" +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Nettverk tilbakestilling" -#: ../../include/text.php:1200 -msgid "February" -msgstr "februar" +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Hent Nettverk-siden uten filter" -#: ../../include/text.php:1200 -msgid "March" -msgstr "mars" +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Venneforespørsler" -#: ../../include/text.php:1200 -msgid "April" -msgstr "april" +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Se alle varslinger" -#: ../../include/text.php:1200 -msgid "May" -msgstr "mai" +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" -#: ../../include/text.php:1200 -msgid "June" -msgstr "juni" +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Privat post" -#: ../../include/text.php:1200 -msgid "July" -msgstr "juli" +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Innboks" -#: ../../include/text.php:1200 -msgid "August" -msgstr "august" +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Utboks" -#: ../../include/text.php:1200 -msgid "September" -msgstr "september" +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Behandle" -#: ../../include/text.php:1200 -msgid "October" -msgstr "oktober" +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Behandle andre sider" -#: ../../include/text.php:1200 -msgid "November" -msgstr "november" +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Kontoinnstillinger" -#: ../../include/text.php:1200 -msgid "December" -msgstr "desember" +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Behandle/endre profiler" -#: ../../include/text.php:1419 -msgid "bytes" -msgstr "bytes" +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Behandle/endre venner og kontakter" -#: ../../include/text.php:1443 ../../include/text.php:1455 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Nettstedsoppsett og konfigurasjon" -#: ../../include/text.php:1688 -msgid "Select an alternate language" -msgstr "Velg et annet språk" +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigasjon" -#: ../../include/text.php:1944 -msgid "activity" -msgstr "aktivitet" +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Nettstedskart" -#: ../../include/text.php:1947 -msgid "post" -msgstr "innlegg" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Ukjent | Ikke kategorisert" -#: ../../include/text.php:2115 -msgid "Item filed" -msgstr "Element arkivert" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blokker umiddelbart" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Grumsete, poster søppel, fremhever bare seg selv" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekjent av meg, men har ingen mening" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, antakelig harmløs" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Respektert, har min tillit" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ukentlig" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Månedlig" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora-forbindelse" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" #: ../../include/enotify.php:16 msgid "Friendica Notification" @@ -6470,9 +7126,110 @@ msgstr "Bilde:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Vennligst besøk %s for å godkjenne eller avslå forslaget." -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr "på Last.fm" +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "En invitasjon er nødvendig." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Ugyldig OpenID URL" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn den nødvendige informasjonen." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Vennligst bruk et kortere navn." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Navnet er for kort." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Ugyldig e-postadresse." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Kan ikke bruke den e-postadressen." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "En feil oppstod under registreringen. Vennligst prøv igjen." + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen." + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Synlig for alle" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s skrev følgende innlegg" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Kryptert innhold" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Innebygd innhold" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Innebygging avskrudd" #: ../../include/group.php:25 msgid "" @@ -6505,349 +7262,13 @@ msgstr "Lag en ny gruppe" msgid "Contacts not in any group" msgstr "Kontakter som ikke er i noen gruppe" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Forbindelses-URL mangler." +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "sluttet å følge" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Den angitte profiladressen inneholder for lite information." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Fant ingen forfatter eller navn." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Ingen nettleser-URL passet med denne adressen." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Ikke i stand til å hente kontaktinformasjon." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "følger" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[ikke noe emne]" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Logg inn" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Hovedside" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Lag konto" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Programmer" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Tilleggsprorammer, verktøy, spill" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Søk i nettstedets innhold" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Samtaler på dette nettstedet" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Personkatalog" - -#: ../../include/nav.php:132 -msgid "Information" -msgstr "Informasjon" - -#: ../../include/nav.php:132 -msgid "Information about this friendica instance" -msgstr "Informasjon om denne Friendica-instansen." - -#: ../../include/nav.php:142 -msgid "Conversations from your friends" -msgstr "Samtaler fra dine venner" - -#: ../../include/nav.php:143 -msgid "Network Reset" -msgstr "Nettverk tilbakestilling" - -#: ../../include/nav.php:143 -msgid "Load Network page with no filters" -msgstr "Hent Nettverk-siden uten filter" - -#: ../../include/nav.php:151 -msgid "Friend Requests" -msgstr "Venneforespørsler" - -#: ../../include/nav.php:153 -msgid "See all notifications" -msgstr "Se alle varslinger" - -#: ../../include/nav.php:154 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../include/nav.php:158 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:159 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:160 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:164 -msgid "Manage" -msgstr "Behandle" - -#: ../../include/nav.php:164 -msgid "Manage other pages" -msgstr "Behandle andre sider" - -#: ../../include/nav.php:169 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../include/nav.php:171 -msgid "Manage/Edit Profiles" -msgstr "Behandle/endre profiler" - -#: ../../include/nav.php:173 -msgid "Manage/edit friends and contacts" -msgstr "Behandle/endre venner og kontakter" - -#: ../../include/nav.php:180 -msgid "Site setup and configuration" -msgstr "Nettstedsoppsett og konfigurasjon" - -#: ../../include/nav.php:184 -msgid "Navigation" -msgstr "Navigasjon" - -#: ../../include/nav.php:184 -msgid "Site map" -msgstr "Nettstedskart" - -#: ../../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 "Fødselsdag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Alder:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Merkelapper:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/Interesser:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Musikksmak:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "TV:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Kjærlighet/romanse:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Arbeid/ansatt hos:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Skole/utdanning:" - -#: ../../include/bbcode.php:284 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:918 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:354 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s skrev følgende innlegg" - -#: ../../include/bbcode.php:453 -msgid "" -msgstr "" - -#: ../../include/bbcode.php:881 ../../include/bbcode.php:901 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/bbcode.php:932 ../../include/bbcode.php:933 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Ukjent | Ikke kategorisert" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blokker umiddelbart" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Grumsete, poster søppel, fremhever bare seg selv" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekjent av meg, men har ingen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, antakelig harmløs" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Respektert, har min tillit" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ukentlig" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Månedlig" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora-forbindelse" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Fjern kontakt" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" @@ -6922,464 +7343,6 @@ msgstr "sekunder" msgid "%1$d %2$s ago" msgstr "%1$d %2$s siden" -#: ../../include/datetime.php:472 ../../include/items.php:1964 -#, php-format -msgid "%s's birthday" -msgstr "%s sin bursdag" - -#: ../../include/datetime.php:473 ../../include/items.php:1965 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gratulerer med dagen, %s" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Generelle egenskaper" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Flere profiler" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mulighet for å lage flere profiler" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funksjoner for å skrive innlegg" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Rik tekstredigering" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Skru på rik tekstredigering" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Forhåndsvisning av innlegg" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-nevning av forum" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet." - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Småprogrammer i sidestolpen for Nettverk" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Søk etter dato" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområder" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Gruppefilter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Nettverksfilter" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for gjenbruk" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Nettverksfaner" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Nettverk Delte lenker fane" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Innleggs-/kommentarverktøy" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Slett flere" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Velg og slett flere innlegg/kommentarer på en gang" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Endre sendte innlegg" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Endre og korriger innlegg og kommentarer etter sending" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Merking" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende innlegg" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Innleggskategorier" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Legg til kategorier til dine innlegg" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Liker ikke innlegg" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å ikke like innlegg/kommentarer" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Stjerneinnlegg" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Dele varslinger fra Diaspora nettverket" - -#: ../../include/diaspora.php:2299 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Synlig for alle" - -#: ../../include/items.php:3693 -msgid "A new person is sharing with you at " -msgstr "En ny person deler med deg hos" - -#: ../../include/items.php:3693 -msgid "You have a new follower at " -msgstr "Du har en ny følgesvenn på " - -#: ../../include/items.php:4216 -msgid "Do you really want to delete this item?" -msgstr "Ønsker du virkelig å slette dette elementet?" - -#: ../../include/items.php:4443 -msgid "Archives" -msgstr "Arkiverer" - -#: ../../include/oembed.php:174 -msgid "Embedded content" -msgstr "Innebygd innhold" - -#: ../../include/oembed.php:183 -msgid "Embedding disabled" -msgstr "Innebygging avskrudd" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Velkommen" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Vennligst last opp et profilbilde." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Velkommen tilbake" - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending." - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Mann" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Kvinne" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "For øyeblikket mann" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "For øyeblikket kvinne" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Stort sett mann" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Stort sett kvinne" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transkjønnet" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Tvekjønnet" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafroditt" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Intetkjønn" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ikke spesifisert" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Annet" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Ubestemt" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Menn" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Kvinner" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Homse" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbe" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Ingen preferanse" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Biseksuell" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autoseksuell" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Avholdende" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Jomfru" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Avvikende" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Mange" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Aseksuell" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Alene" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Ensom" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Tilgjengelig" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Er forelsket" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Betatt" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Stevnemøter/dater" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Utro" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexavhengig" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Venner med fordeler" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Tilfeldig" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Forlovet" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Gift" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Fantasiekteskap" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partnere" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Samboere" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Samboer" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Lykkelig" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Ikke på utkikk" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Partnerbytte/swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Bedratt" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separert" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Ustabil" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Skilt" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Fantasiskilt" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Enke/enkemann" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Usikker" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Det er komplisert" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Uinteressert" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Spør meg" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "sluttet å følge" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Fjern kontakt" - -#: ../../include/dba.php:45 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' " +#: ../../include/network.php:886 +msgid "view full size" +msgstr "Vis i full størrelse" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index 235dfff9f4..5f6041b6b2 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -58,340 +58,125 @@ $a->strings["Page not found."] = "Fant ikke siden."; $a->strings["Permission denied"] = "Tilgang nektet"; $a->strings["Permission denied."] = "Ingen tilgang."; $a->strings["toggle mobile"] = "Velg mobilvisning"; -$a->strings["Home"] = "Hjem"; -$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Din profilside"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Your photos"] = "Dine bilder"; -$a->strings["Events"] = "Hendelser"; -$a->strings["Your events"] = "Dine hendelser"; -$a->strings["Personal notes"] = "Personlige notater"; -$a->strings["Your personal photos"] = "Dine personlige bilder"; -$a->strings["Community"] = "Fellesskap"; -$a->strings["don't show"] = "ikke vis"; -$a->strings["show"] = "vis"; -$a->strings["Theme settings"] = "Temainnstillinger"; -$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; -$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer"; -$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen"; -$a->strings["Contacts"] = "Kontakter"; -$a->strings["Your contacts"] = "Dine kontakter"; -$a->strings["Community Pages"] = "Felleskapssider"; -$a->strings["Community Profiles"] = "Fellesskapsprofiler"; -$a->strings["Last users"] = "Siste brukere"; -$a->strings["Last likes"] = "Siste liker"; -$a->strings["event"] = "hendelse"; -$a->strings["status"] = "status"; -$a->strings["photo"] = "bilde"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s"; -$a->strings["Last photos"] = "Siste bilder"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Find Friends"] = "Finn venner"; -$a->strings["Local Directory"] = "Lokal katalog"; -$a->strings["Global Directory"] = "Global katalog"; -$a->strings["Similar Interests"] = "Liknende interesser"; -$a->strings["Friend Suggestions"] = "Venneforslag"; -$a->strings["Invite Friends"] = "Inviterer venner"; -$a->strings["Settings"] = "Innstillinger"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers"; -$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers"; -$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?"; -$a->strings["Connect Services"] = "Forbindelse til tjenester"; -$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:"; -$a->strings["Set color scheme"] = "Angi fargekart"; -$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer"; -$a->strings["Alignment"] = "Justering"; -$a->strings["Left"] = "Venstre"; -$a->strings["Center"] = "Midtstilt"; -$a->strings["Color scheme"] = "Fargekart"; -$a->strings["Posts font size"] = "Skriftstørrelse for innlegg"; -$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder"; -$a->strings["Set colour scheme"] = "Angi fargekart"; -$a->strings["default"] = "standard"; -$a->strings["Background Image"] = "Bakgrunnsbilde"; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL-en til et bilde (for eksempel fra ditt fotoalbum) som skal brukes som bakgrunnsbilde"; -$a->strings["Background Color"] = "Bakgrunnsfarge"; -$a->strings["HEX value for the background color. Don't include the #"] = "HEX-verdi til bakgrunnsfargen. Ikke ta med #"; -$a->strings["font size"] = "skriftstørrelse"; -$a->strings["base font size for your interface"] = "standard skriftstørrelse i ditt brukergrensesnitt"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"; -$a->strings["Set theme width"] = "Angi temabredde"; -$a->strings["Set style"] = "Angi stil"; -$a->strings["Delete this item?"] = "Slett dette elementet?"; -$a->strings["show fewer"] = "vis færre"; -$a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene."; -$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s"; -$a->strings["Create a New Account"] = "Lag en ny konto"; -$a->strings["Register"] = "Registrer"; -$a->strings["Logout"] = "Logg ut"; -$a->strings["Login"] = "Logg inn"; -$a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: "; -$a->strings["Password: "] = "Passord: "; -$a->strings["Remember me"] = "Husk meg"; -$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:"; -$a->strings["Forgot your password?"] = "Glemt passordet?"; -$a->strings["Password Reset"] = "Passord tilbakestilling"; -$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser"; -$a->strings["terms of service"] = "bruksbetingelser"; -$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern"; -$a->strings["privacy policy"] = "retningslinjer for personvern"; -$a->strings["Requested account is not available."] = "Profil utilgjengelig."; -$a->strings["Requested profile is not available."] = "Profil utilgjengelig."; -$a->strings["Edit profile"] = "Rediger profil"; -$a->strings["Connect"] = "Forbindelse"; -$a->strings["Message"] = "Melding"; -$a->strings["Profiles"] = "Profiler"; -$a->strings["Manage/edit profiles"] = "Behandle/endre profiler"; -$a->strings["Change profile photo"] = "Endre profilbilde"; -$a->strings["Create New Profile"] = "Lag ny profil"; -$a->strings["Profile Image"] = "Profilbilde"; -$a->strings["visible to everybody"] = "synlig for alle"; -$a->strings["Edit visibility"] = "Endre synlighet"; -$a->strings["Location:"] = "Plassering:"; -$a->strings["Gender:"] = "Kjønn:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Hjemmeside:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[idag]"; -$a->strings["Birthday Reminders"] = "Fødselsdager"; -$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:"; -$a->strings["[No description]"] = "[Ingen beskrivelse]"; -$a->strings["Event Reminders"] = "Påminnelser om hendelser"; -$a->strings["Events this week:"] = "Hendelser denne uken:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg"; -$a->strings["Profile Details"] = "Profildetaljer"; -$a->strings["Photo Albums"] = "Fotoalbum"; -$a->strings["Videos"] = "Videoer"; -$a->strings["Events and Calendar"] = "Hendelser og kalender"; -$a->strings["Personal Notes"] = "Personlige notater"; -$a->strings["Only You Can See This"] = "Bare du kan se dette"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s"; -$a->strings["Mood"] = "Stemning"; -$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner"; +$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; +$a->strings["Contact not found."] = "Kontakt ikke funnet."; +$a->strings["Friend suggestion sent."] = "Venneforslag sendt."; +$a->strings["Suggest Friends"] = "Foreslå venner"; +$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; +$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn."; +$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted", + 1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted", +); +$a->strings["Introduction complete."] = "Introduksjon ferdig."; +$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil."; +$a->strings["Profile unavailable."] = "Profil utilgjengelig."; +$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag."; +$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer."; +$a->strings["Invalid locator"] = "Ugyldig stedsangivelse"; +$a->strings["Invalid email address."] = "Ugyldig e-postadresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."; +$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."; +$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her."; +$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s."; +$a->strings["Invalid profile URL."] = "Ugyldig profil-URL."; +$a->strings["Disallowed profile URL."] = "Underkjent profil-URL."; +$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten."; +$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt."; +$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen."; +$a->strings["Hide this contact"] = "Skjul denne kontakten"; +$a->strings["Welcome home %s."] = "Velkommen hjem %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."; +$a->strings["Confirm"] = "Bekreft"; +$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]"; $a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt."; -$a->strings["Item not found."] = "Enheten ble ikke funnet."; -$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset."; -$a->strings["Item has been removed."] = "Elementet har blitt slettet."; -$a->strings["Access denied."] = "Tilgang avslått."; -$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon"; -$a->strings["running at web location"] = "kjører på web-plassering"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet."; -$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"; -$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:"; -$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s"; -$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."; -$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."; -$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):"; -$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Koble til som en e-postfølgesvenn (Kommer snart)"; +$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."] = "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag."; +$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Vennligst svar på følgende:"; +$a->strings["Does %s know you?"] = "Kjenner %s deg?"; $a->strings["Yes"] = "Ja"; $a->strings["No"] = "Nei"; -$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon."; -$a->strings["Your invitation ID: "] = "Din invitasjons-ID:"; -$a->strings["Registration"] = "Registrering"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):"; -$a->strings["Your Email Address: "] = "Din e-postadresse:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@\$sitename\"."; -$a->strings["Choose a nickname: "] = "Velg et kallenavn:"; -$a->strings["Import"] = "Importer"; -$a->strings["Import your profile to this friendica instance"] = "Importer din profil til denne Friendica-instansen."; -$a->strings["Profile not found."] = "Fant ikke profilen."; -$a->strings["Contact not found."] = "Kontakt ikke funnet."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."; -$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; -$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; -$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. "; -$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:"; -$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen."; -$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake."; -$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s"; -$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."; -$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."; -$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."; -$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system."; -$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system."; -$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s"; -$a->strings["Authorize application connection"] = "Tillat forbindelse til program"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"; -$a->strings["No valid account found."] = "Fant ingen gyldig konto."; -$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."; -$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."; -$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt."; -$a->strings["Your new password is"] = "Ditt nye passord er"; -$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter"; -$a->strings["click here to login"] = "klikk her for å logge inn"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn."; -$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s"; -$a->strings["Forgot your Password?"] = "Glemte du passordet?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."; -$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:"; -$a->strings["Reset"] = "Tilbakestill"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."; -$a->strings["No recipient selected."] = "Ingen mottaker valgt."; -$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted."; -$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes."; -$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes."; -$a->strings["Message sent."] = "Melding sendt."; -$a->strings["No recipient."] = "Ingen mottaker."; -$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -$a->strings["Send Private Message"] = "Send privat melding"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."; -$a->strings["To:"] = "Til:"; -$a->strings["Subject:"] = "Emne:"; -$a->strings["Your message:"] = "Din melding:"; -$a->strings["Upload photo"] = "Last opp bilde"; -$a->strings["Insert web link"] = "Sett inn web-adresse"; -$a->strings["Welcome to Friendica"] = "Velkommen til Friendica"; -$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer"; -$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."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."; -$a->strings["Getting Started"] = "Komme igang"; -$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang"; -$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."] = "På Hurtigstart-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."; -$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger"; -$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."] = "På siden Innstillinger - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."; -$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."; -$a->strings["Upload Profile Photo"] = "Last opp profilbilde"; -$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."; -$a->strings["Edit Your Profile"] = "Endre profilen din"; -$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."] = "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."; -$a->strings["Profile Keywords"] = "Profilnøkkelord"; -$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."; -$a->strings["Connecting"] = "Kobling"; -$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."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Hvis dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."; -$a->strings["Importing Emails"] = "Importere e-post"; -$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"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"; -$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden"; -$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."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen Legg til ny kontakt"; -$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog"; -$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."; -$a->strings["Finding New People"] = "Finn nye personer"; -$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."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."; -$a->strings["Groups"] = "Grupper"; -$a->strings["Group Your Contacts"] = "Kontaktgrupper"; -$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."; -$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?"; -$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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."; -$a->strings["Getting Help"] = "Få hjelp"; -$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; -$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?"; +$a->strings["Add a personal note:"] = "Legg til en personlig melding:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."; +$a->strings["Your Identity Address:"] = "Din identitetsadresse:"; +$a->strings["Submit Request"] = "Send forespørsel"; $a->strings["Cancel"] = "Avbryt"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; -$a->strings["Ignore/Hide"] = "Ignorér/Skjul"; -$a->strings["Search Results For:"] = "Søkeresultater for:"; -$a->strings["Remove term"] = "Fjern uttrykk"; -$a->strings["Saved Searches"] = "Lagrede søk"; -$a->strings["add"] = "legg til"; -$a->strings["Commented Order"] = "Etter kommentarer"; -$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato"; -$a->strings["Posted Order"] = "Etter innlegg"; -$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +$a->strings["View Video"] = "Vis video"; +$a->strings["Requested profile is not available."] = "Profil utilgjengelig."; +$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset."; +$a->strings["Tips for New Members"] = "Tips til nye medlemmer"; +$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +$a->strings["Discard"] = "Forkast"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Nettverk"; $a->strings["Personal"] = "Personlig"; -$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; -$a->strings["New"] = "Ny"; -$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; -$a->strings["Shared Links"] = "Delte lenker"; -$a->strings["Interesting Links"] = "Interessante lenker"; -$a->strings["Starred"] = "Med stjerne"; -$a->strings["Favourite Posts"] = "Favorittinnlegg"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.", - 1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort."; -$a->strings["No such group"] = "Gruppen finnes ikke"; -$a->strings["Group is empty"] = "Gruppen er tom"; -$a->strings["Group: "] = "Gruppe:"; -$a->strings["Contact: "] = "Kontakt:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort."; -$a->strings["Invalid contact."] = "Ugyldig kontakt."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett"; -$a->strings["Could not connect to database."] = "Kunne ikke koble til database."; -$a->strings["Could not create table."] = "Kunne ikke lage tabell."; -$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\"."; -$a->strings["System check"] = "Systemsjekk"; -$a->strings["Next"] = "Neste"; -$a->strings["Check again"] = "Sjekk på nytt"; -$a->strings["Database connection"] = "Databaseforbindelse"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."; -$a->strings["Database Server Name"] = "Databasetjenerens navn"; -$a->strings["Database Login Name"] = "Database brukernavn"; -$a->strings["Database Login Password"] = "Database passord"; -$a->strings["Database Name"] = "Databasenavn"; -$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."; -$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -$a->strings["Site settings"] = "Innstillinger for nettstedet"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens 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'"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'"; -$a->strings["PHP executable path"] = "PHP kjørefil sin sti"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."; -$a->strings["Command line PHP"] = "Kommandolinje PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"; -$a->strings["Found PHP version: "] = "Fant PHP-versjon:"; -$a->strings["PHP cli binary"] = "PHP cli binærfil"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; -$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; -$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler"; -$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."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert."; -$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."; -$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."; -$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."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."; -$a->strings["Url rewrite is working"] = "URL omskriving virker"; -$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."; -$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; -$a->strings["

What next

"] = "

Hva nå

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."; +$a->strings["Home"] = "Hjem"; +$a->strings["Introductions"] = "Introduksjoner"; +$a->strings["Messages"] = "Meldinger"; +$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler"; +$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler"; +$a->strings["Notification type: "] = "Beskjedtype:"; +$a->strings["Friend Suggestion"] = "Venneforslag"; +$a->strings["suggested by %s"] = "foreslått av %s"; +$a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre"; +$a->strings["Post a new friend activity"] = "Post om en ny venn"; +$a->strings["if applicable"] = "hvis gyldig"; +$a->strings["Approve"] = "Godkjenn"; +$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:"; +$a->strings["yes"] = "ja"; +$a->strings["no"] = "ei"; +$a->strings["Approve as: "] = "Godkjenn som:"; +$a->strings["Friend"] = "Venn"; +$a->strings["Sharer"] = "Deler"; +$a->strings["Fan/Admirer"] = "Fan/Beundrer"; +$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel"; +$a->strings["New Follower"] = "Ny følgesvenn"; +$a->strings["No introductions."] = "Ingen introduksjoner."; +$a->strings["Notifications"] = "Varslinger"; +$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg"; +$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg"; +$a->strings["%s is now friends with %s"] = "%s er nå venner med %s"; +$a->strings["%s created a new post"] = "%s skrev et nytt innlegg"; +$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg"; +$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger."; +$a->strings["Network Notifications"] = "Nettverksvarslinger"; +$a->strings["No more system notifications."] = "Ingen flere systemvarsler."; +$a->strings["System Notifications"] = "Systemvarsler"; +$a->strings["No more personal notifications."] = "Ingen flere personlige varsler."; +$a->strings["Personal Notifications"] = "Personlige varsler"; +$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler."; +$a->strings["Home Notifications"] = "Hjemmevarsler"; +$a->strings["photo"] = "bilde"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."; +$a->strings["Login failed."] = "Innlogging mislyktes."; +$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:"; +$a->strings["Source input: "] = "Kilde-input:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (rå HTML):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb:"; +$a->strings["bb2md: "] = "bb2md:"; +$a->strings["bb2md2html: "] = "bb2md2html:"; +$a->strings["bb2dia2bb: "] = "bb2dia2bb:"; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb:"; +$a->strings["Source input (Diaspora format): "] = "Diaspora-formatert kilde-input:"; +$a->strings["diaspora2bb: "] = "diaspora2bb:"; $a->strings["Theme settings updated."] = "Temainnstillinger oppdatert."; $a->strings["Site"] = "Nettsted"; $a->strings["Users"] = "Brukere"; @@ -402,6 +187,7 @@ $a->strings["Logs"] = "Logger"; $a->strings["Admin"] = "Administrator"; $a->strings["Plugin Features"] = "Utvidelse - egenskaper"; $a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse"; +$a->strings["Item not found."] = "Enheten ble ikke funnet."; $a->strings["Normal Account"] = "Vanlig konto"; $a->strings["Soapbox Account"] = "Talerstol-konto"; $a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto"; @@ -432,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Ingen SSL-retni $a->strings["Force all links to use SSL"] = "Tving alle lenker til å bruke SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)"; $a->strings["Save Settings"] = "Lagre innstillinger"; +$a->strings["Registration"] = "Registrering"; $a->strings["File upload"] = "Last opp fil"; $a->strings["Policies"] = "Retningslinjer"; $a->strings["Advanced"] = "Avansert"; @@ -540,6 +327,7 @@ $a->strings["Failed Updates"] = "Mislykkede oppdateringer"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status."; $a->strings["Mark success (if update was manually applied)"] = "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"; $a->strings["Attempt to execute this update step automatically"] = "Forsøk å utføre dette oppdateringspunktet automatisk"; +$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s"; $a->strings["Registration successful. Email send to user"] = "Vellykket registrering. E-post er sendt til bruker"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s bruker blokkert/ikke blokkert", @@ -560,7 +348,6 @@ $a->strings["Request date"] = "Forespørselsdato"; $a->strings["Name"] = "Navn"; $a->strings["Email"] = "E-post"; $a->strings["No registrations."] = "Ingen registreringer."; -$a->strings["Approve"] = "Godkjenn"; $a->strings["Deny"] = "Nekt"; $a->strings["Block"] = "Blokker"; $a->strings["Unblock"] = "Ikke blokker"; @@ -583,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert."; $a->strings["Disable"] = "Skru av"; $a->strings["Enable"] = "Aktiver"; $a->strings["Toggle"] = "Veksle"; +$a->strings["Settings"] = "Innstillinger"; $a->strings["Author: "] = "Forfatter:"; $a->strings["Maintainer: "] = "Vedlikeholder:"; $a->strings["No themes found."] = "Ingen temaer funnet."; @@ -601,11 +389,36 @@ $a->strings["FTP Host"] = "FTP-tjener"; $a->strings["FTP Path"] = "FTP-sti"; $a->strings["FTP User"] = "FTP-bruker"; $a->strings["FTP Password"] = "FTP-passord"; -$a->strings["Search"] = "Søk"; -$a->strings["No results."] = "Fant ikke noe."; -$a->strings["Tips for New Members"] = "Tips til nye medlemmer"; -$a->strings["link"] = "lenke"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; +$a->strings["New Message"] = "Ny melding"; +$a->strings["No recipient selected."] = "Ingen mottaker valgt."; +$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; +$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes."; +$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes."; +$a->strings["Message sent."] = "Melding sendt."; +$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?"; +$a->strings["Message deleted."] = "Melding slettet."; +$a->strings["Conversation removed."] = "Samtale slettet."; +$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; +$a->strings["Send Private Message"] = "Send privat melding"; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Emne:"; +$a->strings["Your message:"] = "Din melding:"; +$a->strings["Upload photo"] = "Last opp bilde"; +$a->strings["Insert web link"] = "Sett inn web-adresse"; +$a->strings["No messages."] = "Ingen meldinger."; +$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s"; +$a->strings["You and %s"] = "Du og %s"; +$a->strings["%s and You"] = "%s og du"; +$a->strings["Delete conversation"] = "Slett samtale"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d melding", + 1 => "%d meldinger", +); +$a->strings["Message not available."] = "Melding utilgjengelig."; +$a->strings["Delete message"] = "Slett melding"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside."; +$a->strings["Send Reply"] = "Send svar"; $a->strings["Item not found"] = "Fant ikke elementet"; $a->strings["Edit post"] = "Endre innlegg"; $a->strings["upload photo"] = "last opp bilde"; @@ -626,95 +439,169 @@ $a->strings["Public post"] = "Offentlig innlegg"; $a->strings["Set title"] = "Lagre tittel"; $a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com"; -$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; -$a->strings["Item was not found."] = "Elementet ble ikke funnet."; -$a->strings["Account approved."] = "Konto godkjent."; -$a->strings["Registration revoked for %s"] = "Registreringen til %s er trukket tilbake"; -$a->strings["Please login."] = "Vennligst logg inn."; -$a->strings["Find on this site"] = "Finn på dette nettstedet"; -$a->strings["Finding: "] = "Fant:"; -$a->strings["Site Directory"] = "Stedets katalog"; -$a->strings["Find"] = "Finn"; -$a->strings["Age: "] = "Alder:"; -$a->strings["Gender: "] = "Kjønn:"; -$a->strings["About:"] = "Om:"; -$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; -$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk."; -$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes."; -$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden."; -$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt"; -$a->strings["Account Nickname"] = "Konto Kallenavn"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn"; -$a->strings["Account URL"] = "Konto URL"; -$a->strings["Friend Request URL"] = "Venneforespørsel URL"; -$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL"; -$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed"; -$a->strings["Poll/Feed URL"] = "Poll/Feed URL"; -$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en"; -$a->strings["Remote Self"] = "Fjernbetjent selv"; -$a->strings["Mirror postings from this contact"] = "Speil innlegg fra denne kontakten"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten."; -$a->strings["Move account"] = "Flytt konto"; -$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora"; -$a->strings["Account file"] = "Kontofil"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\""; +$a->strings["Profile not found."] = "Fant ikke profilen."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."; +$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; +$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; +$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. "; +$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:"; +$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen."; +$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake."; +$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s"; +$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."; +$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."; +$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."; +$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system."; +$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system."; +$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s"; +$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Rediger hendelse"; +$a->strings["link to source"] = "lenke til kilde"; +$a->strings["Events"] = "Hendelser"; +$a->strings["Create New Event"] = "Lag ny hendelse"; +$a->strings["Previous"] = "Forrige"; +$a->strings["Next"] = "Neste"; +$a->strings["hour:minute"] = "time:minutt"; +$a->strings["Event details"] = "Hendelsesdetaljer"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er %s %s. Startdato og tittel er påkrevet."; +$a->strings["Event Starts:"] = "Hendelsen starter:"; +$a->strings["Required"] = "Påkrevet"; +$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant"; +$a->strings["Event Finishes:"] = "Hendelsen slutter:"; +$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone"; +$a->strings["Description:"] = "Beskrivelse:"; +$a->strings["Location:"] = "Plassering:"; +$a->strings["Title:"] = "Tittel:"; +$a->strings["Share this event"] = "Del denne hendelsen"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Filer"; +$a->strings["Welcome to %s"] = "Velkommen til %s"; $a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."; $a->strings["Visible to:"] = "Synlig for:"; -$a->strings["Save"] = "Lagre"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."; +$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted."; +$a->strings["No recipient."] = "Ingen mottaker."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."; +$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]"; +$a->strings["Edit contact"] = "Endre kontakt"; +$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe"; +$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon"; +$a->strings["running at web location"] = "kjører på web-plassering"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet."; +$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"; +$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:"; +$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper"; +$a->strings["Remove My Account"] = "Slett min konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."; +$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:"; +$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d"; +$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet."; +$a->strings["Wall Photos"] = "Veggbilder"; +$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde."; +$a->strings["Authorize application connection"] = "Tillat forbindelse til program"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; +$a->strings["Photo Albums"] = "Fotoalbum"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Upload New Photos"] = "Last opp nye bilder"; +$a->strings["everybody"] = "alle"; +$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Album not found."] = "Album ble ikke funnet."; +$a->strings["Delete Album"] = "Slett album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?"; +$a->strings["Delete Photo"] = "Slett bilde"; +$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s"; +$a->strings["a photo"] = "et bilde"; +$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på "; +$a->strings["Image file is empty."] = "Bildefilen er tom."; +$a->strings["No photos selected"] = "Ingen bilder er valgt"; +$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring."; +$a->strings["Upload Photos"] = "Last opp bilder"; +$a->strings["New album name: "] = "Nytt albumnavn:"; +$a->strings["or existing album name: "] = "eller eksisterende albumnavn:"; +$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen"; +$a->strings["Permissions"] = "Tillatelser"; +$a->strings["Show to Groups"] = "Vis til grupper"; +$a->strings["Show to Contacts"] = "Vis til kontakter"; +$a->strings["Private Photo"] = "Privat bilde"; +$a->strings["Public Photo"] = "Offentlig bilde"; +$a->strings["Edit Album"] = "Endre album"; +$a->strings["Show Newest First"] = "Vis nyeste først"; +$a->strings["Show Oldest First"] = "Vis eldste først"; +$a->strings["View Photo"] = "Vis bilde"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset."; +$a->strings["Photo not available"] = "Bilde ikke tilgjengelig"; +$a->strings["View photo"] = "Vis foto"; +$a->strings["Edit photo"] = "Endre bilde"; +$a->strings["Use as profile photo"] = "Bruk som profilbilde"; +$a->strings["View Full Size"] = "Vis i full størrelse"; +$a->strings["Tags: "] = "Tagger:"; +$a->strings["[Remove any tag]"] = "[Fjern en tag]"; +$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)"; +$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +$a->strings["New album name"] = "Nytt albumnavn"; +$a->strings["Caption"] = "Overskrift"; +$a->strings["Add a Tag"] = "Legg til tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Privat bilde"; +$a->strings["Public photo"] = "Offentlig bilde"; +$a->strings["Share"] = "Del"; +$a->strings["View Album"] = "Vis album"; +$a->strings["Recent Photos"] = "Nye bilder"; +$a->strings["No profile"] = "Ingen profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."; +$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; +$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."; +$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):"; +$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?"; +$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon."; +$a->strings["Your invitation ID: "] = "Din invitasjons-ID:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):"; +$a->strings["Your Email Address: "] = "Din e-postadresse:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@\$sitename\"."; +$a->strings["Choose a nickname: "] = "Velg et kallenavn:"; +$a->strings["Register"] = "Registrer"; +$a->strings["Import"] = "Importer"; +$a->strings["Import your profile to this friendica instance"] = "Importer din profil til denne Friendica-instansen."; +$a->strings["No valid account found."] = "Fant ingen gyldig konto."; +$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."; +$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."; +$a->strings["Password Reset"] = "Passord tilbakestilling"; +$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt."; +$a->strings["Your new password is"] = "Ditt nye passord er"; +$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter"; +$a->strings["click here to login"] = "klikk her for å logge inn"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn."; +$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s"; +$a->strings["Forgot your Password?"] = "Glemte du passordet?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."; +$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:"; +$a->strings["Reset"] = "Tilbakestill"; +$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold"; +$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; +$a->strings["Item was not found."] = "Elementet ble ikke funnet."; +$a->strings["Applications"] = "Programmer"; +$a->strings["No installed applications."] = "Ingen installerte programmer."; $a->strings["Help:"] = "Hjelp:"; $a->strings["Help"] = "Hjelp"; -$a->strings["No profile"] = "Ingen profil"; -$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn."; -$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted", - 1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted", -); -$a->strings["Introduction complete."] = "Introduksjon ferdig."; -$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil."; -$a->strings["Profile unavailable."] = "Profil utilgjengelig."; -$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag."; -$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer."; -$a->strings["Invalid locator"] = "Ugyldig stedsangivelse"; -$a->strings["Invalid email address."] = "Ugyldig e-postadresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."; -$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."; -$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her."; -$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s."; -$a->strings["Invalid profile URL."] = "Ugyldig profil-URL."; -$a->strings["Disallowed profile URL."] = "Underkjent profil-URL."; -$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten."; -$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt."; -$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen."; -$a->strings["Hide this contact"] = "Skjul denne kontakten"; -$a->strings["Welcome home %s."] = "Velkommen hjem %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."; -$a->strings["Confirm"] = "Bekreft"; -$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Koble til som en e-postfølgesvenn (Kommer snart)"; -$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."] = "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag."; -$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Vennligst svar på følgende:"; -$a->strings["Does %s know you?"] = "Kjenner %s deg?"; -$a->strings["Add a personal note:"] = "Legg til en personlig melding:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."; -$a->strings["Your Identity Address:"] = "Din identitetsadresse:"; -$a->strings["Submit Request"] = "Send forespørsel"; -$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; -$a->strings["View in context"] = "Vis i sammenheng"; $a->strings["%d contact edited."] = array( 0 => "%d kontakt redigert.", 1 => "%d kontakter redigert", @@ -745,7 +632,6 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Vis alle kontakter"; $a->strings["Toggle Blocked status"] = "Veksle blokkeringsstatus"; $a->strings["Unignore"] = "Fjern ignorering"; -$a->strings["Ignore"] = "Ignorer"; $a->strings["Toggle Ignored status"] = "Veksle ingnorertstatus"; $a->strings["Unarchive"] = "Hent ut av arkivet"; $a->strings["Archive"] = "Arkiver"; @@ -758,7 +644,6 @@ $a->strings["Profile Visibility"] = "Profilens synlighet"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."; $a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater"; $a->strings["Edit contact notes"] = "Endre kontaktnotater"; -$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]"; $a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt"; $a->strings["Ignore contact"] = "Ignorer kontakt"; $a->strings["Repair URL settings"] = "Reparer URL-innstillinger"; @@ -769,7 +654,6 @@ $a->strings["Update public posts"] = "Oppdater offentlige innlegg"; $a->strings["Currently blocked"] = "Blokkert nå"; $a->strings["Currently ignored"] = "Ignorert nå"; $a->strings["Currently archived"] = "For øyeblikket arkivert"; -$a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre"; $a->strings["Replies/likes to your public posts may still be visible"] = "Svar/liker til dine offentlige innlegg kan fortsatt være synlige"; $a->strings["Notification for new posts"] = "Varsling om nye innlegg"; $a->strings["Send a notification of every new post of this contact"] = "Send et varsel ved hvert nytt innlegg fra denne kontakten"; @@ -791,10 +675,90 @@ $a->strings["Only show hidden contacts"] = "Bare vis skjulte kontakter"; $a->strings["Mutual Friendship"] = "Gjensidig vennskap"; $a->strings["is a fan of yours"] = "er en tilhenger av deg"; $a->strings["you are a fan of"] = "du er en tilhenger av"; -$a->strings["Edit contact"] = "Endre kontakt"; +$a->strings["Contacts"] = "Kontakter"; $a->strings["Search your contacts"] = "Søk i dine kontakter"; +$a->strings["Finding: "] = "Fant:"; +$a->strings["Find"] = "Finn"; $a->strings["Update"] = "Oppdater"; -$a->strings["everybody"] = "alle"; +$a->strings["No videos selected"] = "Ingen videoer er valgt"; +$a->strings["Recent Videos"] = "Nye videoer"; +$a->strings["Upload New Videos"] = "Last opp nye videoer"; +$a->strings["Common Friends"] = "Felles venner"; +$a->strings["No contacts in common."] = "Ingen kontakter felles."; +$a->strings["Contact added"] = "Kontakt lagt til "; +$a->strings["Move account"] = "Flytt konto"; +$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora"; +$a->strings["Account file"] = "Kontofil"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; +$a->strings["Friends of %s"] = "Venner av %s"; +$a->strings["No friends to display."] = "Ingen venner å vise."; +$a->strings["Tag removed"] = "Fjernet tag"; +$a->strings["Remove Item Tag"] = "Fjern tag"; +$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; +$a->strings["Remove"] = "Slett"; +$a->strings["Welcome to Friendica"] = "Velkommen til Friendica"; +$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer"; +$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."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."; +$a->strings["Getting Started"] = "Komme igang"; +$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang"; +$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."] = "På Hurtigstart-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."; +$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger"; +$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."] = "På siden Innstillinger - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."; +$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Last opp profilbilde"; +$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."; +$a->strings["Edit Your Profile"] = "Endre profilen din"; +$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."] = "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."; +$a->strings["Profile Keywords"] = "Profilnøkkelord"; +$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."; +$a->strings["Connecting"] = "Kobling"; +$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."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Hvis dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."; +$a->strings["Importing Emails"] = "Importere e-post"; +$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"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"; +$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden"; +$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."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen Legg til ny kontakt"; +$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog"; +$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."; +$a->strings["Finding New People"] = "Finn nye personer"; +$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."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."; +$a->strings["Groups"] = "Grupper"; +$a->strings["Group Your Contacts"] = "Kontaktgrupper"; +$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."; +$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?"; +$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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."; +$a->strings["Getting Help"] = "Få hjelp"; +$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; +$a->strings["Remove term"] = "Fjern uttrykk"; +$a->strings["Saved Searches"] = "Lagrede søk"; +$a->strings["Search"] = "Søk"; +$a->strings["No results."] = "Fant ikke noe."; +$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; +$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse."; +$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."; +$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen."; +$a->strings["%d message sent."] = array( + 0 => "one: %d melding sendt.", + 1 => "other: %d meldinger sendt.", +); +$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner"; +$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."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."; +$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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."; +$a->strings["Send invitations"] = "Send invitasjoner"; +$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"; $a->strings["Additional features"] = "Tilleggsfunksjoner"; $a->strings["Display"] = "Vis"; $a->strings["Social Networks"] = "Sosiale nettverk"; @@ -866,6 +830,8 @@ $a->strings["Number of items to display per page when viewed from mobile device: $a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner"; $a->strings["Don't show notices"] = "Ikke vis varsler"; $a->strings["Infinite scroll"] = "Uendelig rulling"; +$a->strings["User Types"] = "Brukerkategorier"; +$a->strings["Community Types"] = "Felleskapskategorier"; $a->strings["Normal Account Page"] = "Vanlig konto-side"; $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; $a->strings["Soapbox Page"] = "Talerstol-side"; @@ -917,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:" $a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)"; $a->strings["Default Post Permissions"] = "Standardtillatelser ved posting"; $a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -$a->strings["Show to Groups"] = "Vis til grupper"; -$a->strings["Show to Contacts"] = "Vis til kontakter"; $a->strings["Default Private Post"] = "Standard privat innlegg"; $a->strings["Default Public Post"] = "Standard offentlig innlegg"; $a->strings["Default Permissions for New Posts"] = "Standard tillatelser for nye innlegg"; @@ -942,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "En $a->strings["Relocate"] = "Omplasser"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Hvis du har flyttet denne profilen fra en annen tjener, og noen av dine kontakter ikke mottar dine oppdateringer, prøv å trykke denne knappen."; $a->strings["Resend relocate message to contacts"] = "Send omplasseringsmelding på nytt til kontakter"; +$a->strings["Item has been removed."] = "Elementet har blitt slettet."; +$a->strings["People Search"] = "Personsøk"; +$a->strings["No matches"] = "Ingen treff"; $a->strings["Profile deleted."] = "Profil slettet."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Ny profil opprettet."; @@ -1010,57 +977,79 @@ $a->strings["Love/romance"] = "Kjærlighet/romanse"; $a->strings["Work/employment"] = "Arbeid/ansatt hos"; $a->strings["School/education"] = "Skole/utdanning"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dette er din offentlige profil.
Den kan ses av alle på Internet."; +$a->strings["Age: "] = "Alder:"; $a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler"; -$a->strings["Group created."] = "Gruppen er laget."; -$a->strings["Could not create group."] = "Kunne ikke lage gruppen."; -$a->strings["Group not found."] = "Fant ikke gruppen."; -$a->strings["Group name changed."] = "Gruppenavnet er endret"; -$a->strings["Save Group"] = "Lagre gruppe"; -$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner."; -$a->strings["Group Name: "] = "Gruppenavn:"; -$a->strings["Group removed."] = "Gruppe fjernet."; -$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe."; -$a->strings["Group Editor"] = "Gruppebehandler"; -$a->strings["Members"] = "Medlemmer"; -$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:"; -$a->strings["Source input: "] = "Kilde-input:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (rå HTML):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb:"; -$a->strings["bb2md: "] = "bb2md:"; -$a->strings["bb2md2html: "] = "bb2md2html:"; -$a->strings["bb2dia2bb: "] = "bb2dia2bb:"; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb:"; -$a->strings["Source input (Diaspora format): "] = "Diaspora-formatert kilde-input:"; -$a->strings["diaspora2bb: "] = "diaspora2bb:"; +$a->strings["Change profile photo"] = "Endre profilbilde"; +$a->strings["Create New Profile"] = "Lag ny profil"; +$a->strings["Profile Image"] = "Profilbilde"; +$a->strings["visible to everybody"] = "synlig for alle"; +$a->strings["Edit visibility"] = "Endre synlighet"; +$a->strings["link"] = "lenke"; +$a->strings["Export account"] = "Eksporter konto"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."; +$a->strings["Export all"] = "Eksporter alt"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"; +$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn"; +$a->strings["{0} sent you a message"] = "{0} sendte deg en melding"; +$a->strings["{0} requested registration"] = "{0} forespurte om registrering"; +$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg"; +$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg"; +$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg"; +$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s"; +$a->strings["{0} posted"] = "{0} postet et innlegg"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg"; +$a->strings["Nothing new here"] = "Ikke noe nytt her"; +$a->strings["Clear notifications"] = "Fjern varslinger"; $a->strings["Not available."] = "Ikke tilgjengelig."; -$a->strings["Contact added"] = "Kontakt lagt til "; -$a->strings["No more system notifications."] = "Ingen flere systemvarsler."; -$a->strings["System Notifications"] = "Systemvarsler"; -$a->strings["New Message"] = "Ny melding"; -$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; -$a->strings["Messages"] = "Meldinger"; -$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?"; -$a->strings["Message deleted."] = "Melding slettet."; -$a->strings["Conversation removed."] = "Samtale slettet."; -$a->strings["No messages."] = "Ingen meldinger."; -$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s"; -$a->strings["You and %s"] = "Du og %s"; -$a->strings["%s and You"] = "%s og du"; -$a->strings["Delete conversation"] = "Slett samtale"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d melding", - 1 => "%d meldinger", -); -$a->strings["Message not available."] = "Melding utilgjengelig."; -$a->strings["Delete message"] = "Slett melding"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside."; -$a->strings["Send Reply"] = "Send svar"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; -$a->strings["Post successful."] = "Innlegg vellykket."; +$a->strings["Community"] = "Fellesskap"; +$a->strings["Save to Folder:"] = "Lagre til mappe:"; +$a->strings["- select -"] = "- velg -"; +$a->strings["Save"] = "Lagre"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater"; +$a->strings["Or - did you try to upload an empty file?"] = "Eller - forsøkte du å laste opp en tom fil?"; +$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; +$a->strings["File upload failed."] = "Opplasting av filen mislyktes."; +$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator."; +$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet"; +$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +$a->strings["Visible To"] = "Synlig for"; +$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)"; +$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?"; +$a->strings["Friend Suggestions"] = "Venneforslag"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; +$a->strings["Connect"] = "Forbindelse"; +$a->strings["Ignore/Hide"] = "Ignorér/Skjul"; +$a->strings["Access denied."] = "Tilgang avslått."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s"; +$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"; +$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; +$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater."; +$a->strings["Delegate Page Management"] = "Deleger sidebehandling"; +$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."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."; +$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere"; +$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater"; +$a->strings["Potential Delegates"] = "Mulige delegater"; +$a->strings["Add"] = "Legg til"; +$a->strings["No entries."] = "Ingen oppføringer"; +$a->strings["No contacts."] = "Ingen kontakter."; +$a->strings["View Contacts"] = "Vis kontakter"; +$a->strings["Personal Notes"] = "Personlige notater"; +$a->strings["Poke/Prod"] = "Dytt/dult"; +$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen"; +$a->strings["Recipient"] = "Mottaker"; +$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +$a->strings["Make this post private"] = "Gjør dette innlegget privat"; +$a->strings["Global Directory"] = "Global katalog"; +$a->strings["Find on this site"] = "Finn på dette nettstedet"; +$a->strings["Site Directory"] = "Stedets katalog"; +$a->strings["Gender: "] = "Kjønn:"; +$a->strings["Gender:"] = "Kjønn:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Hjemmeside:"; +$a->strings["About:"] = "Om:"; +$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Tidskonvertering"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner."; @@ -1068,84 +1057,7 @@ $a->strings["UTC time: %s"] = "UTC tid: %s"; $a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s"; $a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s"; $a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:"; -$a->strings["Save to Folder:"] = "Lagre til mappe:"; -$a->strings["- select -"] = "- velg -"; -$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator."; -$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet"; -$a->strings["Visible To"] = "Synlig for"; -$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)"; -$a->strings["No contacts."] = "Ingen kontakter."; -$a->strings["View Contacts"] = "Vis kontakter"; -$a->strings["People Search"] = "Personsøk"; -$a->strings["No matches"] = "Ingen treff"; -$a->strings["Upload New Photos"] = "Last opp nye bilder"; -$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig"; -$a->strings["Album not found."] = "Album ble ikke funnet."; -$a->strings["Delete Album"] = "Slett album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?"; -$a->strings["Delete Photo"] = "Slett bilde"; -$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s"; -$a->strings["a photo"] = "et bilde"; -$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på "; -$a->strings["Image file is empty."] = "Bildefilen er tom."; -$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet."; -$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde."; -$a->strings["No photos selected"] = "Ingen bilder er valgt"; -$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring."; -$a->strings["Upload Photos"] = "Last opp bilder"; -$a->strings["New album name: "] = "Nytt albumnavn:"; -$a->strings["or existing album name: "] = "eller eksisterende albumnavn:"; -$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen"; -$a->strings["Permissions"] = "Tillatelser"; -$a->strings["Private Photo"] = "Privat bilde"; -$a->strings["Public Photo"] = "Offentlig bilde"; -$a->strings["Edit Album"] = "Endre album"; -$a->strings["Show Newest First"] = "Vis nyeste først"; -$a->strings["Show Oldest First"] = "Vis eldste først"; -$a->strings["View Photo"] = "Vis bilde"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset."; -$a->strings["Photo not available"] = "Bilde ikke tilgjengelig"; -$a->strings["View photo"] = "Vis foto"; -$a->strings["Edit photo"] = "Endre bilde"; -$a->strings["Use as profile photo"] = "Bruk som profilbilde"; -$a->strings["View Full Size"] = "Vis i full størrelse"; -$a->strings["Tags: "] = "Tagger:"; -$a->strings["[Remove any tag]"] = "[Fjern en tag]"; -$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)"; -$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -$a->strings["New album name"] = "Nytt albumnavn"; -$a->strings["Caption"] = "Overskrift"; -$a->strings["Add a Tag"] = "Legg til tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Privat bilde"; -$a->strings["Public photo"] = "Offentlig bilde"; -$a->strings["Share"] = "Del"; -$a->strings["View Album"] = "Vis album"; -$a->strings["Recent Photos"] = "Nye bilder"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Beklager, din opplasting er kanskje større enn PHP-konfigurasjonen tillater"; -$a->strings["Or - did you try to upload an empty file?"] = "Eller - forsøkte du å laste opp en tom fil?"; -$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; -$a->strings["File upload failed."] = "Opplasting av filen mislyktes."; -$a->strings["No videos selected"] = "Ingen videoer er valgt"; -$a->strings["View Video"] = "Vis video"; -$a->strings["Recent Videos"] = "Nye videoer"; -$a->strings["Upload New Videos"] = "Last opp nye videoer"; -$a->strings["Poke/Prod"] = "Dytt/dult"; -$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen"; -$a->strings["Recipient"] = "Mottaker"; -$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -$a->strings["Make this post private"] = "Gjør dette innlegget privat"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; -$a->strings["Export account"] = "Eksporter konto"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."; -$a->strings["Export all"] = "Eksporter alt"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"; -$a->strings["Common Friends"] = "Felles venner"; -$a->strings["No contacts in common."] = "Ingen kontakter felles."; -$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d"; -$a->strings["Wall Photos"] = "Veggbilder"; +$a->strings["Post successful."] = "Innlegg vellykket."; $a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes."; $a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."; @@ -1159,51 +1071,89 @@ $a->strings["Crop Image"] = "Beskjær bilde"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning."; $a->strings["Done Editing"] = "Behandling ferdig"; $a->strings["Image uploaded successfully."] = "Bilde ble lastet opp."; -$a->strings["Applications"] = "Programmer"; -$a->strings["No installed applications."] = "Ingen installerte programmer."; -$a->strings["Nothing new here"] = "Ikke noe nytt her"; -$a->strings["Clear notifications"] = "Fjern varslinger"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett"; +$a->strings["Could not connect to database."] = "Kunne ikke koble til database."; +$a->strings["Could not create table."] = "Kunne ikke lage tabell."; +$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\"."; +$a->strings["System check"] = "Systemsjekk"; +$a->strings["Check again"] = "Sjekk på nytt"; +$a->strings["Database connection"] = "Databaseforbindelse"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."; +$a->strings["Database Server Name"] = "Databasetjenerens navn"; +$a->strings["Database Login Name"] = "Database brukernavn"; +$a->strings["Database Login Password"] = "Database passord"; +$a->strings["Database Name"] = "Databasenavn"; +$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."; +$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; +$a->strings["Site settings"] = "Innstillinger for nettstedet"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens 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'"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'"; +$a->strings["PHP executable path"] = "PHP kjørefil sin sti"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."; +$a->strings["Command line PHP"] = "Kommandolinje PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"; +$a->strings["Found PHP version: "] = "Fant PHP-versjon:"; +$a->strings["PHP cli binary"] = "PHP cli binærfil"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; +$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; +$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler"; +$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."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert."; +$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."; +$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."; +$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."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."; +$a->strings["Url rewrite is working"] = "URL omskriving virker"; +$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."; +$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; +$a->strings["

What next

"] = "

Hva nå

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."; +$a->strings["Group created."] = "Gruppen er laget."; +$a->strings["Could not create group."] = "Kunne ikke lage gruppen."; +$a->strings["Group not found."] = "Fant ikke gruppen."; +$a->strings["Group name changed."] = "Gruppenavnet er endret"; +$a->strings["Save Group"] = "Lagre gruppe"; +$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner."; +$a->strings["Group Name: "] = "Gruppenavn:"; +$a->strings["Group removed."] = "Gruppe fjernet."; +$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe."; +$a->strings["Group Editor"] = "Gruppebehandler"; +$a->strings["Members"] = "Medlemmer"; +$a->strings["No such group"] = "Gruppen finnes ikke"; +$a->strings["Group is empty"] = "Gruppen er tom"; +$a->strings["Group: "] = "Gruppe:"; +$a->strings["View in context"] = "Vis i sammenheng"; +$a->strings["Account approved."] = "Konto godkjent."; +$a->strings["Registration revoked for %s"] = "Registreringen til %s er trukket tilbake"; +$a->strings["Please login."] = "Vennligst logg inn."; $a->strings["Profile Match"] = "Profiltreff"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."; $a->strings["is interested in:"] = "er interessert i:"; -$a->strings["Tag removed"] = "Fjernet tag"; -$a->strings["Remove Item Tag"] = "Fjern tag"; -$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; -$a->strings["Remove"] = "Slett"; -$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Rediger hendelse"; -$a->strings["link to source"] = "lenke til kilde"; -$a->strings["Create New Event"] = "Lag ny hendelse"; -$a->strings["Previous"] = "Forrige"; -$a->strings["hour:minute"] = "time:minutt"; -$a->strings["Event details"] = "Hendelsesdetaljer"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er %s %s. Startdato og tittel er påkrevet."; -$a->strings["Event Starts:"] = "Hendelsen starter:"; -$a->strings["Required"] = "Påkrevet"; -$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant"; -$a->strings["Event Finishes:"] = "Hendelsen slutter:"; -$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone"; -$a->strings["Description:"] = "Beskrivelse:"; -$a->strings["Title:"] = "Tittel:"; -$a->strings["Share this event"] = "Del denne hendelsen"; -$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater."; -$a->strings["Delegate Page Management"] = "Deleger sidebehandling"; -$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."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."; -$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere"; -$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater"; -$a->strings["Potential Delegates"] = "Mulige delegater"; -$a->strings["Add"] = "Legg til"; -$a->strings["No entries."] = "Ingen oppføringer"; -$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe"; -$a->strings["Files"] = "Filer"; -$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold"; -$a->strings["Remove My Account"] = "Slett min konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."; -$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:"; -$a->strings["Friend suggestion sent."] = "Venneforslag sendt."; -$a->strings["Suggest Friends"] = "Foreslå venner"; -$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; $a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding."; $a->strings["Empty post discarded."] = "Tom melding forkastet."; $a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret."; @@ -1211,171 +1161,187 @@ $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"] = "Du kan besøke dem online på %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."; $a->strings["%s posted an update."] = "%s postet en oppdatering."; -$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn"; -$a->strings["{0} sent you a message"] = "{0} sendte deg en melding"; -$a->strings["{0} requested registration"] = "{0} forespurte om registrering"; -$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg"; -$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg"; -$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg"; -$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s"; -$a->strings["{0} posted"] = "{0} postet et innlegg"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."; -$a->strings["Login failed."] = "Innlogging mislyktes."; -$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -$a->strings["Discard"] = "Forkast"; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Nettverk"; -$a->strings["Introductions"] = "Introduksjoner"; -$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler"; -$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler"; -$a->strings["Notification type: "] = "Beskjedtype:"; -$a->strings["Friend Suggestion"] = "Venneforslag"; -$a->strings["suggested by %s"] = "foreslått av %s"; -$a->strings["Post a new friend activity"] = "Post om en ny venn"; -$a->strings["if applicable"] = "hvis gyldig"; -$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:"; -$a->strings["yes"] = "ja"; -$a->strings["no"] = "ei"; -$a->strings["Approve as: "] = "Godkjenn som:"; -$a->strings["Friend"] = "Venn"; -$a->strings["Sharer"] = "Deler"; -$a->strings["Fan/Admirer"] = "Fan/Beundrer"; -$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel"; -$a->strings["New Follower"] = "Ny følgesvenn"; -$a->strings["No introductions."] = "Ingen introduksjoner."; -$a->strings["Notifications"] = "Varslinger"; -$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg"; -$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg"; -$a->strings["%s is now friends with %s"] = "%s er nå venner med %s"; -$a->strings["%s created a new post"] = "%s skrev et nytt innlegg"; -$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg"; -$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger."; -$a->strings["Network Notifications"] = "Nettverksvarslinger"; -$a->strings["No more personal notifications."] = "Ingen flere personlige varsler."; -$a->strings["Personal Notifications"] = "Personlige varsler"; -$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler."; -$a->strings["Home Notifications"] = "Hjemmevarsler"; -$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; -$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse."; -$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."; -$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen."; -$a->strings["%d message sent."] = array( - 0 => "one: %d melding sendt.", - 1 => "other: %d meldinger sendt.", +$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s"; +$a->strings["Mood"] = "Stemning"; +$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner"; +$a->strings["Search Results For:"] = "Søkeresultater for:"; +$a->strings["add"] = "legg til"; +$a->strings["Commented Order"] = "Etter kommentarer"; +$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato"; +$a->strings["Posted Order"] = "Etter innlegg"; +$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; +$a->strings["New"] = "Ny"; +$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; +$a->strings["Shared Links"] = "Delte lenker"; +$a->strings["Interesting Links"] = "Interessante lenker"; +$a->strings["Starred"] = "Med stjerne"; +$a->strings["Favourite Posts"] = "Favorittinnlegg"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.", + 1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.", ); -$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner"; -$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."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."; -$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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."; -$a->strings["Send invitations"] = "Send invitasjoner"; -$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"; -$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"; -$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; -$a->strings["Welcome to %s"] = "Velkommen til %s"; -$a->strings["Friends of %s"] = "Venner av %s"; -$a->strings["No friends to display."] = "Ingen venner å vise."; -$a->strings["Add New Contact"] = "Legg til ny kontakt"; -$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -$a->strings["Find People"] = "Finn personer"; -$a->strings["Enter name or interest"] = "Skriv navn eller interesse"; -$a->strings["Connect/Follow"] = "Koble/Følg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking"; -$a->strings["Random Profile"] = "Tilfeldig profil"; -$a->strings["Networks"] = "Nettverk"; -$a->strings["All Networks"] = "Alle nettverk"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort."; +$a->strings["Contact: "] = "Kontakt:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort."; +$a->strings["Invalid contact."] = "Ugyldig kontakt."; +$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk."; +$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes."; +$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden."; +$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt"; +$a->strings["Account Nickname"] = "Konto Kallenavn"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn"; +$a->strings["Account URL"] = "Konto URL"; +$a->strings["Friend Request URL"] = "Venneforespørsel URL"; +$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL"; +$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL"; +$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en"; +$a->strings["Remote Self"] = "Fjernbetjent selv"; +$a->strings["Mirror postings from this contact"] = "Speil innlegg fra denne kontakten"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten."; +$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +$a->strings["Your profile page"] = "Din profilside"; +$a->strings["Your contacts"] = "Dine kontakter"; +$a->strings["Your photos"] = "Dine bilder"; +$a->strings["Your events"] = "Dine hendelser"; +$a->strings["Personal notes"] = "Personlige notater"; +$a->strings["Your personal photos"] = "Dine personlige bilder"; +$a->strings["Community Pages"] = "Felleskapssider"; +$a->strings["Community Profiles"] = "Fellesskapsprofiler"; +$a->strings["Last users"] = "Siste brukere"; +$a->strings["Last likes"] = "Siste liker"; +$a->strings["event"] = "hendelse"; +$a->strings["Last photos"] = "Siste bilder"; +$a->strings["Find Friends"] = "Finn venner"; +$a->strings["Local Directory"] = "Lokal katalog"; +$a->strings["Similar Interests"] = "Liknende interesser"; +$a->strings["Invite Friends"] = "Inviterer venner"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?"; +$a->strings["Connect Services"] = "Forbindelse til tjenester"; +$a->strings["don't show"] = "ikke vis"; +$a->strings["show"] = "vis"; +$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:"; +$a->strings["Theme settings"] = "Temainnstillinger"; +$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; +$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer"; +$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen"; +$a->strings["Set color scheme"] = "Angi fargekart"; +$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer"; +$a->strings["Set style"] = "Angi stil"; +$a->strings["Set colour scheme"] = "Angi fargekart"; +$a->strings["Alignment"] = "Justering"; +$a->strings["Left"] = "Venstre"; +$a->strings["Center"] = "Midtstilt"; +$a->strings["Color scheme"] = "Fargekart"; +$a->strings["Posts font size"] = "Skriftstørrelse for innlegg"; +$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"; +$a->strings["Set theme width"] = "Angi temabredde"; +$a->strings["Delete this item?"] = "Slett dette elementet?"; +$a->strings["show fewer"] = "vis færre"; +$a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene."; +$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s"; +$a->strings["Create a New Account"] = "Lag en ny konto"; +$a->strings["Logout"] = "Logg ut"; +$a->strings["Login"] = "Logg inn"; +$a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: "; +$a->strings["Password: "] = "Passord: "; +$a->strings["Remember me"] = "Husk meg"; +$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:"; +$a->strings["Forgot your password?"] = "Glemt passordet?"; +$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser"; +$a->strings["terms of service"] = "bruksbetingelser"; +$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern"; +$a->strings["privacy policy"] = "retningslinjer for personvern"; +$a->strings["Requested account is not available."] = "Profil utilgjengelig."; +$a->strings["Edit profile"] = "Rediger profil"; +$a->strings["Message"] = "Melding"; +$a->strings["Profiles"] = "Profiler"; +$a->strings["Manage/edit profiles"] = "Behandle/endre profiler"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[idag]"; +$a->strings["Birthday Reminders"] = "Fødselsdager"; +$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:"; +$a->strings["[No description]"] = "[Ingen beskrivelse]"; +$a->strings["Event Reminders"] = "Påminnelser om hendelser"; +$a->strings["Events this week:"] = "Hendelser denne uken:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg"; +$a->strings["Profile Details"] = "Profildetaljer"; +$a->strings["Videos"] = "Videoer"; +$a->strings["Events and Calendar"] = "Hendelser og kalender"; +$a->strings["Only You Can See This"] = "Bare du kan se dette"; +$a->strings["General Features"] = "Generelle egenskaper"; +$a->strings["Multiple Profiles"] = "Flere profiler"; +$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler"; +$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg"; +$a->strings["Richtext Editor"] = "Rik tekstredigering"; +$a->strings["Enable richtext editor"] = "Skru på rik tekstredigering"; +$a->strings["Post Preview"] = "Forhåndsvisning av innlegg"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering"; +$a->strings["Auto-mention Forums"] = "Auto-nevning av forum"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet."; +$a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk"; +$a->strings["Search by Date"] = "Søk etter dato"; +$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder"; +$a->strings["Group Filter"] = "Gruppefilter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen"; +$a->strings["Network Filter"] = "Nettverksfilter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk"; +$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk"; +$a->strings["Network Tabs"] = "Nettverksfaner"; +$a->strings["Network Personal Tab"] = "Nettverk personlig fane"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i"; +$a->strings["Network New Tab"] = "Nettverk Ny fane"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)"; +$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem"; +$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy"; +$a->strings["Multiple Deletion"] = "Slett flere"; +$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang"; +$a->strings["Edit Sent Posts"] = "Endre sendte innlegg"; +$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending"; +$a->strings["Tagging"] = "Merking"; +$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg"; +$a->strings["Post Categories"] = "Innleggskategorier"; +$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg"; $a->strings["Saved Folders"] = "Lagrede mapper"; -$a->strings["Everything"] = "Alt"; -$a->strings["Categories"] = "Kategorier"; -$a->strings["Click here to upgrade."] = "Klikk her for oppgradere."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan."; -$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."; -$a->strings["User not found."] = "Brukeren ble ikke funnet."; -$a->strings["There is no status with this id."] = "Det er ingen status tilknyttet denne id-en."; -$a->strings["There is no conversation with this id."] = "Det finnes ingen samtale med denne id-en."; -$a->strings["view full size"] = "Vis i full størrelse"; -$a->strings["Starts:"] = "Starter:"; -$a->strings["Finishes:"] = "Slutter:"; -$a->strings["(no subject)"] = "(uten emne)"; -$a->strings["noreply"] = "ikke svar"; -$a->strings["An invitation is required."] = "En invitasjon er nødvendig."; -$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; -$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL"; +$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; +$a->strings["Dislike Posts"] = "Liker ikke innlegg"; +$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer"; +$a->strings["Star Posts"] = "Stjerneinnlegg"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator"; +$a->strings["Logged out."] = "Logget ut."; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig."; $a->strings["The error message was:"] = "Feilmeldingen var:"; -$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen."; -$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn."; -$a->strings["Name too short."] = "Navnet er for kort."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."; -$a->strings["Not a valid email address."] = "Ugyldig e-postadresse."; -$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."; -$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."; -$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen."; -$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."; -$a->strings["Friends"] = "Venner"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s"; -$a->strings["poked"] = "dyttet"; -$a->strings["post/item"] = "innlegg/element"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt"; -$a->strings["remove"] = "slett"; -$a->strings["Delete Selected Items"] = "Slette valgte elementer"; -$a->strings["Follow Thread"] = "Følg tråd"; -$a->strings["View Status"] = "Vis status"; -$a->strings["View Profile"] = "Vis profil"; -$a->strings["View Photos"] = "Vis bilder"; -$a->strings["Network Posts"] = "Nettverksinnlegg"; -$a->strings["Edit Contact"] = "Endre kontakt"; -$a->strings["Send PM"] = "Send privat melding"; -$a->strings["Poke"] = "Dytt"; -$a->strings["%s likes this."] = "%s liker dette."; -$a->strings["%s doesn't like this."] = "%s liker ikke dette."; -$a->strings["%2\$d people like this"] = "%2\$d personer liker dette"; -$a->strings["%2\$d people don't like this"] = "%2\$d personer liker ikke dette"; -$a->strings["and"] = "og"; -$a->strings[", and %d other people"] = ", og %d andre personer"; -$a->strings["%s like this."] = "%s liker dette."; -$a->strings["%s don't like this."] = "%s liker ikke dette."; -$a->strings["Visible to everybody"] = "Synlig for alle"; -$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:"; -$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:"; -$a->strings["Tag term:"] = "Merkelapp begrep:"; -$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -$a->strings["Delete item(s)?"] = "Slett element(er)?"; -$a->strings["Post to Email"] = "Innlegg til e-post"; -$a->strings["permissions"] = "tillatelser"; -$a->strings["Post to Groups"] = "Innlegg til grupper"; -$a->strings["Post to Contacts"] = "Innlegg til kontakter"; -$a->strings["Private post"] = "Privat innlegg"; -$a->strings["Logged out."] = "Logget ut."; -$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"; -$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn"; -$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!"; -$a->strings["User creation error"] = "Feil ved oppretting av bruker"; -$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil"; -$a->strings["%d contact not imported"] = array( - 0 => "%d kontakt ikke importert", - 1 => "%d kontakter ikke importert", -); -$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"; +$a->strings["Starts:"] = "Starter:"; +$a->strings["Finishes:"] = "Slutter:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Fødselsdag:"; +$a->strings["Age:"] = "Alder:"; +$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; +$a->strings["Tags:"] = "Merkelapper:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; +$a->strings["Musical interests:"] = "Musikksmak:"; +$a->strings["Books, literature:"] = "Bøker, litteratur:"; +$a->strings["Television:"] = "TV:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; +$a->strings["Love/Romance:"] = "Kjærlighet/romanse:"; +$a->strings["Work/employment:"] = "Arbeid/ansatt hos:"; +$a->strings["School/education:"] = "Skole/utdanning:"; +$a->strings["[no subject]"] = "[ikke noe emne]"; +$a->strings[" on Last.fm"] = "på Last.fm"; $a->strings["newer"] = "nyere"; $a->strings["older"] = "eldre"; $a->strings["prev"] = "forrige"; @@ -1388,6 +1354,7 @@ $a->strings["%d Contact"] = array( 1 => "%d kontakter", ); $a->strings["poke"] = "dytt"; +$a->strings["poked"] = "dyttet"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "pinget"; $a->strings["prod"] = "dult"; @@ -1439,10 +1406,211 @@ $a->strings["November"] = "november"; $a->strings["December"] = "desember"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Klikk for å åpne/lukke"; +$a->strings["default"] = "standard"; $a->strings["Select an alternate language"] = "Velg et annet språk"; $a->strings["activity"] = "aktivitet"; $a->strings["post"] = "innlegg"; $a->strings["Item filed"] = "Element arkivert"; +$a->strings["User not found."] = "Brukeren ble ikke funnet."; +$a->strings["There is no status with this id."] = "Det er ingen status tilknyttet denne id-en."; +$a->strings["There is no conversation with this id."] = "Det finnes ingen samtale med denne id-en."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' "; +$a->strings["%s's birthday"] = "%s sin bursdag"; +$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s"; +$a->strings["A new person is sharing with you at "] = "En ny person deler med deg hos"; +$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på "; +$a->strings["Do you really want to delete this item?"] = "Ønsker du virkelig å slette dette elementet?"; +$a->strings["Archives"] = "Arkiverer"; +$a->strings["(no subject)"] = "(uten emne)"; +$a->strings["noreply"] = "ikke svar"; +$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket"; +$a->strings["Attachments:"] = "Vedlegg:"; +$a->strings["Connect URL missing."] = "Forbindelses-URL mangler."; +$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."; +$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information."; +$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn."; +$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."; +$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."; +$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon."; +$a->strings["following"] = "følger"; +$a->strings["Welcome "] = "Velkommen"; +$a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde."; +$a->strings["Welcome back "] = "Velkommen tilbake"; +$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."] = "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."; +$a->strings["Male"] = "Mann"; +$a->strings["Female"] = "Kvinne"; +$a->strings["Currently Male"] = "For øyeblikket mann"; +$a->strings["Currently Female"] = "For øyeblikket kvinne"; +$a->strings["Mostly Male"] = "Stort sett mann"; +$a->strings["Mostly Female"] = "Stort sett kvinne"; +$a->strings["Transgender"] = "Transkjønnet"; +$a->strings["Intersex"] = "Tvekjønnet"; +$a->strings["Transsexual"] = "Transseksuell"; +$a->strings["Hermaphrodite"] = "Hermafroditt"; +$a->strings["Neuter"] = "Intetkjønn"; +$a->strings["Non-specific"] = "Ikke spesifisert"; +$a->strings["Other"] = "Annet"; +$a->strings["Undecided"] = "Ubestemt"; +$a->strings["Males"] = "Menn"; +$a->strings["Females"] = "Kvinner"; +$a->strings["Gay"] = "Homse"; +$a->strings["Lesbian"] = "Lesbe"; +$a->strings["No Preference"] = "Ingen preferanse"; +$a->strings["Bisexual"] = "Biseksuell"; +$a->strings["Autosexual"] = "Autoseksuell"; +$a->strings["Abstinent"] = "Avholdende"; +$a->strings["Virgin"] = "Jomfru"; +$a->strings["Deviant"] = "Avvikende"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Mange"; +$a->strings["Nonsexual"] = "Aseksuell"; +$a->strings["Single"] = "Alene"; +$a->strings["Lonely"] = "Ensom"; +$a->strings["Available"] = "Tilgjengelig"; +$a->strings["Unavailable"] = "Ikke tilgjengelig"; +$a->strings["Has crush"] = "Er forelsket"; +$a->strings["Infatuated"] = "Betatt"; +$a->strings["Dating"] = "Stevnemøter/dater"; +$a->strings["Unfaithful"] = "Utro"; +$a->strings["Sex Addict"] = "Sexavhengig"; +$a->strings["Friends"] = "Venner"; +$a->strings["Friends/Benefits"] = "Venner med fordeler"; +$a->strings["Casual"] = "Tilfeldig"; +$a->strings["Engaged"] = "Forlovet"; +$a->strings["Married"] = "Gift"; +$a->strings["Imaginarily married"] = "Fantasiekteskap"; +$a->strings["Partners"] = "Partnere"; +$a->strings["Cohabiting"] = "Samboere"; +$a->strings["Common law"] = "Samboer"; +$a->strings["Happy"] = "Lykkelig"; +$a->strings["Not looking"] = "Ikke på utkikk"; +$a->strings["Swinger"] = "Partnerbytte/swinger"; +$a->strings["Betrayed"] = "Bedratt"; +$a->strings["Separated"] = "Separert"; +$a->strings["Unstable"] = "Ustabil"; +$a->strings["Divorced"] = "Skilt"; +$a->strings["Imaginarily divorced"] = "Fantasiskilt"; +$a->strings["Widowed"] = "Enke/enkemann"; +$a->strings["Uncertain"] = "Usikker"; +$a->strings["It's complicated"] = "Det er komplisert"; +$a->strings["Don't care"] = "Uinteressert"; +$a->strings["Ask me"] = "Spør meg"; +$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"; +$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn"; +$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!"; +$a->strings["User creation error"] = "Feil ved oppretting av bruker"; +$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil"; +$a->strings["%d contact not imported"] = array( + 0 => "%d kontakt ikke importert", + 1 => "%d kontakter ikke importert", +); +$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"; +$a->strings["Click here to upgrade."] = "Klikk her for oppgradere."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan."; +$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s"; +$a->strings["post/item"] = "innlegg/element"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt"; +$a->strings["remove"] = "slett"; +$a->strings["Delete Selected Items"] = "Slette valgte elementer"; +$a->strings["Follow Thread"] = "Følg tråd"; +$a->strings["View Status"] = "Vis status"; +$a->strings["View Profile"] = "Vis profil"; +$a->strings["View Photos"] = "Vis bilder"; +$a->strings["Network Posts"] = "Nettverksinnlegg"; +$a->strings["Edit Contact"] = "Endre kontakt"; +$a->strings["Send PM"] = "Send privat melding"; +$a->strings["Poke"] = "Dytt"; +$a->strings["%s likes this."] = "%s liker dette."; +$a->strings["%s doesn't like this."] = "%s liker ikke dette."; +$a->strings["%2\$d people like this"] = "%2\$d personer liker dette"; +$a->strings["%2\$d people don't like this"] = "%2\$d personer liker ikke dette"; +$a->strings["and"] = "og"; +$a->strings[", and %d other people"] = ", og %d andre personer"; +$a->strings["%s like this."] = "%s liker dette."; +$a->strings["%s don't like this."] = "%s liker ikke dette."; +$a->strings["Visible to everybody"] = "Synlig for alle"; +$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:"; +$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:"; +$a->strings["Tag term:"] = "Merkelapp begrep:"; +$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +$a->strings["Delete item(s)?"] = "Slett element(er)?"; +$a->strings["Post to Email"] = "Innlegg til e-post"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Koblinger avskrudd, siden \"%s\" er påskrudd."; +$a->strings["permissions"] = "tillatelser"; +$a->strings["Post to Groups"] = "Innlegg til grupper"; +$a->strings["Post to Contacts"] = "Innlegg til kontakter"; +$a->strings["Private post"] = "Privat innlegg"; +$a->strings["Add New Contact"] = "Legg til ny kontakt"; +$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +$a->strings["Find People"] = "Finn personer"; +$a->strings["Enter name or interest"] = "Skriv navn eller interesse"; +$a->strings["Connect/Follow"] = "Koble/Følg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking"; +$a->strings["Random Profile"] = "Tilfeldig profil"; +$a->strings["Networks"] = "Nettverk"; +$a->strings["All Networks"] = "Alle nettverk"; +$a->strings["Everything"] = "Alt"; +$a->strings["Categories"] = "Kategorier"; +$a->strings["End this session"] = "Avslutt denne økten"; +$a->strings["Sign in"] = "Logg inn"; +$a->strings["Home Page"] = "Hovedside"; +$a->strings["Create an account"] = "Lag konto"; +$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; +$a->strings["Apps"] = "Programmer"; +$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill"; +$a->strings["Search site content"] = "Søk i nettstedets innhold"; +$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = "Personkatalog"; +$a->strings["Information"] = "Informasjon"; +$a->strings["Information about this friendica instance"] = "Informasjon om denne Friendica-instansen."; +$a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; +$a->strings["Network Reset"] = "Nettverk tilbakestilling"; +$a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter"; +$a->strings["Friend Requests"] = "Venneforespørsler"; +$a->strings["See all notifications"] = "Se alle varslinger"; +$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +$a->strings["Private mail"] = "Privat post"; +$a->strings["Inbox"] = "Innboks"; +$a->strings["Outbox"] = "Utboks"; +$a->strings["Manage"] = "Behandle"; +$a->strings["Manage other pages"] = "Behandle andre sider"; +$a->strings["Account settings"] = "Kontoinnstillinger"; +$a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler"; +$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; +$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; +$a->strings["Navigation"] = "Navigasjon"; +$a->strings["Site map"] = "Nettstedskart"; +$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; +$a->strings["Block immediately"] = "Blokker umiddelbart"; +$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv"; +$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening"; +$a->strings["OK, probably harmless"] = "OK, antakelig harmløs"; +$a->strings["Reputable, has my trust"] = "Respektert, har min tillit"; +$a->strings["Weekly"] = "Ukentlig"; +$a->strings["Monthly"] = "Månedlig"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora-forbindelse"; +$a->strings["Statusnet"] = "StatusNet"; $a->strings["Friendica Notification"] = "Friendica varsel"; $a->strings["Thank You,"] = "Mange takk,"; $a->strings["%s Administrator"] = "%s administrator"; @@ -1484,7 +1652,30 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $a->strings["Name:"] = "Navn:"; $a->strings["Photo:"] = "Bilde:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå forslaget."; -$a->strings[" on Last.fm"] = "på Last.fm"; +$a->strings["An invitation is required."] = "En invitasjon er nødvendig."; +$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; +$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL"; +$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen."; +$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn."; +$a->strings["Name too short."] = "Navnet er for kort."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."; +$a->strings["Not a valid email address."] = "Ugyldig e-postadresse."; +$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."; +$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."; +$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen."; +$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."; +$a->strings["Visible to everybody"] = "Synlig for alle"; +$a->strings["Image/photo"] = "Bilde/fotografi"; +$a->strings["%s wrote the following post"] = "%s skrev følgende innlegg"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["Encrypted content"] = "Kryptert innhold"; +$a->strings["Embedded content"] = "Innebygd innhold"; +$a->strings["Embedding disabled"] = "Innebygging avskrudd"; $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."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser kan gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn."; $a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter"; $a->strings["Everybody"] = "Alle"; @@ -1492,89 +1683,8 @@ $a->strings["edit"] = "endre"; $a->strings["Edit group"] = "Endre gruppe"; $a->strings["Create a new group"] = "Lag en ny gruppe"; $a->strings["Contacts not in any group"] = "Kontakter som ikke er i noen gruppe"; -$a->strings["Connect URL missing."] = "Forbindelses-URL mangler."; -$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."; -$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information."; -$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn."; -$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."; -$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."; -$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon."; -$a->strings["following"] = "følger"; -$a->strings["[no subject]"] = "[ikke noe emne]"; -$a->strings["End this session"] = "Avslutt denne økten"; -$a->strings["Sign in"] = "Logg inn"; -$a->strings["Home Page"] = "Hovedside"; -$a->strings["Create an account"] = "Lag konto"; -$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; -$a->strings["Apps"] = "Programmer"; -$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill"; -$a->strings["Search site content"] = "Søk i nettstedets innhold"; -$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet"; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = "Personkatalog"; -$a->strings["Information"] = "Informasjon"; -$a->strings["Information about this friendica instance"] = "Informasjon om denne Friendica-instansen."; -$a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; -$a->strings["Network Reset"] = "Nettverk tilbakestilling"; -$a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter"; -$a->strings["Friend Requests"] = "Venneforespørsler"; -$a->strings["See all notifications"] = "Se alle varslinger"; -$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -$a->strings["Private mail"] = "Privat post"; -$a->strings["Inbox"] = "Innboks"; -$a->strings["Outbox"] = "Utboks"; -$a->strings["Manage"] = "Behandle"; -$a->strings["Manage other pages"] = "Behandle andre sider"; -$a->strings["Account settings"] = "Kontoinnstillinger"; -$a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler"; -$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; -$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; -$a->strings["Navigation"] = "Navigasjon"; -$a->strings["Site map"] = "Nettstedskart"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Fødselsdag:"; -$a->strings["Age:"] = "Alder:"; -$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -$a->strings["Tags:"] = "Merkelapper:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; -$a->strings["Musical interests:"] = "Musikksmak:"; -$a->strings["Books, literature:"] = "Bøker, litteratur:"; -$a->strings["Television:"] = "TV:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:"; -$a->strings["Love/Romance:"] = "Kjærlighet/romanse:"; -$a->strings["Work/employment:"] = "Arbeid/ansatt hos:"; -$a->strings["School/education:"] = "Skole/utdanning:"; -$a->strings["Image/photo"] = "Bilde/fotografi"; -$a->strings["%s wrote the following post"] = "%s skrev følgende innlegg"; -$a->strings[""] = ""; -$a->strings["$1 wrote:"] = "$1 skrev:"; -$a->strings["Encrypted content"] = "Kryptert innhold"; -$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; -$a->strings["Block immediately"] = "Blokker umiddelbart"; -$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv"; -$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening"; -$a->strings["OK, probably harmless"] = "OK, antakelig harmløs"; -$a->strings["Reputable, has my trust"] = "Respektert, har min tillit"; -$a->strings["Weekly"] = "Ukentlig"; -$a->strings["Monthly"] = "Månedlig"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora-forbindelse"; -$a->strings["Statusnet"] = "StatusNet"; +$a->strings["stopped following"] = "sluttet å følge"; +$a->strings["Drop Contact"] = "Fjern kontakt"; $a->strings["Miscellaneous"] = "Diverse"; $a->strings["year"] = "år"; $a->strings["month"] = "måned"; @@ -1593,117 +1703,4 @@ $a->strings["minutes"] = "minutter"; $a->strings["second"] = "sekund"; $a->strings["seconds"] = "sekunder"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -$a->strings["%s's birthday"] = "%s sin bursdag"; -$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s"; -$a->strings["General Features"] = "Generelle egenskaper"; -$a->strings["Multiple Profiles"] = "Flere profiler"; -$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler"; -$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg"; -$a->strings["Richtext Editor"] = "Rik tekstredigering"; -$a->strings["Enable richtext editor"] = "Skru på rik tekstredigering"; -$a->strings["Post Preview"] = "Forhåndsvisning av innlegg"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering"; -$a->strings["Auto-mention Forums"] = "Auto-nevning av forum"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Legg til/fjern nevning når en forumside velges/ikke lenger velges i tilgangsstyringsvinduet/ACL-vinduet."; -$a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk"; -$a->strings["Search by Date"] = "Søk etter dato"; -$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder"; -$a->strings["Group Filter"] = "Gruppefilter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen"; -$a->strings["Network Filter"] = "Nettverksfilter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk"; -$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk"; -$a->strings["Network Tabs"] = "Nettverksfaner"; -$a->strings["Network Personal Tab"] = "Nettverk personlig fane"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i"; -$a->strings["Network New Tab"] = "Nettverk Ny fane"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)"; -$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem"; -$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy"; -$a->strings["Multiple Deletion"] = "Slett flere"; -$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang"; -$a->strings["Edit Sent Posts"] = "Endre sendte innlegg"; -$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending"; -$a->strings["Tagging"] = "Merking"; -$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg"; -$a->strings["Post Categories"] = "Innleggskategorier"; -$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg"; -$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; -$a->strings["Dislike Posts"] = "Liker ikke innlegg"; -$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer"; -$a->strings["Star Posts"] = "Stjerneinnlegg"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator"; -$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket"; -$a->strings["Attachments:"] = "Vedlegg:"; -$a->strings["Visible to everybody"] = "Synlig for alle"; -$a->strings["A new person is sharing with you at "] = "En ny person deler med deg hos"; -$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på "; -$a->strings["Do you really want to delete this item?"] = "Ønsker du virkelig å slette dette elementet?"; -$a->strings["Archives"] = "Arkiverer"; -$a->strings["Embedded content"] = "Innebygd innhold"; -$a->strings["Embedding disabled"] = "Innebygging avskrudd"; -$a->strings["Welcome "] = "Velkommen"; -$a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde."; -$a->strings["Welcome back "] = "Velkommen tilbake"; -$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."] = "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."; -$a->strings["Male"] = "Mann"; -$a->strings["Female"] = "Kvinne"; -$a->strings["Currently Male"] = "For øyeblikket mann"; -$a->strings["Currently Female"] = "For øyeblikket kvinne"; -$a->strings["Mostly Male"] = "Stort sett mann"; -$a->strings["Mostly Female"] = "Stort sett kvinne"; -$a->strings["Transgender"] = "Transkjønnet"; -$a->strings["Intersex"] = "Tvekjønnet"; -$a->strings["Transsexual"] = "Transseksuell"; -$a->strings["Hermaphrodite"] = "Hermafroditt"; -$a->strings["Neuter"] = "Intetkjønn"; -$a->strings["Non-specific"] = "Ikke spesifisert"; -$a->strings["Other"] = "Annet"; -$a->strings["Undecided"] = "Ubestemt"; -$a->strings["Males"] = "Menn"; -$a->strings["Females"] = "Kvinner"; -$a->strings["Gay"] = "Homse"; -$a->strings["Lesbian"] = "Lesbe"; -$a->strings["No Preference"] = "Ingen preferanse"; -$a->strings["Bisexual"] = "Biseksuell"; -$a->strings["Autosexual"] = "Autoseksuell"; -$a->strings["Abstinent"] = "Avholdende"; -$a->strings["Virgin"] = "Jomfru"; -$a->strings["Deviant"] = "Avvikende"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Mange"; -$a->strings["Nonsexual"] = "Aseksuell"; -$a->strings["Single"] = "Alene"; -$a->strings["Lonely"] = "Ensom"; -$a->strings["Available"] = "Tilgjengelig"; -$a->strings["Unavailable"] = "Ikke tilgjengelig"; -$a->strings["Has crush"] = "Er forelsket"; -$a->strings["Infatuated"] = "Betatt"; -$a->strings["Dating"] = "Stevnemøter/dater"; -$a->strings["Unfaithful"] = "Utro"; -$a->strings["Sex Addict"] = "Sexavhengig"; -$a->strings["Friends/Benefits"] = "Venner med fordeler"; -$a->strings["Casual"] = "Tilfeldig"; -$a->strings["Engaged"] = "Forlovet"; -$a->strings["Married"] = "Gift"; -$a->strings["Imaginarily married"] = "Fantasiekteskap"; -$a->strings["Partners"] = "Partnere"; -$a->strings["Cohabiting"] = "Samboere"; -$a->strings["Common law"] = "Samboer"; -$a->strings["Happy"] = "Lykkelig"; -$a->strings["Not looking"] = "Ikke på utkikk"; -$a->strings["Swinger"] = "Partnerbytte/swinger"; -$a->strings["Betrayed"] = "Bedratt"; -$a->strings["Separated"] = "Separert"; -$a->strings["Unstable"] = "Ustabil"; -$a->strings["Divorced"] = "Skilt"; -$a->strings["Imaginarily divorced"] = "Fantasiskilt"; -$a->strings["Widowed"] = "Enke/enkemann"; -$a->strings["Uncertain"] = "Usikker"; -$a->strings["It's complicated"] = "Det er komplisert"; -$a->strings["Don't care"] = "Uinteressert"; -$a->strings["Ask me"] = "Spør meg"; -$a->strings["stopped following"] = "sluttet å følge"; -$a->strings["Drop Contact"] = "Fjern kontakt"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' "; +$a->strings["view full size"] = "Vis i full størrelse"; From 5fbdc603339887ea42652e2a4c92f821fe8ef090 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 29 May 2014 07:06:09 +0200 Subject: [PATCH 27/30] RO: added strings --- view/ro/messages.po | 7362 +++++++++++++++++++++++++++++++++++++++++++ view/ro/strings.php | 1719 ++++++++++ 2 files changed, 9081 insertions(+) create mode 100644 view/ro/messages.po create mode 100644 view/ro/strings.php diff --git a/view/ro/messages.po b/view/ro/messages.po new file mode 100644 index 0000000000..d00b9e8770 --- /dev/null +++ b/view/ro/messages.po @@ -0,0 +1,7362 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# ddeacon , 2013 +# ddeacon , 2013 +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-05-16 11:05+0200\n" +"PO-Revision-Date: 2014-05-28 13:49+0000\n" +"Last-Translator: ArianServ \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "Această intrare a fost editată" + +#: ../../object/Item.php:113 ../../mod/photos.php:1355 +#: ../../mod/content.php:619 +msgid "Private Message" +msgstr " Mesaj Privat" + +#: ../../object/Item.php:117 ../../mod/editpost.php:109 +#: ../../mod/settings.php:671 ../../mod/content.php:727 +msgid "Edit" +msgstr "Edit" + +#: ../../object/Item.php:126 ../../mod/photos.php:1649 +#: ../../mod/content.php:437 ../../mod/content.php:739 +#: ../../include/conversation.php:612 +msgid "Select" +msgstr "Select" + +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650 +#: ../../mod/contacts.php:703 ../../mod/settings.php:672 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740 +#: ../../include/conversation.php:613 +msgid "Delete" +msgstr "Şterge" + +#: ../../object/Item.php:130 ../../mod/content.php:762 +msgid "save to folder" +msgstr "salvează în directorul" + +#: ../../object/Item.php:192 ../../mod/content.php:752 +msgid "add star" +msgstr "add stea" + +#: ../../object/Item.php:193 ../../mod/content.php:753 +msgid "remove star" +msgstr "înlătură stea" + +#: ../../object/Item.php:194 ../../mod/content.php:754 +msgid "toggle star status" +msgstr "comută status steluță" + +#: ../../object/Item.php:197 ../../mod/content.php:757 +msgid "starred" +msgstr "cu steluță" + +#: ../../object/Item.php:202 ../../mod/content.php:758 +msgid "add tag" +msgstr "add tag" + +#: ../../object/Item.php:213 ../../mod/photos.php:1538 +#: ../../mod/content.php:683 +msgid "I like this (toggle)" +msgstr "I like asta (toggle)" + +#: ../../object/Item.php:213 ../../mod/content.php:683 +msgid "like" +msgstr "like" + +#: ../../object/Item.php:214 ../../mod/photos.php:1539 +#: ../../mod/content.php:684 +msgid "I don't like this (toggle)" +msgstr "nu îmi place aceasta (comutare)" + +#: ../../object/Item.php:214 ../../mod/content.php:684 +msgid "dislike" +msgstr "dislike" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "Share this" +msgstr "Partajează" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "share" +msgstr "partajează" + +#: ../../object/Item.php:298 ../../include/conversation.php:665 +msgid "Categories:" +msgstr "Categorii:" + +#: ../../object/Item.php:299 ../../include/conversation.php:666 +msgid "Filed under:" +msgstr "Înscris în:" + +#: ../../object/Item.php:307 ../../object/Item.php:308 +#: ../../mod/content.php:471 ../../mod/content.php:851 +#: ../../mod/content.php:852 ../../include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vizualizaţi profilul %s @ %s" + +#: ../../object/Item.php:309 ../../mod/content.php:853 +msgid "to" +msgstr "către" + +#: ../../object/Item.php:310 +msgid "via" +msgstr "via" + +#: ../../object/Item.php:311 ../../mod/content.php:854 +msgid "Wall-to-Wall" +msgstr "Perete-prin-Perete" + +#: ../../object/Item.php:312 ../../mod/content.php:855 +msgid "via Wall-To-Wall:" +msgstr "via Perete-Prin-Perete" + +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s de la %s" + +#: ../../object/Item.php:341 ../../object/Item.php:657 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693 +msgid "Comment" +msgstr "Comentariu" + +#: ../../object/Item.php:344 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541 +#: ../../mod/content.php:498 ../../mod/content.php:882 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 +msgid "Please wait" +msgstr "Aşteptaţi vă rog" + +#: ../../object/Item.php:367 ../../mod/content.php:602 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentariu" +msgstr[1] "%d comentarii" +msgstr[2] "%d comentarii" + +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1959 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comentariu" +msgstr[1] "comentarii" +msgstr[2] "comentarii" + +#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "mai mult" + +#: ../../object/Item.php:655 ../../mod/photos.php:1558 +#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 +#: ../../mod/content.php:706 +msgid "This is you" +msgstr "Acesta eşti tu" + +#: ../../object/Item.php:658 ../../mod/fsuggest.php:107 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/events.php:478 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1693 ../../mod/contacts.php:464 +#: ../../mod/invite.php:140 ../../mod/profiles.php:634 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Trimite" + +#: ../../object/Item.php:659 ../../mod/content.php:710 +msgid "Bold" +msgstr "Bold" + +#: ../../object/Item.php:660 ../../mod/content.php:711 +msgid "Italic" +msgstr "Italic" + +#: ../../object/Item.php:661 ../../mod/content.php:712 +msgid "Underline" +msgstr "Subliniat" + +#: ../../object/Item.php:662 ../../mod/content.php:713 +msgid "Quote" +msgstr "Citat" + +#: ../../object/Item.php:663 ../../mod/content.php:714 +msgid "Code" +msgstr "Code" + +#: ../../object/Item.php:664 ../../mod/content.php:715 +msgid "Image" +msgstr "Imagine" + +#: ../../object/Item.php:665 ../../mod/content.php:716 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:666 ../../mod/content.php:717 +msgid "Video" +msgstr "Video" + +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:718 +#: ../../include/conversation.php:1124 +msgid "Preview" +msgstr "Previzualizare" + +#: ../../index.php:203 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Tu trebuie să vă autentificați pentru a folosi suplimentele." + +#: ../../index.php:247 ../../mod/help.php:90 +msgid "Not Found" +msgstr "Negăsit" + +#: ../../index.php:250 ../../mod/help.php:93 +msgid "Page not found." +msgstr "Pagină negăsită." + +#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72 +msgid "Permission denied" +msgstr "Permisiune refuzată" + +#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048 +#: ../../mod/register.php:41 ../../mod/attach.php:33 +#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/display.php:266 +#: ../../mod/profiles.php:146 ../../mod/profiles.php:575 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 +#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:117 +#: ../../include/items.php:4390 +msgid "Permission denied." +msgstr "Permisiune refuzată." + +#: ../../index.php:419 +msgid "toggle mobile" +msgstr "comutare mobil" + +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +msgid "Contact not found." +msgstr "Contact negăsit." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Sugestia de prietenie a fost trimisă." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugeraţi Prieteni" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugeraţi un prieten pentru %s" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Această introducere a fost deja acceptată" + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Locaţia profilului nu este validă sau nu conţine informaţii de profil." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Atenţie: locaţia profilului nu are un nume de deţinător identificabil." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Atenţie: locaţia profilului nu are fotografie de profil." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametru necesar nu a fost găsit în locaţia specificată" +msgstr[1] "%d parametrii necesari nu au fost găsiţi în locaţia specificată" +msgstr[2] "%d de parametrii necesari nu au fost găsiţi în locaţia specificată" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Prezentare completă." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Eroare de protocol nerecuperabilă." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil nedisponibil." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a primit, pentru azi, prea multe solicitări de conectare." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Au fost invocate măsuri de protecţie anti-spam." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Prietenii sunt rugaţi să reîncerce peste 24 de ore." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Adresă mail invalidă." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Acest cont nu a fost configurat pentru email. Cererea a eşuat." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Imposibil să vă soluţionăm numele pentru locaţia sugerată." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Aţi fost deja prezentat aici" + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Se pare că sunteţi deja prieten cu %s." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Profil URL invalid." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Profil URL invalid." + +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Actualizarea datelor de contact a eşuat." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Prezentarea dumneavoastră a fost trimisă." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Vă rugăm să vă autentificați pentru a confirma prezentarea." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Ascunde acest contact" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bine ai venit %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Confirm" + +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Nume Reţinut]" + +#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Acces public refuzat." + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Conectare ca și un fan prin email< /strike> (În Curând)" + +#: ../../mod/dfrn_request.php:829 +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 "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Solicitare Prietenie/Conectare" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Vă rugăm să răspundeţi la următoarele:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "%s vă cunoaşte?" + +#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/suggest.php:29 ../../include/items.php:4235 +msgid "Yes" +msgstr "Da" + +#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 +#: ../../mod/register.php:244 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 +#: ../../mod/profiles.php:615 +msgid "No" +msgstr "NU" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Adaugă o notă personală:" + +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Reţea Socială Web Centralizată" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Adresa dvs. Identitate " + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Trimiteţi Solicitarea" + +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:610 +#: ../../mod/settings.php:636 ../../mod/suggest.php:32 +#: ../../include/items.php:4238 ../../include/conversation.php:1127 +msgid "Cancel" +msgstr "Anulează" + +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1400 +msgid "View Video" +msgstr "Vizualizați Clipul Video" + +#: ../../mod/profile.php:21 ../../boot.php:1353 +msgid "Requested profile is not available." +msgstr "Profilul solicitat nu este disponibil." + +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "Accesul la acest profil a fost restricţionat." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Sfaturi pentru Membrii Noi" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Datele de identificare solicitate, sunt invalide." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Renunțați" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:491 ../../mod/contacts.php:701 +msgid "Ignore" +msgstr "Ignoră" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Reţea" + +#: ../../mod/notifications.php:88 ../../mod/network.php:365 +msgid "Personal" +msgstr "Personal" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" + +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Introduceri" + +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Mesage" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Afişare Solicitări Ignorate" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Ascundere Solicitări Ignorate" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tip Notificări:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Sugestie Prietenie" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerat de către %s" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:497 +msgid "Hide this contact from others" +msgstr "Ascunde acest contact pentru alţii" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Publicaţi prietenului o nouă activitate" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "dacă i posibil" + +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:908 +msgid "Approve" +msgstr "Aprobă" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Pretinde că vă cunoaște:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "da" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nu" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Aprobă ca:" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Prieten" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Distribuitor" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Admirator" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Prieten/Solicitare de Conectare" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Susţinător Nou" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Fără prezentări." + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Notificări" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a apreciat ceea a publicat %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s a nu a apreciat ceea a publicat %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s este acum prieten cu %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s a creat o nouă postare" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a comentat la articolul postat de %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nu mai există notificări de reţea." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notificări de Reţea" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Nu mai există notificări de sistem." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notificări de Sistem" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nici o notificare personală" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notificări personale" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Nu mai există notificări de origine." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Notificări de Origine" + +#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955 +#: ../../include/diaspora.php:1908 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "photo" + +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "status" + +#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1924 ../../include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s apreciază %3$s lui %2$s" + +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nu apreciază %3$s lui %2$s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Eroare de protocol OpenID. Nici-un ID returnat." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site." + +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Eşec la conectare" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Text (bbcode) sursă:" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Text (Diaspora) sursă pentru a-l converti în BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Intrare Sursă:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Intrare Sursă (Format Diaspora):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Configurările temei au fost actualizate." + +#: ../../mod/admin.php:102 ../../mod/admin.php:573 +msgid "Site" +msgstr "Site" + +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 +msgid "Users" +msgstr "Utilizatori" + +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Pluginuri" + +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 +msgid "Themes" +msgstr "Teme" + +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "Actualizări Bază de Date" + +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 +msgid "Logs" +msgstr "Jurnale" + +#: ../../mod/admin.php:126 ../../include/nav.php:180 +msgid "Admin" +msgstr "Admin" + +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "Caracteristici Modul" + +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Înregistrări de utilizatori, aşteaptă confirmarea" + +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270 +#: ../../mod/viewsrc.php:15 ../../include/items.php:4194 +msgid "Item not found." +msgstr "Element negăsit." + +#: ../../mod/admin.php:188 ../../mod/admin.php:855 +msgid "Normal Account" +msgstr "Cont normal" + +#: ../../mod/admin.php:189 ../../mod/admin.php:856 +msgid "Soapbox Account" +msgstr "Cont Soapbox" + +#: ../../mod/admin.php:190 ../../mod/admin.php:857 +msgid "Community/Celebrity Account" +msgstr "Cont Comunitate/Celebritate" + +#: ../../mod/admin.php:191 ../../mod/admin.php:858 +msgid "Automatic Friend Account" +msgstr "Cont Prieten Automat" + +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Cont Blog" + +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "Forum Privat" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "Șiruri de mesaje" + +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 +msgid "Administration" +msgstr "Administrare" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "Sumar" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "Utilizatori înregistraţi" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Administrare" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "Versiune" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "Module active" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://" + +#: ../../mod/admin.php:485 +msgid "Site settings updated." +msgstr "Configurările site-ului au fost actualizate." + +#: ../../mod/admin.php:514 ../../mod/settings.php:823 +msgid "No special theme for mobile devices" +msgstr "Nici-o temă specială pentru dispozitive mobile" + +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 +msgid "Never" +msgstr "Niciodată" + +#: ../../mod/admin.php:532 +msgid "At post arrival" +msgstr "La sosirea publicaţiei" + +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frecvent" + +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Din oră în oră" + +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "De două ori pe zi" + +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Zilnic" + +#: ../../mod/admin.php:541 +msgid "Multi user instance" +msgstr "Instanţă utilizatori multipli" + +#: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Inchis" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Necesită aprobarea" + +#: ../../mod/admin.php:561 +msgid "Open" +msgstr "Deschide" + +#: ../../mod/admin.php:565 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nici-o politică SSL, legăturile vor urmări starea paginii SSL" + +#: ../../mod/admin.php:566 +msgid "Force all links to use SSL" +msgstr "Forţează toate legăturile să utilizeze SSL" + +#: ../../mod/admin.php:567 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)" + +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 +msgid "Save Settings" +msgstr "Salvare Configurări" + +#: ../../mod/admin.php:575 ../../mod/register.php:265 +msgid "Registration" +msgstr "Registratură" + +#: ../../mod/admin.php:576 +msgid "File upload" +msgstr "Fişier incărcat" + +#: ../../mod/admin.php:577 +msgid "Policies" +msgstr "Politici" + +#: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Avansat" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Performanţă" + +#: ../../mod/admin.php:580 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil." + +#: ../../mod/admin.php:583 +msgid "Site name" +msgstr "Nume site" + +#: ../../mod/admin.php:584 +msgid "Banner/Logo" +msgstr "Baner/Logo" + +#: ../../mod/admin.php:585 +msgid "Additional Info" +msgstr "Informaţii suplimentare" + +#: ../../mod/admin.php:585 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo." + +#: ../../mod/admin.php:586 +msgid "System language" +msgstr "Limbă System l" + +#: ../../mod/admin.php:587 +msgid "System theme" +msgstr "Temă System " + +#: ../../mod/admin.php:587 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei" + +#: ../../mod/admin.php:588 +msgid "Mobile system theme" +msgstr "Temă sisteme mobile" + +#: ../../mod/admin.php:588 +msgid "Theme for mobile devices" +msgstr "Temă pentru dispozitivele mobile" + +#: ../../mod/admin.php:589 +msgid "SSL link policy" +msgstr "Politivi link SSL " + +#: ../../mod/admin.php:589 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL" + +#: ../../mod/admin.php:590 +msgid "Old style 'Share'" +msgstr "Stilul vechi de 'Distribuiţi'" + +#: ../../mod/admin.php:590 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive." + +#: ../../mod/admin.php:591 +msgid "Hide help entry from navigation menu" +msgstr "Ascunde elementele de ajutor, din meniul de navigare" + +#: ../../mod/admin.php:591 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor." + +#: ../../mod/admin.php:592 +msgid "Single user instance" +msgstr "Instanţă cu un singur utilizator" + +#: ../../mod/admin.php:592 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" + +#: ../../mod/admin.php:593 +msgid "Maximum image size" +msgstr "Maxim mărime imagine" + +#: ../../mod/admin.php:593 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite." + +#: ../../mod/admin.php:594 +msgid "Maximum image length" +msgstr "Dimensiunea maximă a imaginii" + +#: ../../mod/admin.php:594 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." + +#: ../../mod/admin.php:595 +msgid "JPEG image quality" +msgstr "Calitate imagine JPEG " + +#: ../../mod/admin.php:595 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." + +#: ../../mod/admin.php:597 +msgid "Register policy" +msgstr "Politici inregistrare " + +#: ../../mod/admin.php:598 +msgid "Maximum Daily Registrations" +msgstr "Înregistrări Zilnice Maxime" + +#: ../../mod/admin.php:598 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." + +#: ../../mod/admin.php:599 +msgid "Register text" +msgstr "Text înregistrare" + +#: ../../mod/admin.php:599 +msgid "Will be displayed prominently on the registration page." +msgstr "Va fi afişat vizibil pe pagina de înregistrare." + +#: ../../mod/admin.php:600 +msgid "Accounts abandoned after x days" +msgstr "Conturi abandonate după x zile" + +#: ../../mod/admin.php:600 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp." + +#: ../../mod/admin.php:601 +msgid "Allowed friend domains" +msgstr "Domenii prietene permise" + +#: ../../mod/admin.php:601 +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 cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" + +#: ../../mod/admin.php:602 +msgid "Allowed email domains" +msgstr "Domenii de email, permise" + +#: ../../mod/admin.php:602 +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 cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" + +#: ../../mod/admin.php:603 +msgid "Block public" +msgstr "Blocare acces public" + +#: ../../mod/admin.php:603 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat." + +#: ../../mod/admin.php:604 +msgid "Force publish" +msgstr "Forțează publicarea" + +#: ../../mod/admin.php:604 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." + +#: ../../mod/admin.php:605 +msgid "Global directory update URL" +msgstr "URL actualizare director global" + +#: ../../mod/admin.php:605 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație." + +#: ../../mod/admin.php:606 +msgid "Allow threaded items" +msgstr "Permite elemente înșiruite" + +#: ../../mod/admin.php:606 +msgid "Allow infinite level threading for items on this site." +msgstr "Permite pe acest site, un număr infinit de nivele de înșiruire." + +#: ../../mod/admin.php:607 +msgid "Private posts by default for new users" +msgstr "Postările private, ca implicit pentru utilizatori noi" + +#: ../../mod/admin.php:607 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public." + +#: ../../mod/admin.php:608 +msgid "Don't include post content in email notifications" +msgstr "Nu include conţinutul postării în notificările prin email" + +#: ../../mod/admin.php:608 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate." + +#: ../../mod/admin.php:609 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii." + +#: ../../mod/admin.php:609 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor." + +#: ../../mod/admin.php:610 +msgid "Don't embed private images in posts" +msgstr "Nu încorpora imagini private în postări" + +#: ../../mod/admin.php:610 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." + +#: ../../mod/admin.php:611 +msgid "Allow Users to set remote_self" +msgstr "Permite utilizatorilor să-și stabilească remote_self" + +#: ../../mod/admin.php:611 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." + +#: ../../mod/admin.php:612 +msgid "Block multiple registrations" +msgstr "Blocare înregistrări multiple" + +#: ../../mod/admin.php:612 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini." + +#: ../../mod/admin.php:613 +msgid "OpenID support" +msgstr "OpenID support" + +#: ../../mod/admin.php:613 +msgid "OpenID support for registration and logins." +msgstr "Suport OpenID pentru înregistrare şi autentificări." + +#: ../../mod/admin.php:614 +msgid "Fullname check" +msgstr "Verificare Nume complet" + +#: ../../mod/admin.php:614 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam" + +#: ../../mod/admin.php:615 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Regular expresii" + +#: ../../mod/admin.php:615 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utilizaţi PHP UTF-8 Regular expresii" + +#: ../../mod/admin.php:616 +msgid "Show Community Page" +msgstr "Arată Pagina Communitz" + +#: ../../mod/admin.php:616 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site." + +#: ../../mod/admin.php:617 +msgid "Enable OStatus support" +msgstr "Activează Suport OStatus" + +#: ../../mod/admin.php:617 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate." + +#: ../../mod/admin.php:618 +msgid "OStatus conversation completion interval" +msgstr "Intervalul OStatus de finalizare a conversaţiei" + +#: ../../mod/admin.php:618 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile." + +#: ../../mod/admin.php:619 +msgid "Enable Diaspora support" +msgstr "Activează Suport Diaspora" + +#: ../../mod/admin.php:619 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Oferă o compatibilitate de reţea Diaspora, întegrată." + +#: ../../mod/admin.php:620 +msgid "Only allow Friendica contacts" +msgstr "Se permit doar contactele Friendica" + +#: ../../mod/admin.php:620 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate." + +#: ../../mod/admin.php:621 +msgid "Verify SSL" +msgstr "Verifică SSL" + +#: ../../mod/admin.php:621 +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 "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate." + +#: ../../mod/admin.php:622 +msgid "Proxy user" +msgstr "Proxy user" + +#: ../../mod/admin.php:623 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../mod/admin.php:624 +msgid "Network timeout" +msgstr "Timp de expirare rețea" + +#: ../../mod/admin.php:624 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." + +#: ../../mod/admin.php:625 +msgid "Delivery interval" +msgstr "Interval de livrare" + +#: ../../mod/admin.php:625 +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 "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari." + +#: ../../mod/admin.php:626 +msgid "Poll interval" +msgstr "Interval de Sondare" + +#: ../../mod/admin.php:626 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare." + +#: ../../mod/admin.php:627 +msgid "Maximum Load Average" +msgstr "Media Maximă de Încărcare" + +#: ../../mod/admin.php:627 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50." + +#: ../../mod/admin.php:629 +msgid "Use MySQL full text engine" +msgstr "Utilizare motor text-complet MySQL" + +#: ../../mod/admin.php:629 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere." + +#: ../../mod/admin.php:630 +msgid "Suppress Language" +msgstr "Suprimă Limba" + +#: ../../mod/admin.php:630 +msgid "Suppress language information in meta information about a posting." +msgstr "Suprimă informaţiile despre limba din informaţiile meta ale unei postări." + +#: ../../mod/admin.php:631 +msgid "Path to item cache" +msgstr "Calea pentru elementul cache" + +#: ../../mod/admin.php:632 +msgid "Cache duration in seconds" +msgstr "Durata Cache în secunde" + +#: ../../mod/admin.php:632 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Cât timp trebuie să fie reţinute fişierele cache? Valoarea implicită este de 86400 secunde (O zi)." + +#: ../../mod/admin.php:633 +msgid "Path for lock file" +msgstr "Cale pentru blocare fișiere" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Calea Temp" + +#: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Calea de bază pentru instalare" + +#: ../../mod/admin.php:637 +msgid "New base url" +msgstr "URL de bază nou" + +#: ../../mod/admin.php:655 +msgid "Update has been marked successful" +msgstr "Actualizarea a fost marcată cu succes" + +#: ../../mod/admin.php:665 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Executarea %s a eșuat. Verificaţi jurnalele de sistem." + +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualizarea %s a fost aplicată cu succes." + +#: ../../mod/admin.php:672 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit." + +#: ../../mod/admin.php:675 +#, php-format +msgid "Update function %s could not be found." +msgstr "Funcția de actualizare %s nu s-a putut găsi." + +#: ../../mod/admin.php:690 +msgid "No failed updates." +msgstr "Nici-o actualizare eșuată." + +#: ../../mod/admin.php:694 +msgid "Failed Updates" +msgstr "Actualizări Eșuate" + +#: ../../mod/admin.php:695 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status." + +#: ../../mod/admin.php:696 +msgid "Mark success (if update was manually applied)" +msgstr "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)" + +#: ../../mod/admin.php:697 +msgid "Attempt to execute this update step automatically" +msgstr "Se încearcă executarea automată a acestei etape de actualizare" + +#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Detaliile de înregistrare pentru %s" + +#: ../../mod/admin.php:743 +msgid "Registration successful. Email send to user" +msgstr "Înregistrarea s-a efectuat cu succes. Un email a fost trimis utilizatorului" + +#: ../../mod/admin.php:753 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utilizator blocat/deblocat" +msgstr[1] "%s utilizatori blocați/deblocați" +msgstr[2] "%s de utilizatori blocați/deblocați" + +#: ../../mod/admin.php:760 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilizator şters" +msgstr[1] "%s utilizatori şterşi" +msgstr[2] "%s utilizatori şterşi" + +#: ../../mod/admin.php:799 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilizator %s şters" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilizator %s deblocat" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilizator %s blocat" + +#: ../../mod/admin.php:902 +msgid "Add User" +msgstr "Adăugaţi Utilizator" + +#: ../../mod/admin.php:903 +msgid "select all" +msgstr "selectează tot" + +#: ../../mod/admin.php:904 +msgid "User registrations waiting for confirm" +msgstr "Înregistrarea utilizatorului, aşteaptă confirmarea" + +#: ../../mod/admin.php:905 +msgid "User waiting for permanent deletion" +msgstr "Utilizatorul așteaptă să fie șters definitiv" + +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Data cererii" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/settings.php:611 +#: ../../mod/settings.php:637 ../../mod/crepair.php:150 +msgid "Name" +msgstr "Nume" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: ../../mod/admin.php:907 +msgid "No registrations." +msgstr "Nici-o înregistrare." + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Respinge" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "Blochează" + +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "Deblochează" + +#: ../../mod/admin.php:913 +msgid "Site admin" +msgstr "Site admin" + +#: ../../mod/admin.php:914 +msgid "Account expired" +msgstr "Cont expirat" + +#: ../../mod/admin.php:917 +msgid "New User" +msgstr "Utilizator Nou" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Register date" +msgstr "Data înregistrare" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last login" +msgstr "Ultimul login" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last item" +msgstr "Ultimul element" + +#: ../../mod/admin.php:918 +msgid "Deleted since" +msgstr "Șters din" + +#: ../../mod/admin.php:919 ../../mod/settings.php:36 +msgid "Account" +msgstr "Cont" + +#: ../../mod/admin.php:921 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?" + +#: ../../mod/admin.php:922 +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 "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?" + +#: ../../mod/admin.php:932 +msgid "Name of the new user." +msgstr "Numele noului utilizator." + +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "Pseudonim" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "Pseudonimul noului utilizator." + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "Adresa de e-mail a utilizatorului nou." + +#: ../../mod/admin.php:967 +#, php-format +msgid "Plugin %s disabled." +msgstr "Modulul %s a fost dezactivat." + +#: ../../mod/admin.php:971 +#, php-format +msgid "Plugin %s enabled." +msgstr "Modulul %s a fost activat." + +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 +msgid "Disable" +msgstr "Dezactivează" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 +msgid "Enable" +msgstr "Activează" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 +msgid "Toggle" +msgstr "Comutare" + +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169 +msgid "Settings" +msgstr "Setări" + +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 +msgid "Maintainer: " +msgstr "Responsabil:" + +#: ../../mod/admin.php:1155 +msgid "No themes found." +msgstr "Nici-o temă găsită." + +#: ../../mod/admin.php:1217 +msgid "Screenshot" +msgstr "Screenshot" + +#: ../../mod/admin.php:1263 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../mod/admin.php:1264 +msgid "[Unsupported]" +msgstr "[Unsupported]" + +#: ../../mod/admin.php:1291 +msgid "Log settings updated." +msgstr "Jurnalul de configurări fost actualizat." + +#: ../../mod/admin.php:1347 +msgid "Clear" +msgstr "Curăţă" + +#: ../../mod/admin.php:1353 +msgid "Enable Debugging" +msgstr "Activează Depanarea" + +#: ../../mod/admin.php:1354 +msgid "Log file" +msgstr "Fişier Log " + +#: ../../mod/admin.php:1354 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica." + +#: ../../mod/admin.php:1355 +msgid "Log level" +msgstr "Nivel log" + +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "Actualizează acum" + +#: ../../mod/admin.php:1405 +msgid "Close" +msgstr "Închide" + +#: ../../mod/admin.php:1411 +msgid "FTP Host" +msgstr "FTP Host" + +#: ../../mod/admin.php:1412 +msgid "FTP Path" +msgstr "FTP Path" + +#: ../../mod/admin.php:1413 +msgid "FTP User" +msgstr "FTP User" + +#: ../../mod/admin.php:1414 +msgid "FTP Password" +msgstr "FTP Parolă" + +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Mesaj nou" + +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nici-o adresă selectată." + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Nu se pot localiza informaţiile de contact." + +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Mesajul nu a putut fi trimis." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Eșec de colectare mesaj." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Mesaj trimis." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Chiar doriţi să ştergeţi acest mesaj ?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Mesaj şters" + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversaşie inlăturată." + +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Introduceţi un link URL:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Trimite mesaj privat" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Către: " + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Subiect:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Mesajul dvs :" + +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1089 +msgid "Upload photo" +msgstr "Încarcă foto" + +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Inserează link web" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nici-un mesaj." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Expeditor necunoscut - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Tu şi %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s şi dvs" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Ștergeți conversaţia" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mesaj" +msgstr[1] "%d mesaje" +msgstr[2] "%d mesaje" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Mesaj nedisponibil" + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Şterge mesaj" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Răspunde" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Element negăsit" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Editează post" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 +msgid "upload photo" +msgstr "încărcare fotografie" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 +msgid "Attach file" +msgstr "Ataşează fişier" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 +msgid "attach file" +msgstr "ataşează fişier" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 +msgid "web link" +msgstr "web link" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 +msgid "Insert video link" +msgstr "Inserează video link" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 +msgid "video link" +msgstr "video link" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 +msgid "Insert audio link" +msgstr "Inserare link audio" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 +msgid "audio link" +msgstr "audio link" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 +msgid "Set your location" +msgstr "Setează locaţia dvs" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 +msgid "set location" +msgstr "set locaţie" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 +msgid "Clear browser location" +msgstr "Curățare locație browser" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 +msgid "clear location" +msgstr "şterge locaţia" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 +msgid "Permission settings" +msgstr "Setări permisiuni" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 +msgid "CC: email addresses" +msgstr "CC: adresă email" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 +msgid "Public post" +msgstr "Public post" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 +msgid "Set title" +msgstr "Setează titlu" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 +msgid "Categories (comma-separated list)" +msgstr "Categorii (listă cu separator prin virgulă)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemplu: bob@exemplu.com, mary@exemplu.com" + +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." +msgstr "Profil negăsit." + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat." + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Răspunsul de la adresa de la distanţă, nu a fost înțeles." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Răspuns neaşteptat de la site-ul de la distanţă:" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Confirmare încheiată cu succes." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Site-ul de la distanţă a raportat:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Introducerea a eşuat sau a fost revocată." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Imposibil de stabilit fotografia de contact." + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s este acum prieten cu %2$s" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nici-o înregistrare de utilizator găsită pentru '%s'" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Se pare că, cheia de criptare a site-ului nostru s-a încurcat." + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Registrul contactului nu a fost găsit pe site-ul nostru." + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s." + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou." + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru." + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru." + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Conexiune acceptată la %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s s-a alăturat lui %2$s" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titlul evenimentului şi timpul de pornire sunt necesare." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editează eveniment" + +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "link către sursă" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2003 ../../include/nav.php:79 +msgid "Events" +msgstr "Evenimente" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crează eveniment nou" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precedent" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Next" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "ore:minute" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Detalii eveniment" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formatul este %s %s.Data de începere și Titlul sunt necesare." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Evenimentul Începe:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Cerut" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Evenimentul se Finalizează:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Reglați pentru fusul orar al vizitatorului" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descriere:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Locaţie:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titlu:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Partajează acest eveniment" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:1986 ../../include/nav.php:78 +msgid "Photos" +msgstr "Poze" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Fişiere" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Bine aţi venit la %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibil către:" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Imposibil de verificat locaţia dvs. de reşedinţă." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nici-un destinatar." + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473 +#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Vizitați profilul %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666 +msgid "Edit contact" +msgstr "Editează contact" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contactele care nu sunt membre ale unui grup" + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Friendica, versiunea" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "rulează la locaţia web" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaţi" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Module/suplimente/aplicații instalate:" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Module/suplimente/aplicații neinstalate" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Șterge Contul Meu" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Vă rugăm să introduceţi parola dvs. pentru verificare:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Dimensiunea imaginii depăşeşte limita de %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Nu s-a putut procesa imaginea." + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Fotografii de Perete" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Încărcarea imaginii a eşuat." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizare conectare aplicaţie" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Vă rugăm să vă autentificați pentru a continua." + +#: ../../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 "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a etichetat %3$s de la %2$s cu %4$s" + +#: ../../mod/photos.php:52 ../../boot.php:1989 +msgid "Photo Albums" +msgstr "Albume Photo " + +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photo Contact" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Încărcaţi Fotografii Noi" + +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "oricine" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Informaţii contact nedisponibile" + +#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:334 ../../include/user.php:341 +#: ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Poze profil" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album negăsit" + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Şterge Album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Şterge Poza" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Sigur doriți să ștergeți această fotografie?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s a fost etichetat în %2$s de către %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "o poză" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "Dimensiunea imaginii depăşeşte limita de" + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Fișierul imagine este gol." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Nici-o fotografie selectată" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Accesul la acest element este restricționat." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Încărcare Fotografii" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nume album nou:" + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "sau numele unui album existent:" + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Nu afișa un status pentru această încărcare" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Permisiuni" + +#: ../../mod/photos.php:1144 ../../mod/photos.php:1515 +#: ../../mod/settings.php:1139 +msgid "Show to Groups" +msgstr "Afișare pentru Grupuri" + +#: ../../mod/photos.php:1145 ../../mod/photos.php:1516 +#: ../../mod/settings.php:1140 +msgid "Show to Contacts" +msgstr "Afişează la Contacte" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Poze private" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Poze Publice" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Editează Album" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Afișează Întâi cele Noi" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Afișează Întâi cele Vechi" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Vizualizare Fotografie" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permisiune refuzată. Accesul la acest element poate fi restricționat." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "Fotografia nu este disponibilă" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Vezi foto" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Editează poza" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Utilizați ca și fotografie de profil" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Vizualizați la Dimensiunea Completă" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Etichete:" + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Elimină orice etichetă]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Rotire spre dreapta" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Rotire spre stânga" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Nume Nou Album" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Titlu" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Adaugă un Tag" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Poze private" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Poze Publice" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Partajează" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Vezi Album" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Poze Recente" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Niciun profil" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare." + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat." + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "Înregistrarea dvs. nu poate fi procesată." + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitare de înregistrare la %s" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului." + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine." + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'." + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor." + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "Contul dvs. OpenID (opţional):" + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "Includeți profilul dvs în directorul de membru?" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "Aderare pe acest site, este posibilă doar pe bază de invitație." + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "ID invitaţiei dvs:" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Numele Complet (de ex. Joe Smith):" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "Adresa dvs de mail:" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@$sitename'." + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "Alegeţi un pseudonim:" + +#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108 +msgid "Register" +msgstr "Înregistrare" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Importați profilul dvs. în această instanță friendica" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Nici-un cont valid găsit." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul." + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Solicitarea de resetare a parolei a fost făcută la %s" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat." + +#: ../../mod/lostpass.php:84 ../../boot.php:1175 +msgid "Password Reset" +msgstr "Resetare Parolă" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Parola a fost resetată conform solicitării." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Noua dvs. parolă este" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Salvați sau copiați noua dvs. parolă - şi apoi" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "click aici pentru logare" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Parola dumneavoastră a fost schimbată la %s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Ați uitat Parola?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Pseudonim sau Email:" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reset" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistemul este suspendat pentru întreținere" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elementul nu este disponibil." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element negăsit." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplicații" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nu există aplicații instalate." + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Ajutor:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Ajutor" + +#: ../../mod/contacts.php:104 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contact editat." +msgstr[1] "%d contacte editate." +msgstr[2] "%d de contacte editate." + +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 +msgid "Could not access contact record." +msgstr "Nu se poate accesa registrul contactului." + +#: ../../mod/contacts.php:149 +msgid "Could not locate selected profile." +msgstr "Nu se poate localiza profilul selectat." + +#: ../../mod/contacts.php:178 +msgid "Contact updated." +msgstr "Contact actualizat." + +#: ../../mod/contacts.php:278 +msgid "Contact has been blocked" +msgstr "Contactul a fost blocat" + +#: ../../mod/contacts.php:278 +msgid "Contact has been unblocked" +msgstr "Contactul a fost deblocat" + +#: ../../mod/contacts.php:288 +msgid "Contact has been ignored" +msgstr "Contactul a fost ignorat" + +#: ../../mod/contacts.php:288 +msgid "Contact has been unignored" +msgstr "Contactul a fost neignorat" + +#: ../../mod/contacts.php:299 +msgid "Contact has been archived" +msgstr "Contactul a fost arhivat" + +#: ../../mod/contacts.php:299 +msgid "Contact has been unarchived" +msgstr "Contactul a fost dezarhivat" + +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 +msgid "Do you really want to delete this contact?" +msgstr "Sigur doriți să ștergeți acest contact?" + +#: ../../mod/contacts.php:341 +msgid "Contact has been removed." +msgstr "Contactul a fost înlăturat." + +#: ../../mod/contacts.php:379 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sunteţi prieten comun cu %s" + +#: ../../mod/contacts.php:383 +#, php-format +msgid "You are sharing with %s" +msgstr "Împărtășiți cu %s" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "%s is sharing with you" +msgstr "%s împărtăşeşte cu dvs." + +#: ../../mod/contacts.php:405 +msgid "Private communications are not available for this contact." +msgstr "Comunicaţiile private nu sunt disponibile pentru acest contact." + +#: ../../mod/contacts.php:412 +msgid "(Update was successful)" +msgstr "(Actualizare a reuşit)" + +#: ../../mod/contacts.php:412 +msgid "(Update was not successful)" +msgstr "(Actualizare nu a reuşit)" + +#: ../../mod/contacts.php:414 +msgid "Suggest friends" +msgstr "Sugeraţi prieteni" + +#: ../../mod/contacts.php:418 +#, php-format +msgid "Network type: %s" +msgstr "Tipul rețelei: %s" + +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact în comun" +msgstr[1] "%d contacte în comun" +msgstr[2] "%d de contacte în comun" + +#: ../../mod/contacts.php:426 +msgid "View all contacts" +msgstr "Vezi toate contactele" + +#: ../../mod/contacts.php:434 +msgid "Toggle Blocked status" +msgstr "Comutare status Blocat" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 +msgid "Unignore" +msgstr "Anulare ignorare" + +#: ../../mod/contacts.php:440 +msgid "Toggle Ignored status" +msgstr "Comutaţi status Ignorat" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Unarchive" +msgstr "Dezarhivează" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Archive" +msgstr "Arhivează" + +#: ../../mod/contacts.php:447 +msgid "Toggle Archive status" +msgstr "Comutaţi status Arhivat" + +#: ../../mod/contacts.php:450 +msgid "Repair" +msgstr "Repară" + +#: ../../mod/contacts.php:453 +msgid "Advanced Contact Settings" +msgstr "Configurări Avansate Contacte" + +#: ../../mod/contacts.php:459 +msgid "Communications lost with this contact!" +msgstr "S-a pierdut conexiunea cu acest contact!" + +#: ../../mod/contacts.php:462 +msgid "Contact Editor" +msgstr "Editor Contact" + +#: ../../mod/contacts.php:465 +msgid "Profile Visibility" +msgstr "Vizibilitate Profil" + +#: ../../mod/contacts.php:466 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat." + +#: ../../mod/contacts.php:467 +msgid "Contact Information / Notes" +msgstr "Informaţii de Contact / Note" + +#: ../../mod/contacts.php:468 +msgid "Edit contact notes" +msgstr "Editare note de contact" + +#: ../../mod/contacts.php:474 +msgid "Block/Unblock contact" +msgstr "Blocare/Deblocare contact" + +#: ../../mod/contacts.php:475 +msgid "Ignore contact" +msgstr "Ignorare contact" + +#: ../../mod/contacts.php:476 +msgid "Repair URL settings" +msgstr "Remediere configurări URL" + +#: ../../mod/contacts.php:477 +msgid "View conversations" +msgstr "Vizualizaţi conversaţii" + +#: ../../mod/contacts.php:479 +msgid "Delete contact" +msgstr "Şterge contact" + +#: ../../mod/contacts.php:483 +msgid "Last update:" +msgstr "Ultima actualizare:" + +#: ../../mod/contacts.php:485 +msgid "Update public posts" +msgstr "Actualizare postări publice" + +#: ../../mod/contacts.php:494 +msgid "Currently blocked" +msgstr "Blocat în prezent" + +#: ../../mod/contacts.php:495 +msgid "Currently ignored" +msgstr "Ignorat în prezent" + +#: ../../mod/contacts.php:496 +msgid "Currently archived" +msgstr "Arhivat în prezent" + +#: ../../mod/contacts.php:497 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile" + +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Notificare de postări noi" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Preluare informaţii suplimentare pentru fluxuri" + +#: ../../mod/contacts.php:550 +msgid "Suggestions" +msgstr "Sugestii" + +#: ../../mod/contacts.php:553 +msgid "Suggest potential friends" +msgstr "Sugeraţi prieteni potențiali" + +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Toate Contactele" + +#: ../../mod/contacts.php:559 +msgid "Show all contacts" +msgstr "Afişează toate contactele" + +#: ../../mod/contacts.php:562 +msgid "Unblocked" +msgstr "Deblocat" + +#: ../../mod/contacts.php:565 +msgid "Only show unblocked contacts" +msgstr "Se afişează numai contactele deblocate" + +#: ../../mod/contacts.php:569 +msgid "Blocked" +msgstr "Blocat" + +#: ../../mod/contacts.php:572 +msgid "Only show blocked contacts" +msgstr "Se afişează numai contactele blocate" + +#: ../../mod/contacts.php:576 +msgid "Ignored" +msgstr "Ignorat" + +#: ../../mod/contacts.php:579 +msgid "Only show ignored contacts" +msgstr "Se afişează numai contactele ignorate" + +#: ../../mod/contacts.php:583 +msgid "Archived" +msgstr "Arhivat" + +#: ../../mod/contacts.php:586 +msgid "Only show archived contacts" +msgstr "Se afişează numai contactele arhivate" + +#: ../../mod/contacts.php:590 +msgid "Hidden" +msgstr "Ascuns" + +#: ../../mod/contacts.php:593 +msgid "Only show hidden contacts" +msgstr "Se afişează numai contactele ascunse" + +#: ../../mod/contacts.php:641 +msgid "Mutual Friendship" +msgstr "Prietenie Reciprocă" + +#: ../../mod/contacts.php:645 +msgid "is a fan of yours" +msgstr "este fanul dvs." + +#: ../../mod/contacts.php:649 +msgid "you are a fan of" +msgstr "sunteţi un fan al" + +#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Contacte" + +#: ../../mod/contacts.php:692 +msgid "Search your contacts" +msgstr "Căutare contacte" + +#: ../../mod/contacts.php:693 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Găsire:" + +#: ../../mod/contacts.php:694 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Căutare" + +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 +msgid "Update" +msgstr "Actualizare" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nici-un clip video selectat" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Clipuri video recente" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Încărcaţi Clipuri Video Noi" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Prieteni Comuni" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nici-un contact în comun" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact addăugat" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Mutaţi contul" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puteţi importa un cont dintr-un alt server Friendica." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Fişier Cont" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pentru a vă exporta contul, deplasaţi-vă la \"Configurări- >Export date personale \" şi selectaţi \"Exportare cont \"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s urmărește %3$s postată %2$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Prieteni cu %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nici-un prieten de afișat." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Etichetă eliminată" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Eliminați Eticheta Elementului" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selectați o etichetă de eliminat:" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Eliminare" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bun Venit la Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Lista de Verificare Membrii Noi" + +#: ../../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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Noțiuni de Bază" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Ghidul de Prezentare 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 "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Mergeți la Configurări" + +#: ../../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 "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită." + +#: ../../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 "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Profil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Încărcare Fotografie 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 "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editare 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 "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Cuvinte-Cheie 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 "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Conectare" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe 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 "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importare Email-uri" + +#: ../../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ţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Dute la pagina ta Contacte " + +#: ../../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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Mergeţi la Directorul Site-ului" + +#: ../../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 "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Găsire Persoane Noi" + +#: ../../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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore." + +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Groupuri" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grupați-vă Contactele" + +#: ../../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 "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "De ce nu sunt Postările Mele Publice?" + +#: ../../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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obţinerea de Ajutor" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navigați la Secțiunea Ajutor" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program." + +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Eliminare termen" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Căutări Salvate" + +#: ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Căutare" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Nici-un rezultat." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limita totală a invitațiilor a fost depăşită." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Nu este o adresă vaildă de email." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Vă rugăm să veniți alături de noi pe Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Livrarea mesajului a eşuat." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mesaj trimis." +msgstr[1] "%d mesaje trimise." +msgstr[2] "%d de mesaje trimise." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nu mai aveți invitaţii disponibile" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public Friendica." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Trimiteți invitaţii" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Introduceţi adresele de email, una pe linie:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Va fi nevoie să furnizați acest cod de invitaţie: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Caracteristici suplimentare" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "Afișare" + +#: ../../mod/settings.php:52 ../../mod/settings.php:775 +msgid "Social Networks" +msgstr "Rețele Sociale" + +#: ../../mod/settings.php:62 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Delegații" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Aplicații Conectate" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Exportare date personale" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Ștergere cont" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Lipsesc unele date importante!" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate." + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "Configurările de email au fost actualizate." + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "Caracteristici actualizate" + +#: ../../mod/settings.php:319 +msgid "Relocate message has been send to your contacts" +msgstr "Mesajul despre mutare, a fost trimis către contactele dvs." + +#: ../../mod/settings.php:333 +msgid "Passwords do not match. Password unchanged." +msgstr "Parolele nu coincid. Parolă neschimbată." + +#: ../../mod/settings.php:338 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Parolele necompletate nu sunt permise. Parolă neschimbată." + +#: ../../mod/settings.php:346 +msgid "Wrong password." +msgstr "Parolă greșită." + +#: ../../mod/settings.php:357 +msgid "Password changed." +msgstr "Parola a fost schimbată." + +#: ../../mod/settings.php:359 +msgid "Password update failed. Please try again." +msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." + +#: ../../mod/settings.php:424 +msgid " Please use a shorter name." +msgstr "Vă rugăm să utilizaţi un nume mai scurt." + +#: ../../mod/settings.php:426 +msgid " Name too short." +msgstr "Numele este prea scurt." + +#: ../../mod/settings.php:435 +msgid "Wrong Password" +msgstr "Parolă Greșită" + +#: ../../mod/settings.php:440 +msgid " Not valid email." +msgstr "Nu este un email valid." + +#: ../../mod/settings.php:446 +msgid " Cannot change to that email." +msgstr "Nu poate schimba cu acest email." + +#: ../../mod/settings.php:501 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup." + +#: ../../mod/settings.php:505 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup." + +#: ../../mod/settings.php:535 +msgid "Settings updated." +msgstr "Configurări actualizate." + +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 +msgid "Add application" +msgstr "Adăugare aplicaţie" + +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +msgid "Consumer Key" +msgstr "Cheia Utilizatorului" + +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Consumer Secret" +msgstr "Cheia Secretă a Utilizatorului" + +#: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Redirect" +msgstr "Redirecţionare" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 +msgid "Icon url" +msgstr "URL pictogramă" + +#: ../../mod/settings.php:626 +msgid "You can't edit this application." +msgstr "Nu puteți edita această aplicaţie." + +#: ../../mod/settings.php:669 +msgid "Connected Apps" +msgstr "Aplicații Conectate" + +#: ../../mod/settings.php:673 +msgid "Client key starts with" +msgstr "Cheia clientului începe cu" + +#: ../../mod/settings.php:674 +msgid "No name" +msgstr "Fără nume" + +#: ../../mod/settings.php:675 +msgid "Remove authorization" +msgstr "Eliminare autorizare" + +#: ../../mod/settings.php:687 +msgid "No Plugin settings configured" +msgstr "Nici-o configurare stabilită pentru modul" + +#: ../../mod/settings.php:695 +msgid "Plugin Settings" +msgstr "Configurări Modul" + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Off" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "On" + +#: ../../mod/settings.php:717 +msgid "Additional Features" +msgstr "Caracteristici Suplimentare" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Suportul încorporat pentru conectivitatea %s este %s" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "enabled" +msgstr "activat" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "disabled" +msgstr "dezactivat" + +#: ../../mod/settings.php:732 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:768 +msgid "Email access is disabled on this site." +msgstr "Accesul de email este dezactivat pe acest site." + +#: ../../mod/settings.php:780 +msgid "Email/Mailbox Setup" +msgstr "Configurare E-Mail/Căsuță poştală" + +#: ../../mod/settings.php:781 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală." + +#: ../../mod/settings.php:782 +msgid "Last successful email check:" +msgstr "Ultima verificare, cu succes, a email-ului:" + +#: ../../mod/settings.php:784 +msgid "IMAP server name:" +msgstr "Nume server IMAP:" + +#: ../../mod/settings.php:785 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: ../../mod/settings.php:786 +msgid "Security:" +msgstr "Securitate:" + +#: ../../mod/settings.php:786 ../../mod/settings.php:791 +msgid "None" +msgstr "Nimic" + +#: ../../mod/settings.php:787 +msgid "Email login name:" +msgstr "Nume email autentificare:" + +#: ../../mod/settings.php:788 +msgid "Email password:" +msgstr "Parolă de e-mail:" + +#: ../../mod/settings.php:789 +msgid "Reply-to address:" +msgstr "Adresă pentru răspuns:" + +#: ../../mod/settings.php:790 +msgid "Send public posts to all email contacts:" +msgstr "Trimiteți postările publice la toate contactele de email:" + +#: ../../mod/settings.php:791 +msgid "Action after import:" +msgstr "Acţiune după importare:" + +#: ../../mod/settings.php:791 +msgid "Mark as seen" +msgstr "Marcați ca și vizualizat" + +#: ../../mod/settings.php:791 +msgid "Move to folder" +msgstr "Mutare în dosar" + +#: ../../mod/settings.php:792 +msgid "Move to folder:" +msgstr "Mutare în dosarul:" + +#: ../../mod/settings.php:870 +msgid "Display Settings" +msgstr "Preferințe Ecran" + +#: ../../mod/settings.php:876 ../../mod/settings.php:890 +msgid "Display Theme:" +msgstr "Temă Afişaj:" + +#: ../../mod/settings.php:877 +msgid "Mobile Theme:" +msgstr "Temă pentru Mobile:" + +#: ../../mod/settings.php:878 +msgid "Update browser every xx seconds" +msgstr "Actualizare browser la fiecare fiecare xx secunde" + +#: ../../mod/settings.php:878 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minim 10 secunde, fără un maxim" + +#: ../../mod/settings.php:879 +msgid "Number of items to display per page:" +msgstr "Numărul de elemente de afişat pe pagină:" + +#: ../../mod/settings.php:879 ../../mod/settings.php:880 +msgid "Maximum of 100 items" +msgstr "Maxim 100 de elemente" + +#: ../../mod/settings.php:880 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:" + +#: ../../mod/settings.php:881 +msgid "Don't show emoticons" +msgstr "Nu afișa emoticoane" + +#: ../../mod/settings.php:882 +msgid "Don't show notices" +msgstr "Nu afișa notificări" + +#: ../../mod/settings.php:883 +msgid "Infinite scroll" +msgstr "Derulare infinită" + +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Tipuri de Utilizator" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Tipuri de Comunitare" + +#: ../../mod/settings.php:962 +msgid "Normal Account Page" +msgstr "Pagină de Cont Simplu" + +#: ../../mod/settings.php:963 +msgid "This account is a normal personal profile" +msgstr "Acest cont este un profil personal normal" + +#: ../../mod/settings.php:966 +msgid "Soapbox Page" +msgstr "Pagină Soapbox" + +#: ../../mod/settings.php:967 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare" + +#: ../../mod/settings.php:970 +msgid "Community Forum/Celebrity Account" +msgstr "Cont Comunitate Forum/Celebritate" + +#: ../../mod/settings.php:971 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare" + +#: ../../mod/settings.php:974 +msgid "Automatic Friend Page" +msgstr "Pagină Prietenie Automată" + +#: ../../mod/settings.php:975 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni" + +#: ../../mod/settings.php:978 +msgid "Private Forum [Experimental]" +msgstr "Forum Privat [Experimental]" + +#: ../../mod/settings.php:979 +msgid "Private forum - approved members only" +msgstr "Forum Privat - numai membrii aprobați" + +#: ../../mod/settings.php:991 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:991 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opţional) Permite acest OpenID să se conecteze la acest cont." + +#: ../../mod/settings.php:1001 +msgid "Publish your default profile in your local site directory?" +msgstr "Publicați profilul dvs. implicit în directorul site-ului dvs. local?" + +#: ../../mod/settings.php:1007 +msgid "Publish your default profile in the global social directory?" +msgstr "Publicați profilul dvs. implicit în directorul social global?" + +#: ../../mod/settings.php:1015 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?" + +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?" + +#: ../../mod/settings.php:1024 +msgid "Allow friends to post to your profile page?" +msgstr "Permiteți prietenilor să posteze pe pagina dvs. de profil ?" + +#: ../../mod/settings.php:1030 +msgid "Allow friends to tag your posts?" +msgstr "Permiteți prietenilor să vă eticheteze postările?" + +#: ../../mod/settings.php:1036 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?" + +#: ../../mod/settings.php:1042 +msgid "Permit unknown people to send you private mail?" +msgstr "Permiteți persoanelor necunoscute să vă trimită mesaje private?" + +#: ../../mod/settings.php:1050 +msgid "Profile is not published." +msgstr "Profilul nu este publicat." + +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "sau" + +#: ../../mod/settings.php:1058 +msgid "Your Identity Address is" +msgstr "Adresa Dvs. de Identitate este" + +#: ../../mod/settings.php:1069 +msgid "Automatically expire posts after this many days:" +msgstr "Postările vor expira automat după atâtea zile:" + +#: ../../mod/settings.php:1069 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse" + +#: ../../mod/settings.php:1070 +msgid "Advanced expiration settings" +msgstr "Configurări Avansate de Expirare" + +#: ../../mod/settings.php:1071 +msgid "Advanced Expiration" +msgstr "Expirare Avansată" + +#: ../../mod/settings.php:1072 +msgid "Expire posts:" +msgstr "Postările expiră:" + +#: ../../mod/settings.php:1073 +msgid "Expire personal notes:" +msgstr "Notele personale expiră:" + +#: ../../mod/settings.php:1074 +msgid "Expire starred posts:" +msgstr "Postările favorite expiră:" + +#: ../../mod/settings.php:1075 +msgid "Expire photos:" +msgstr "Fotografiile expiră:" + +#: ../../mod/settings.php:1076 +msgid "Only expire posts by others:" +msgstr "Expiră numai postările altora:" + +#: ../../mod/settings.php:1102 +msgid "Account Settings" +msgstr "Configurări Cont" + +#: ../../mod/settings.php:1110 +msgid "Password Settings" +msgstr "Configurări Parolă" + +#: ../../mod/settings.php:1111 +msgid "New Password:" +msgstr "Parola Nouă:" + +#: ../../mod/settings.php:1112 +msgid "Confirm:" +msgstr "Confirm:" + +#: ../../mod/settings.php:1112 +msgid "Leave password fields blank unless changing" +msgstr "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați" + +#: ../../mod/settings.php:1113 +msgid "Current Password:" +msgstr "Parola Curentă:" + +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 +msgid "Your current password to confirm the changes" +msgstr "Parola curentă pentru a confirma modificările" + +#: ../../mod/settings.php:1114 +msgid "Password:" +msgstr "Parola:" + +#: ../../mod/settings.php:1118 +msgid "Basic Settings" +msgstr "Configurări de Bază" + +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nume complet:" + +#: ../../mod/settings.php:1120 +msgid "Email Address:" +msgstr "Adresa de email:" + +#: ../../mod/settings.php:1121 +msgid "Your Timezone:" +msgstr "Fusul dvs. orar:" + +#: ../../mod/settings.php:1122 +msgid "Default Post Location:" +msgstr "Locația Implicită pentru Postări" + +#: ../../mod/settings.php:1123 +msgid "Use Browser Location:" +msgstr "Folosește Locația Navigatorului:" + +#: ../../mod/settings.php:1126 +msgid "Security and Privacy Settings" +msgstr "Configurări de Securitate și Confidențialitate" + +#: ../../mod/settings.php:1128 +msgid "Maximum Friend Requests/Day:" +msgstr "Solicitări de Prietenie, Maxime/Zi" + +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 +msgid "(to prevent spam abuse)" +msgstr "(Pentru a preveni abuzul de tip spam)" + +#: ../../mod/settings.php:1129 +msgid "Default Post Permissions" +msgstr "Permisiuni Implicite Postări" + +#: ../../mod/settings.php:1130 +msgid "(click to open/close)" +msgstr "(apăsați pentru a deschide/închide)" + +#: ../../mod/settings.php:1141 +msgid "Default Private Post" +msgstr "Postare Privată Implicită" + +#: ../../mod/settings.php:1142 +msgid "Default Public Post" +msgstr "Postare Privată Implicită" + +#: ../../mod/settings.php:1146 +msgid "Default Permissions for New Posts" +msgstr "Permisiuni Implicite pentru Postările Noi" + +#: ../../mod/settings.php:1158 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de mesaje private pe zi, de la persoanele necunoscute:" + +#: ../../mod/settings.php:1161 +msgid "Notification Settings" +msgstr "Configurări de Notificare" + +#: ../../mod/settings.php:1162 +msgid "By default post a status message when:" +msgstr "Implicit, postează un mesaj de stare atunci când:" + +#: ../../mod/settings.php:1163 +msgid "accepting a friend request" +msgstr "se acceptă o solicitare de prietenie" + +#: ../../mod/settings.php:1164 +msgid "joining a forum/community" +msgstr "se aderă la un forum/o comunitate" + +#: ../../mod/settings.php:1165 +msgid "making an interesting profile change" +msgstr "se face o modificări de profilinteresantă" + +#: ../../mod/settings.php:1166 +msgid "Send a notification email when:" +msgstr "Trimiteți o notificare email atunci când:" + +#: ../../mod/settings.php:1167 +msgid "You receive an introduction" +msgstr "Primiți o introducere" + +#: ../../mod/settings.php:1168 +msgid "Your introductions are confirmed" +msgstr "Introducerile dvs. sunt confirmate" + +#: ../../mod/settings.php:1169 +msgid "Someone writes on your profile wall" +msgstr "Cineva scrie pe perete dvs. de profil" + +#: ../../mod/settings.php:1170 +msgid "Someone writes a followup comment" +msgstr "Cineva scrie un comentariu de urmărire" + +#: ../../mod/settings.php:1171 +msgid "You receive a private message" +msgstr "Primiți un mesaj privat" + +#: ../../mod/settings.php:1172 +msgid "You receive a friend suggestion" +msgstr "Primiți o sugestie de prietenie" + +#: ../../mod/settings.php:1173 +msgid "You are tagged in a post" +msgstr "Sunteți etichetat într-o postare" + +#: ../../mod/settings.php:1174 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sunteți abordat/incitat/etc. într-o postare" + +#: ../../mod/settings.php:1177 +msgid "Advanced Account/Page Type Settings" +msgstr "Configurări Avansate Cont/Tip Pagină" + +#: ../../mod/settings.php:1178 +msgid "Change the behaviour of this account for special situations" +msgstr "Modificați comportamentul acestui cont pentru situațiile speciale" + +#: ../../mod/settings.php:1181 +msgid "Relocate" +msgstr "Mutare" + +#: ../../mod/settings.php:1182 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton." + +#: ../../mod/settings.php:1183 +msgid "Resend relocate message to contacts" +msgstr "Retrimiteți contactelor, mesajul despre mutare" + +#: ../../mod/display.php:263 +msgid "Item has been removed." +msgstr "Elementul a fost eliminat." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Căutare Persoane" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nici-o potrivire" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilul a fost şters." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Profilul nou a fost creat." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil indisponibil pentru clonare." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Numele de Profil este necesar." + +#: ../../mod/profiles.php:321 +msgid "Marital Status" +msgstr "Starea Civilă" + +#: ../../mod/profiles.php:325 +msgid "Romantic Partner" +msgstr "Partener Romantic" + +#: ../../mod/profiles.php:329 +msgid "Likes" +msgstr "Likes" + +#: ../../mod/profiles.php:333 +msgid "Dislikes" +msgstr "Antipatii" + +#: ../../mod/profiles.php:337 +msgid "Work/Employment" +msgstr "Loc de Muncă/Slujbă" + +#: ../../mod/profiles.php:340 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:344 +msgid "Political Views" +msgstr "Viziuni Politice" + +#: ../../mod/profiles.php:348 +msgid "Gender" +msgstr "Sex" + +#: ../../mod/profiles.php:352 +msgid "Sexual Preference" +msgstr "Preferinţe Sexuale" + +#: ../../mod/profiles.php:356 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:360 +msgid "Interests" +msgstr "Interese" + +#: ../../mod/profiles.php:364 +msgid "Address" +msgstr "Addresă" + +#: ../../mod/profiles.php:371 +msgid "Location" +msgstr "Locaţie" + +#: ../../mod/profiles.php:454 +msgid "Profile updated." +msgstr "Profil actualizat." + +#: ../../mod/profiles.php:525 +msgid " and " +msgstr "şi" + +#: ../../mod/profiles.php:533 +msgid "public profile" +msgstr "profil public" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a modificat %2$s în “%3$s”" + +#: ../../mod/profiles.php:537 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Vizitați %2$s lui %1$s'" + +#: ../../mod/profiles.php:540 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s și-a actualizat %2$s, modificând %3$s." + +#: ../../mod/profiles.php:613 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?" + +#: ../../mod/profiles.php:633 +msgid "Edit Profile Details" +msgstr "Editare Detalii Profil" + +#: ../../mod/profiles.php:635 +msgid "Change Profile Photo" +msgstr "Modificați Fotografia de Profil" + +#: ../../mod/profiles.php:636 +msgid "View this profile" +msgstr "Vizualizați acest profil" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Creaţi un profil nou folosind aceste configurări" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Clonați acest profil" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Ştergeţi acest profil" + +#: ../../mod/profiles.php:640 +msgid "Profile Name:" +msgstr "Nume profil:" + +#: ../../mod/profiles.php:641 +msgid "Your Full Name:" +msgstr "Numele Complet:" + +#: ../../mod/profiles.php:642 +msgid "Title/Description:" +msgstr "Titlu/Descriere" + +#: ../../mod/profiles.php:643 +msgid "Your Gender:" +msgstr "Sexul:" + +#: ../../mod/profiles.php:644 +#, php-format +msgid "Birthday (%s):" +msgstr "Zi Naştere (%s):" + +#: ../../mod/profiles.php:645 +msgid "Street Address:" +msgstr "Strada:" + +#: ../../mod/profiles.php:646 +msgid "Locality/City:" +msgstr "Localitate/Oraș:" + +#: ../../mod/profiles.php:647 +msgid "Postal/Zip Code:" +msgstr "Cod poștal:" + +#: ../../mod/profiles.php:648 +msgid "Country:" +msgstr "Ţară:" + +#: ../../mod/profiles.php:649 +msgid "Region/State:" +msgstr "Regiunea/Județul:" + +#: ../../mod/profiles.php:650 +msgid " Marital Status:" +msgstr " Stare Civilă:" + +#: ../../mod/profiles.php:651 +msgid "Who: (if applicable)" +msgstr "Cine: (dacă este cazul)" + +#: ../../mod/profiles.php:652 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemple: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:653 +msgid "Since [date]:" +msgstr "Din [data]:" + +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Orientare Sexuală:" + +#: ../../mod/profiles.php:655 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Domiciliu:" + +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Viziuni Politice:" + +#: ../../mod/profiles.php:658 +msgid "Religious Views:" +msgstr "Viziuni Religioase:" + +#: ../../mod/profiles.php:659 +msgid "Public Keywords:" +msgstr "Cuvinte cheie Publice:" + +#: ../../mod/profiles.php:660 +msgid "Private Keywords:" +msgstr "Cuvinte cheie Private:" + +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Îmi place:" + +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Nu-mi place:" + +#: ../../mod/profiles.php:663 +msgid "Example: fishing photography software" +msgstr "Exemplu: pescuit fotografii software" + +#: ../../mod/profiles.php:664 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)" + +#: ../../mod/profiles.php:665 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)" + +#: ../../mod/profiles.php:666 +msgid "Tell us about yourself..." +msgstr "Spune-ne despre tine ..." + +#: ../../mod/profiles.php:667 +msgid "Hobbies/Interests" +msgstr "Hobby/Interese" + +#: ../../mod/profiles.php:668 +msgid "Contact information and Social Networks" +msgstr "Informaţii de Contact şi Reţele Sociale" + +#: ../../mod/profiles.php:669 +msgid "Musical interests" +msgstr "Preferințe muzicale" + +#: ../../mod/profiles.php:670 +msgid "Books, literature" +msgstr "Cărti, literatură" + +#: ../../mod/profiles.php:671 +msgid "Television" +msgstr "Programe TV" + +#: ../../mod/profiles.php:672 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultură/divertisment" + +#: ../../mod/profiles.php:673 +msgid "Love/romance" +msgstr "Dragoste/romantism" + +#: ../../mod/profiles.php:674 +msgid "Work/employment" +msgstr "Loc de Muncă/Slujbă" + +#: ../../mod/profiles.php:675 +msgid "School/education" +msgstr "Școală/educație" + +#: ../../mod/profiles.php:680 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Acesta este profilul dvs. public.
El poate fi vizibil pentru oricine folosește internetul." + +#: ../../mod/profiles.php:690 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Vârsta:" + +#: ../../mod/profiles.php:729 +msgid "Edit/Manage Profiles" +msgstr "Editare/Gestionare Profile" + +#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499 +msgid "Change profile photo" +msgstr "Modificați Fotografia de Profil" + +#: ../../mod/profiles.php:731 ../../boot.php:1474 +msgid "Create New Profile" +msgstr "Creați Profil Nou" + +#: ../../mod/profiles.php:742 ../../boot.php:1484 +msgid "Profile Image" +msgstr "Imagine profil" + +#: ../../mod/profiles.php:744 ../../boot.php:1487 +msgid "visible to everybody" +msgstr "vizibil pentru toata lumea" + +#: ../../mod/profiles.php:745 ../../boot.php:1488 +msgid "Edit visibility" +msgstr "Editare vizibilitate" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "link" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Exportare cont" + +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Exportare tot" + +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} doreşte să vă fie prieten" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} v-a trimis un mesaj" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} a solicitat înregistrarea" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} a comentat la articolul postat de %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} a apreciat articolul postat de %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} nu a apreciat articolul postat de %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} este acum prieten cu %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} a postat" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a etichetat articolul postat de %s cu #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} v-a menţionat într-o postare" + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Nimic nou aici" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Ştergeţi notificările" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponibil." + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Comunitate" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Salvare în Dosar:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- selectare -" + +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 +msgid "Save" +msgstr "Salvare" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Sau - ați încercat să încărcaţi un fişier gol?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Fişierul depăşeşte dimensiunea limită de %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Încărcarea fișierului a eşuat." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identificator profil, invalid." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor Vizibilitate Profil" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Vizibil Pentru" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Toate Contactele (cu acces profil securizat)" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Sigur doriți să ștergeți acesta sugestie?" + +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Sugestii de Prietenie" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore." + +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Conectare" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorare/Ascundere" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesul interzis." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s îi urează bun venit lui %2$s" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Administrare Identităţii şi/sau Pagini" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \"" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Selectaţi o identitate de gestionat:" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Nici-un delegat potenţial de pagină, nu a putut fi localizat." + +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Delegare Gestionare Pagină" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină." + +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Gestionari Existenți Pagină" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Delegați Existenți Pagină" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Potenţiali Delegaţi" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Adăugare" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Nu există intrări." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Nici-un contact." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Vezi Contacte" + +#: ../../mod/notes.php:44 ../../boot.php:2010 +msgid "Personal Notes" +msgstr "Note Personale" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Abordare/Atragerea atenției" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "abordați, atrageți atenția sau faceți alte lucruri cuiva" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatar" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Alegeți ce doriți să faceți cu destinatarul" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Faceți acest articol privat" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Director Global" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Căutați pe acest site" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Director Site" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Sex:" + +#: ../../mod/directory.php:136 ../../boot.php:1515 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Sex:" + +#: ../../mod/directory.php:138 ../../boot.php:1518 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../boot.php:1520 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Despre:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:133 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversie Oră" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v" + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Fus orar UTC: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fusul orar curent: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locală convertită: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Vă rugăm să vă selectaţi fusul orar:" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Postat cu succes." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Imaginea a fost încărcată, dar decuparea imaginii a eşuat." + +#: ../../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 "Reducerea dimensiunea imaginii [%s] a eşuat." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Nu s-a putut procesa imaginea." + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Încărcare Fișier:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Selectați un profil:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Încărcare" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "omiteți acest pas" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "selectaţi o fotografie din albumele dvs. foto" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Decupare Imagine" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editare Realizată" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Imaginea a fost încărcată cu succes" + +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Serverul de Comunicații Friendica - Instalare" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Nu se poate face conectarea cu baza de date." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Nu se poate crea tabelul." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Baza dvs. de date Friendica, a fost instalată." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Verificare sistem" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Reverificare" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Conexiunea cu baza de date" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Nume Server Bază de date" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nume Autentificare Bază de date" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Parola de Autentificare Bază de date" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nume Bază de date" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Adresa de email a administratorului de site" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web." + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs." + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Configurări Site" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web." + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' " + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Calea de executare PHP" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea." + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "linie comandă PHP" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Versiune PHP identificată:" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "Versiune binară PHP-cli" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generare chei de criptare" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "Modulul PHP libCurl" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "Modulul PHP grafică GD" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "Modulul PHP OpenSSL" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "Modulul PHP mysqli" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "Modulul PHP mb_string" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Modulul Apache mod_rewrite" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Eroare: modulul PHP mysqli este necesar dar nu este instalat." + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat." + +#: ../../mod/install.php:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru." + +#: ../../mod/install.php:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica." + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni." + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php este inscriptibil" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea." + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica." + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar." + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 este inscriptibil" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului." + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "Funcția de rescriere Url rewrite, funcţionează." + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "Erori întâlnite la crearea tabelelor bazei de date." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Ce urmează

" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupul a fost creat." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Grupul nu se poate crea." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Grupul nu a fost găsit." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Numele grupului a fost schimbat." + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Salvare Grup" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Creaţi un grup de contacte/prieteni." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nume Grup:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Grupul a fost eliminat." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nu se poate elimina grupul." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Editor Grup" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membri" + +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Membrii" + +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "Grupul este gol" + +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Grup:" + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Vizualizare în context" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Cont aprobat." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Înregistrare revocată pentru %s" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Vă rugăm să vă autentificați." + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Potrivire Profil" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "are interese pentru:" + +#: ../../mod/item.php:110 +msgid "Unable to locate original post." +msgstr "Nu se poate localiza postarea originală." + +#: ../../mod/item.php:319 +msgid "Empty post discarded." +msgstr "Postarea goală a fost eliminată." + +#: ../../mod/item.php:891 +msgid "System error. Post not saved." +msgstr "Eroare de sistem. Articolul nu a fost salvat." + +#: ../../mod/item.php:917 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica." + +#: ../../mod/item.php:919 +#, php-format +msgid "You may visit them online at %s" +msgstr "Îi puteți vizita profilul online la %s" + +#: ../../mod/item.php:920 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje." + +#: ../../mod/item.php:924 +#, php-format +msgid "%s posted an update." +msgstr "%s a postat o actualizare." + +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s este momentan %2$s" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stare de spirit" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Rezultatele Căutării Pentru:" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "add" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Ordonare Comentarii" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Sortare după Data Comentariului" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Ordonare Postări" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Sortare după Data Postării" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Postări ce vă menționează sau vă implică" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nou" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Flux Activități - după dată" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Linkuri partajate" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Legături Interesante" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Cu steluță" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Postări Favorite" + +#: ../../mod/network.php:457 +#, 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] "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură." +msgstr[1] "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură." +msgstr[2] "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură." + +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Mesajele private către acest grup sunt supuse riscului de divulgare publică." + +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Contact: " + +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Mesajele private către această persoană sunt supuse riscului de divulgare publică." + +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Invalid contact." + +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Configurările Contactului au fost aplicate." + +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Actualizarea Contactului a eșuat." + +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Remediere Configurări Contact" + +#: ../../mod/crepair.php:139 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri." + +#: ../../mod/crepair.php:140 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină." + +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Reveniţi la editorul de contact" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Pseudonim Cont" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Nume_etichetă - suprascrie Numele/Pseudonimul" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "URL Cont" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "URL Solicitare Prietenie" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "URL Confirmare Prietenie" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "Punct final URL Notificare" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "URL Sondaj/Flux" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Fotografie Nouă de la acest URL" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Auto la Distanţă" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Postări în oglindă de la acest contact" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact." + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "Postările şi conversaţiile dvs." + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina dvs. de profil" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Contactele dvs." + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Fotografiile dvs." + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Evenimentele dvs." + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Note Personale" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Fotografii dvs. personale" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Community Pagini" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profile de Comunitate" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimii utilizatori" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimele aprecieri" + +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "eveniment" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultimele fotografii" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Găsire Prieteni" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Director Local" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Interese Similare" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Invită Prieteni" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Straturi Pământ" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Stabilire factor de magnificare pentru Straturi Pământ" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Stabilire longitudine (X) pentru Straturi Pământ" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Stabilire latitudine (Y) pentru Straturi Pământ" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Ajutor sau @NouAici ?" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Conectare Servicii" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "nu afișa" + +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "afișare" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Afişare/ascundere casete din coloana din dreapta:" + +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Configurări Temă" + +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Stabilire dimensiune font pentru postări şi comentarii" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stabilire înălțime linie pentru postări şi comentarii" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stabilire rezoluţie pentru coloana din mijloc" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stabilire schemă de culori" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Stabilire factor de magnificare pentru Straturi Pământ" + +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Stabilire stil" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stabilire schemă de culori" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Aliniere" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Stânga" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrat" + +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schemă culoare" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensiune font postări" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensiune font zone text" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stabilire lăţime temă" + +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Ștergeți acest element?" + +#: ../../boot.php:695 +msgid "show fewer" +msgstr "afișare mai puține" + +#: ../../boot.php:1023 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare." + +#: ../../boot.php:1025 +#, php-format +msgid "Update Error at %s" +msgstr "Eroare de actualizare la %s" + +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Creaţi un Cont Nou" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Deconectare" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Login" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Pseudonimul sau Adresa de email:" + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Parola:" + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Reține autentificarea" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "Sau conectaţi-vă utilizând OpenID:" + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Ați uitat parola?" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Condiții de Utilizare Site Web" + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "condiții de utilizare" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Politica de Confidențialitate Site Web" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "politica de confidențialitate" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "Contul solicitat nu este disponibil." + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Editare profil" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Mesaj" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profile" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Gestionare/editare profile" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[azi]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Memento Zile naştere " + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Zi;e Naştere această săptămînă:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Fără descriere]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Memento Eveniment" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Evenimente în această săptămână:" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Status Mesaje şi Postări" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Detalii Profil" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Clipuri video" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Evenimente şi Calendar" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Numai Dvs. Puteţi Vizualiza" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Caracteristici Generale" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profile Multiple" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Capacitatea de a crea profile multiple" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Caracteristici Compoziţie Postare" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor Text Îmbogățit" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Activare editor text îmbogățit" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Previzualizare Postare" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-menţionare Forumuri" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL." + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Aplicaţii widget de Rețea în Bara Laterală" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Căutare după Dată" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Abilitatea de a selecta postări după intervalele de timp" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtru Grup" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtru Reţea" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Salvați termenii de căutare pentru reutilizare" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "File Reţea" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Filă Personală de Reţea" + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat" + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Filă Nouă de Reţea" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Filă Legături Distribuite în Rețea" + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Permiteți filei să afişeze numai postările din Reţea ce conțin legături" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Instrumente Postare/Comentariu" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Ştergere Multiplă" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selectaţi şi ştergeţi postări/comentarii multiple simultan" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editare Postări Trimise" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editarea şi corectarea postărilor şi comentariilor după postarea lor" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Etichetare" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Capacitatea de a eticheta postările existente" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Categorii Postări" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Adăugaţi categorii la postările dvs." + +#: ../../include/features.php:60 ../../include/contact_widgets.php:103 +msgid "Saved Folders" +msgstr "Dosare Salvate" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Capacitatea de a atribui postări în dosare" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Respingere Postări" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Capacitatea de a marca postări/comentarii ca fiind neplăcute" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Postări cu Steluță" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacitatea de a marca posturile speciale cu o stea ca şi indicator" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Deconectat." + +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." + +#: ../../include/auth.php:128 ../../include/user.php:66 +msgid "The error message was:" +msgstr "Mesajul de eroare a fost:" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Începe:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Se finalizează:" + +#: ../../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 "Zile Naştere :" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Vârsta:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "pentru %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Etichete:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interese:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informaţii de Contact şi Reţele Sociale:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Preferințe muzicale:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Cărti, literatură:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Programe TV:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultură/divertisment:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Dragoste/Romantism:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Loc de Muncă/Slujbă:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Școală/educatie:" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[fără subiect]" + +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "pe Last.fm" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "mai noi" + +#: ../../include/text.php:298 +msgid "older" +msgstr "mai vechi" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "preced" + +#: ../../include/text.php:305 +msgid "first" +msgstr "prima" + +#: ../../include/text.php:337 +msgid "last" +msgstr "ultima" + +#: ../../include/text.php:340 +msgid "next" +msgstr "următor" + +#: ../../include/text.php:853 +msgid "No contacts" +msgstr "Nici-un contact" + +#: ../../include/text.php:862 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contact" +msgstr[1] "%d Contacte" +msgstr[2] "%d de Contacte" + +#: ../../include/text.php:1003 +msgid "poke" +msgstr "abordare" + +#: ../../include/text.php:1003 ../../include/conversation.php:211 +msgid "poked" +msgstr "a fost abordat(ă)" + +#: ../../include/text.php:1004 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1004 +msgid "pinged" +msgstr "i s-a trimis ping" + +#: ../../include/text.php:1005 +msgid "prod" +msgstr "prod" + +#: ../../include/text.php:1005 +msgid "prodded" +msgstr "i s-a atras atenția" + +#: ../../include/text.php:1006 +msgid "slap" +msgstr "plesnire" + +#: ../../include/text.php:1006 +msgid "slapped" +msgstr "a fost plesnit(ă)" + +#: ../../include/text.php:1007 +msgid "finger" +msgstr "indicare" + +#: ../../include/text.php:1007 +msgid "fingered" +msgstr "a fost indicat(ă)" + +#: ../../include/text.php:1008 +msgid "rebuff" +msgstr "respingere" + +#: ../../include/text.php:1008 +msgid "rebuffed" +msgstr "a fost respins(ă)" + +#: ../../include/text.php:1022 +msgid "happy" +msgstr "fericit(ă)" + +#: ../../include/text.php:1023 +msgid "sad" +msgstr "trist(ă)" + +#: ../../include/text.php:1024 +msgid "mellow" +msgstr "trist(ă)" + +#: ../../include/text.php:1025 +msgid "tired" +msgstr "obosit(ă)" + +#: ../../include/text.php:1026 +msgid "perky" +msgstr "arogant(ă)" + +#: ../../include/text.php:1027 +msgid "angry" +msgstr "supărat(ă)" + +#: ../../include/text.php:1028 +msgid "stupified" +msgstr "stupefiat(ă)" + +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "nedumerit(ă)" + +#: ../../include/text.php:1030 +msgid "interested" +msgstr "interesat(ă)" + +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "amarnic" + +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "vesel(ă)" + +#: ../../include/text.php:1033 +msgid "alive" +msgstr "plin(ă) de viață" + +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "enervat(ă)" + +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "neliniştit(ă)" + +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "irascibil(ă)" + +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "perturbat(ă)" + +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "frustrat(ă)" + +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "motivat(ă)" + +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "relaxat(ă)" + +#: ../../include/text.php:1041 +msgid "surprised" +msgstr "surprins(ă)" + +#: ../../include/text.php:1209 +msgid "Monday" +msgstr "Luni" + +#: ../../include/text.php:1209 +msgid "Tuesday" +msgstr "Marţi" + +#: ../../include/text.php:1209 +msgid "Wednesday" +msgstr "Miercuri" + +#: ../../include/text.php:1209 +msgid "Thursday" +msgstr "Joi" + +#: ../../include/text.php:1209 +msgid "Friday" +msgstr "Vineri" + +#: ../../include/text.php:1209 +msgid "Saturday" +msgstr "Sâmbătă" + +#: ../../include/text.php:1209 +msgid "Sunday" +msgstr "Duminică" + +#: ../../include/text.php:1213 +msgid "January" +msgstr "Ianuarie" + +#: ../../include/text.php:1213 +msgid "February" +msgstr "Februarie" + +#: ../../include/text.php:1213 +msgid "March" +msgstr "Martie" + +#: ../../include/text.php:1213 +msgid "April" +msgstr "Aprilie" + +#: ../../include/text.php:1213 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1213 +msgid "June" +msgstr "Iunie" + +#: ../../include/text.php:1213 +msgid "July" +msgstr "Iulie" + +#: ../../include/text.php:1213 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1213 +msgid "September" +msgstr "Septembrie" + +#: ../../include/text.php:1213 +msgid "October" +msgstr "Octombrie" + +#: ../../include/text.php:1213 +msgid "November" +msgstr "Noiembrie" + +#: ../../include/text.php:1213 +msgid "December" +msgstr "Decembrie" + +#: ../../include/text.php:1432 +msgid "bytes" +msgstr "octeţi" + +#: ../../include/text.php:1456 ../../include/text.php:1468 +msgid "Click to open/close" +msgstr "Apăsați pentru a deschide/închide" + +#: ../../include/text.php:1689 ../../include/user.php:246 +msgid "default" +msgstr "implicit" + +#: ../../include/text.php:1701 +msgid "Select an alternate language" +msgstr "Selectați o limbă alternativă" + +#: ../../include/text.php:1957 +msgid "activity" +msgstr "activitate" + +#: ../../include/text.php:1960 +msgid "post" +msgstr "postare" + +#: ../../include/text.php:2128 +msgid "Item filed" +msgstr "Element îndosariat" + +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "Utilizatorul nu a fost găsit." + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Nu există nici-un status cu acest id." + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Nu există nici-o conversație cu acest id." + +#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'" + +#: ../../include/items.php:1981 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%s's zi de naştere" + +#: ../../include/items.php:1982 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "La mulţi ani %s" + +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "O nouă persoană împărtășește cu dvs. la" + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "Aveţi un nou susținător la" + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "Sigur doriți să ștergeți acest element?" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "Arhive" + +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(fără subiect)" + +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "nu-răspundeţi" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Partajarea notificării din reţeaua Diaspora" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Atașări:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Lipseşte URL-ul de conectare." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Acest site nu este configurat pentru a permite comunicarea cu alte reţele." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Adresa de profil specificată nu furnizează informații adecvate." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Un autor sau nume nu a fost găsit." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nu se pot localiza informaţiile de contact." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "urmărire" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bine ați venit" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Vă rugăm să încărcaţi o fotografie de profil." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bine ați revenit" + +#: ../../include/security.php:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Bărbat" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femeie" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "În prezent Bărbat" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "În prezent Femeie" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mai mult Bărbat" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mai mult Femeie" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transsexual" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexual" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexual" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutru" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-specific" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Alta" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indecisă" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Bărbați" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femei" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbiană" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Fără Preferințe" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent(ă)" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgin(ă)" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "La grămadă" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Necăsătorit(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Singur(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibil(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Indisponibil(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Îndrăgostit(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Îndrăgostit(ă) nebunește" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Am întâlniri" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infidel(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Dependent(ă) de Sex" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:288 +#: ../../include/user.php:292 +msgid "Friends" +msgstr "Prieteni" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Prietenii/Prestaţii" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ocazional" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Cuplat" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Căsătorit(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Căsătorit(ă) imaginar" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Parteneri" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "În conviețuire" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Drept Comun" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Fericit(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nu caut" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Înșelat(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separat(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabil(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorţat(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorţat(ă) imaginar" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Văduv(ă)" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incert" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E complicat" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nu-mi pasă" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Întreabă-mă" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Eroare la decodarea fişierului de cont" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Eroare! Nu pot verifica pseudonimul" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Utilizatorul '%s' există deja pe acest server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Eroare la crearea utilizatorului" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Eroare la crearea profilului utilizatorului" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact neimportat" +msgstr[1] "%d contacte neimportate" +msgstr[2] "%d de contacte neimportate" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Apăsați aici pentru a actualiza." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Această acţiune nu este disponibilă în planul abonamentului dvs." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a abordat pe %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "post/element" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marcat %3$s de la %2$s ca favorit" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "eliminare" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Ștergeți Elementele Selectate" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Urmăriți Firul Conversației" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Vizualizare Status" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Vizualizare Profil" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Vizualizare Fotografii" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Postări din Rețea" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Edit Contact" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Trimiteți mesaj personal" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Abordare" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "%s apreciază aceasta." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nu apreciază aceasta." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d persoane apreciază aceasta" + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d persoanenu apreciază aceasta" + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "şi" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr ", şi %d alte persoane" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "%s apreciază aceasta." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "%s nu apreciază aceasta." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Vizibil pentru toți" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Vă rugăm să introduceți un URL/legătură pentru clip video" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Vă rugăm să introduceți un URL/legătură pentru clip audio" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Termen etichetare:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Unde vă aflați acum?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Ștergeți element(e)?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "Postați prin Email" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectorii au fost dezactivați, din moment ce \"%s\" este activat." + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "permisiuni" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Postați în Grupuri" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Post către Contacte" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Articol privat" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Add Contact Nou" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Introduceţi adresa sau locaţia web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemplu: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitație disponibilă" +msgstr[1] "%d invitații disponibile" +msgstr[2] "%d de invitații disponibile" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Căutați Persoane" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Introduceţi numele sau interesul" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Conectare/Urmărire" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemple: Robert Morgenstein, Pescuit" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profil Aleatoriu" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Rețele" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Toate Reţelele" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Totul" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorii" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finalizați această sesiune" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Autentificare" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Home Pagina" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Creați un cont" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Ajutor şi documentaţie" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Aplicații" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Suplimente la aplicații, utilitare, jocuri" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Căutare în conținut site" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversaţii pe acest site" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Director" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Director persoane" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informaţii" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informaţii despre această instanță friendica" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Conversaţiile prieteniilor dvs." + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Resetare Reţea" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Încărcare pagina de Reţea fără filtre" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Solicitări Prietenie" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Consultaţi toate notificările" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Marcaţi toate notificările de sistem, ca și vizualizate" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Mail privat" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "Mesaje primite" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Căsuță de Ieșire" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Gestionare" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Gestionează alte pagini" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Configurări Cont" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Gestionare/Editare Profile" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Gestionare/Editare prieteni şi contacte" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Instalare şi configurare site" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigare" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Hartă Site" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Necunoscut | Fără categorie" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocare Imediată" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Dubioșii, spammerii, auto-promoterii" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Cunoscut mie, dar fără o opinie" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probabil inofensiv" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Cu reputație, are încrederea mea" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Săptămânal" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Lunar" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Conector Diaspora" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notificare Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Vă mulțumim," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrator" + +#: ../../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:Notificare] Mail nou primit la %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s v-a trimis un nou mesaj privat la %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s v-a trimis %2$s" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un mesaj privat" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private." + +#: ../../include/enotify.php:91 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]a %3$s[/url]" + +#: ../../include/enotify.php:98 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]" + +#: ../../include/enotify.php:106 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]%3$s dvs.[/url]" + +#: ../../include/enotify.php:116 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s" + +#: ../../include/enotify.php:117 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a comentat la un element/conversaţie pe care o urmăriți." + +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație." + +#: ../../include/enotify.php:127 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notificare] %s a postat pe peretele dvs. de profil" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a postat pe peretele dvs. de profil la %2$s" + +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]" + +#: ../../include/enotify.php:142 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificare] %s v-a etichetat" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s v-a etichetat la %2$s" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]v-a etichetat[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notificare] %s a distribuit o nouă postare" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s a distribuit o nouă postare la %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s] a distribuit o postare[/url]." + +#: ../../include/enotify.php:169 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notificare] %1$s v-a abordat" + +#: ../../include/enotify.php:170 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s v-a abordat la %2$s" + +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]v-a abordat[/url]." + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificare] %s v-a etichetat postarea" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$sv-a etichetat postarea la %2$s" + +#: ../../include/enotify.php:188 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a etichetat [url=%2$s]postarea dvs.[/url]" + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificare] Prezentare primită" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Aţi primit o prezentare de la '%1$s' at %2$s" + +#: ../../include/enotify.php:201 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s." + +#: ../../include/enotify.php:204 ../../include/enotify.php:222 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Le puteți vizita profilurile, online pe %s" + +#: ../../include/enotify.php:206 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea." + +#: ../../include/enotify.php:213 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notificare] Ați primit o sugestie de prietenie" + +#: ../../include/enotify.php:214 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s" + +#: ../../include/enotify.php:215 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s." + +#: ../../include/enotify.php:220 +msgid "Name:" +msgstr "Nume:" + +#: ../../include/enotify.php:221 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:224 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia." + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "O invitaţie este necesară." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Invitația nu s-a putut verifica." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "URL OpenID invalid" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Vă rugăm să introduceți informațiile solicitate." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Vă rugăm să utilizaţi un nume mai scurt." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Numele este prea scurt." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Nu este o adresă vaildă de email." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Nu se poate utiliza acest email." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați." + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați." + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Vizibil pentru toata lumea" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:920 +#: ../../include/bbcode.php:921 +msgid "Image/photo" +msgstr "Imagine/fotografie" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s a scris următoarea postare" + +#: ../../include/bbcode.php:458 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:884 ../../include/bbcode.php:904 +msgid "$1 wrote:" +msgstr "$1 a scris:" + +#: ../../include/bbcode.php:935 ../../include/bbcode.php:936 +msgid "Encrypted content" +msgstr "Conţinut criptat" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Conţinut încorporat" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Încorporarea conținuturilor este dezactivată" + +#: ../../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 grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Confidenţialitatea implicită a grupului pentru noi contacte" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Toată lumea" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "editare" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editare grup" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Creați un nou grup" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contacte ce nu se află în orice grup" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "urmărire întreruptă" + +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Eliminare Contact" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diverse" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "an" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "lună" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "zi" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "niciodată" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "acum mai puțin de o secundă" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "ani" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "luni" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "săptămână" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "săptămâni" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "zile" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "oră" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minut" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minute" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "secundă" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secunde" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "acum %1$d %2$s" + +#: ../../include/network.php:886 +msgid "view full size" +msgstr "vezi intreaga mărime" diff --git a/view/ro/strings.php b/view/ro/strings.php new file mode 100644 index 0000000000..aaa2bb8fdb --- /dev/null +++ b/view/ro/strings.php @@ -0,0 +1,1719 @@ +19)||(($n%100==0)&&($n!=0)))?2:1));; +}} +; +$a->strings["This entry was edited"] = "Această intrare a fost editată"; +$a->strings["Private Message"] = " Mesaj Privat"; +$a->strings["Edit"] = "Edit"; +$a->strings["Select"] = "Select"; +$a->strings["Delete"] = "Şterge"; +$a->strings["save to folder"] = "salvează în directorul"; +$a->strings["add star"] = "add stea"; +$a->strings["remove star"] = "înlătură stea"; +$a->strings["toggle star status"] = "comută status steluță"; +$a->strings["starred"] = "cu steluță"; +$a->strings["add tag"] = "add tag"; +$a->strings["I like this (toggle)"] = "I like asta (toggle)"; +$a->strings["like"] = "like"; +$a->strings["I don't like this (toggle)"] = "nu îmi place aceasta (comutare)"; +$a->strings["dislike"] = "dislike"; +$a->strings["Share this"] = "Partajează"; +$a->strings["share"] = "partajează"; +$a->strings["Categories:"] = "Categorii:"; +$a->strings["Filed under:"] = "Înscris în:"; +$a->strings["View %s's profile @ %s"] = "Vizualizaţi profilul %s @ %s"; +$a->strings["to"] = "către"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Perete-prin-Perete"; +$a->strings["via Wall-To-Wall:"] = "via Perete-Prin-Perete"; +$a->strings["%s from %s"] = "%s de la %s"; +$a->strings["Comment"] = "Comentariu"; +$a->strings["Please wait"] = "Aşteptaţi vă rog"; +$a->strings["%d comment"] = array( + 0 => "%d comentariu", + 1 => "%d comentarii", + 2 => "%d comentarii", +); +$a->strings["comment"] = array( + 0 => "comentariu", + 1 => "comentarii", + 2 => "comentarii", +); +$a->strings["show more"] = "mai mult"; +$a->strings["This is you"] = "Acesta eşti tu"; +$a->strings["Submit"] = "Trimite"; +$a->strings["Bold"] = "Bold"; +$a->strings["Italic"] = "Italic"; +$a->strings["Underline"] = "Subliniat"; +$a->strings["Quote"] = "Citat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Imagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Previzualizare"; +$a->strings["You must be logged in to use addons. "] = "Tu trebuie să vă autentificați pentru a folosi suplimentele."; +$a->strings["Not Found"] = "Negăsit"; +$a->strings["Page not found."] = "Pagină negăsită."; +$a->strings["Permission denied"] = "Permisiune refuzată"; +$a->strings["Permission denied."] = "Permisiune refuzată."; +$a->strings["toggle mobile"] = "comutare mobil"; +$a->strings["[Embedded content - reload page to view]"] = "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]"; +$a->strings["Contact not found."] = "Contact negăsit."; +$a->strings["Friend suggestion sent."] = "Sugestia de prietenie a fost trimisă."; +$a->strings["Suggest Friends"] = "Sugeraţi Prieteni"; +$a->strings["Suggest a friend for %s"] = "Sugeraţi un prieten pentru %s"; +$a->strings["This introduction has already been accepted."] = "Această introducere a fost deja acceptată"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Locaţia profilului nu este validă sau nu conţine informaţii de profil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Atenţie: locaţia profilului nu are un nume de deţinător identificabil."; +$a->strings["Warning: profile location has no profile photo."] = "Atenţie: locaţia profilului nu are fotografie de profil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametru necesar nu a fost găsit în locaţia specificată", + 1 => "%d parametrii necesari nu au fost găsiţi în locaţia specificată", + 2 => "%d de parametrii necesari nu au fost găsiţi în locaţia specificată", +); +$a->strings["Introduction complete."] = "Prezentare completă."; +$a->strings["Unrecoverable protocol error."] = "Eroare de protocol nerecuperabilă."; +$a->strings["Profile unavailable."] = "Profil nedisponibil."; +$a->strings["%s has received too many connection requests today."] = "%s a primit, pentru azi, prea multe solicitări de conectare."; +$a->strings["Spam protection measures have been invoked."] = "Au fost invocate măsuri de protecţie anti-spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Prietenii sunt rugaţi să reîncerce peste 24 de ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Adresă mail invalidă."; +$a->strings["This account has not been configured for email. Request failed."] = "Acest cont nu a fost configurat pentru email. Cererea a eşuat."; +$a->strings["Unable to resolve your name at the provided location."] = "Imposibil să vă soluţionăm numele pentru locaţia sugerată."; +$a->strings["You have already introduced yourself here."] = "Aţi fost deja prezentat aici"; +$a->strings["Apparently you are already friends with %s."] = "Se pare că sunteţi deja prieten cu %s."; +$a->strings["Invalid profile URL."] = "Profil URL invalid."; +$a->strings["Disallowed profile URL."] = "Profil URL invalid."; +$a->strings["Failed to update contact record."] = "Actualizarea datelor de contact a eşuat."; +$a->strings["Your introduction has been sent."] = "Prezentarea dumneavoastră a fost trimisă."; +$a->strings["Please login to confirm introduction."] = "Vă rugăm să vă autentificați pentru a confirma prezentarea."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil."; +$a->strings["Hide this contact"] = "Ascunde acest contact"; +$a->strings["Welcome home %s."] = "Bine ai venit %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s."; +$a->strings["Confirm"] = "Confirm"; +$a->strings["[Name Withheld]"] = "[Nume Reţinut]"; +$a->strings["Public access denied."] = "Acces public refuzat."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Conectare ca și un fan prin email< /strike> (În Curând)"; +$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."] = "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi."; +$a->strings["Friend/Connection Request"] = "Solicitare Prietenie/Conectare"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Vă rugăm să răspundeţi la următoarele:"; +$a->strings["Does %s know you?"] = "%s vă cunoaşte?"; +$a->strings["Yes"] = "Da"; +$a->strings["No"] = "NU"; +$a->strings["Add a personal note:"] = "Adaugă o notă personală:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Reţea Socială Web Centralizată"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora."; +$a->strings["Your Identity Address:"] = "Adresa dvs. Identitate "; +$a->strings["Submit Request"] = "Trimiteţi Solicitarea"; +$a->strings["Cancel"] = "Anulează"; +$a->strings["View Video"] = "Vizualizați Clipul Video"; +$a->strings["Requested profile is not available."] = "Profilul solicitat nu este disponibil."; +$a->strings["Access to this profile has been restricted."] = "Accesul la acest profil a fost restricţionat."; +$a->strings["Tips for New Members"] = "Sfaturi pentru Membrii Noi"; +$a->strings["Invalid request identifier."] = "Datele de identificare solicitate, sunt invalide."; +$a->strings["Discard"] = "Renunțați"; +$a->strings["Ignore"] = "Ignoră"; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Reţea"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Introduceri"; +$a->strings["Messages"] = "Mesage"; +$a->strings["Show Ignored Requests"] = "Afişare Solicitări Ignorate"; +$a->strings["Hide Ignored Requests"] = "Ascundere Solicitări Ignorate"; +$a->strings["Notification type: "] = "Tip Notificări:"; +$a->strings["Friend Suggestion"] = "Sugestie Prietenie"; +$a->strings["suggested by %s"] = "sugerat de către %s"; +$a->strings["Hide this contact from others"] = "Ascunde acest contact pentru alţii"; +$a->strings["Post a new friend activity"] = "Publicaţi prietenului o nouă activitate"; +$a->strings["if applicable"] = "dacă i posibil"; +$a->strings["Approve"] = "Aprobă"; +$a->strings["Claims to be known to you: "] = "Pretinde că vă cunoaște:"; +$a->strings["yes"] = "da"; +$a->strings["no"] = "nu"; +$a->strings["Approve as: "] = "Aprobă ca:"; +$a->strings["Friend"] = "Prieten"; +$a->strings["Sharer"] = "Distribuitor"; +$a->strings["Fan/Admirer"] = "Fan/Admirator"; +$a->strings["Friend/Connect Request"] = "Prieten/Solicitare de Conectare"; +$a->strings["New Follower"] = "Susţinător Nou"; +$a->strings["No introductions."] = "Fără prezentări."; +$a->strings["Notifications"] = "Notificări"; +$a->strings["%s liked %s's post"] = "%s a apreciat ceea a publicat %s"; +$a->strings["%s disliked %s's post"] = "%s a nu a apreciat ceea a publicat %s"; +$a->strings["%s is now friends with %s"] = "%s este acum prieten cu %s"; +$a->strings["%s created a new post"] = "%s a creat o nouă postare"; +$a->strings["%s commented on %s's post"] = "%s a comentat la articolul postat de %s"; +$a->strings["No more network notifications."] = "Nu mai există notificări de reţea."; +$a->strings["Network Notifications"] = "Notificări de Reţea"; +$a->strings["No more system notifications."] = "Nu mai există notificări de sistem."; +$a->strings["System Notifications"] = "Notificări de Sistem"; +$a->strings["No more personal notifications."] = "Nici o notificare personală"; +$a->strings["Personal Notifications"] = "Notificări personale"; +$a->strings["No more home notifications."] = "Nu mai există notificări de origine."; +$a->strings["Home Notifications"] = "Notificări de Origine"; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s apreciază %3\$s lui %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nu apreciază %3\$s lui %2\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "Eroare de protocol OpenID. Nici-un ID returnat."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site."; +$a->strings["Login failed."] = "Eşec la conectare"; +$a->strings["Source (bbcode) text:"] = "Text (bbcode) sursă:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Text (Diaspora) sursă pentru a-l converti în BBcode:"; +$a->strings["Source input: "] = "Intrare Sursă:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Intrare Sursă (Format Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Theme settings updated."] = "Configurările temei au fost actualizate."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Utilizatori"; +$a->strings["Plugins"] = "Pluginuri"; +$a->strings["Themes"] = "Teme"; +$a->strings["DB updates"] = "Actualizări Bază de Date"; +$a->strings["Logs"] = "Jurnale"; +$a->strings["Admin"] = "Admin"; +$a->strings["Plugin Features"] = "Caracteristici Modul"; +$a->strings["User registrations waiting for confirmation"] = "Înregistrări de utilizatori, aşteaptă confirmarea"; +$a->strings["Item not found."] = "Element negăsit."; +$a->strings["Normal Account"] = "Cont normal"; +$a->strings["Soapbox Account"] = "Cont Soapbox"; +$a->strings["Community/Celebrity Account"] = "Cont Comunitate/Celebritate"; +$a->strings["Automatic Friend Account"] = "Cont Prieten Automat"; +$a->strings["Blog Account"] = "Cont Blog"; +$a->strings["Private Forum"] = "Forum Privat"; +$a->strings["Message queues"] = "Șiruri de mesaje"; +$a->strings["Administration"] = "Administrare"; +$a->strings["Summary"] = "Sumar"; +$a->strings["Registered users"] = "Utilizatori înregistraţi"; +$a->strings["Pending registrations"] = "Administrare"; +$a->strings["Version"] = "Versiune"; +$a->strings["Active plugins"] = "Module active"; +$a->strings["Can not parse base url. Must have at least ://"] = "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://"; +$a->strings["Site settings updated."] = "Configurările site-ului au fost actualizate."; +$a->strings["No special theme for mobile devices"] = "Nici-o temă specială pentru dispozitive mobile"; +$a->strings["Never"] = "Niciodată"; +$a->strings["At post arrival"] = "La sosirea publicaţiei"; +$a->strings["Frequently"] = "Frecvent"; +$a->strings["Hourly"] = "Din oră în oră"; +$a->strings["Twice daily"] = "De două ori pe zi"; +$a->strings["Daily"] = "Zilnic"; +$a->strings["Multi user instance"] = "Instanţă utilizatori multipli"; +$a->strings["Closed"] = "Inchis"; +$a->strings["Requires approval"] = "Necesită aprobarea"; +$a->strings["Open"] = "Deschide"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nici-o politică SSL, legăturile vor urmări starea paginii SSL"; +$a->strings["Force all links to use SSL"] = "Forţează toate legăturile să utilizeze SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)"; +$a->strings["Save Settings"] = "Salvare Configurări"; +$a->strings["Registration"] = "Registratură"; +$a->strings["File upload"] = "Fişier incărcat"; +$a->strings["Policies"] = "Politici"; +$a->strings["Advanced"] = "Avansat"; +$a->strings["Performance"] = "Performanţă"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil."; +$a->strings["Site name"] = "Nume site"; +$a->strings["Banner/Logo"] = "Baner/Logo"; +$a->strings["Additional Info"] = "Informaţii suplimentare"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo."; +$a->strings["System language"] = "Limbă System l"; +$a->strings["System theme"] = "Temă System "; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei"; +$a->strings["Mobile system theme"] = "Temă sisteme mobile"; +$a->strings["Theme for mobile devices"] = "Temă pentru dispozitivele mobile"; +$a->strings["SSL link policy"] = "Politivi link SSL "; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL"; +$a->strings["Old style 'Share'"] = "Stilul vechi de 'Distribuiţi'"; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive."; +$a->strings["Hide help entry from navigation menu"] = "Ascunde elementele de ajutor, din meniul de navigare"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor."; +$a->strings["Single user instance"] = "Instanţă cu un singur utilizator"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv"; +$a->strings["Maximum image size"] = "Maxim mărime imagine"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite."; +$a->strings["Maximum image length"] = "Dimensiunea maximă a imaginii"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite."; +$a->strings["JPEG image quality"] = "Calitate imagine JPEG "; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă."; +$a->strings["Register policy"] = "Politici inregistrare "; +$a->strings["Maximum Daily Registrations"] = "Înregistrări Zilnice Maxime"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect."; +$a->strings["Register text"] = "Text înregistrare"; +$a->strings["Will be displayed prominently on the registration page."] = "Va fi afişat vizibil pe pagina de înregistrare."; +$a->strings["Accounts abandoned after x days"] = "Conturi abandonate după x zile"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp."; +$a->strings["Allowed friend domains"] = "Domenii prietene permise"; +$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 cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"; +$a->strings["Allowed email domains"] = "Domenii de email, permise"; +$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 cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"; +$a->strings["Block public"] = "Blocare acces public"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat."; +$a->strings["Force publish"] = "Forțează publicarea"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului."; +$a->strings["Global directory update URL"] = "URL actualizare director global"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație."; +$a->strings["Allow threaded items"] = "Permite elemente înșiruite"; +$a->strings["Allow infinite level threading for items on this site."] = "Permite pe acest site, un număr infinit de nivele de înșiruire."; +$a->strings["Private posts by default for new users"] = "Postările private, ca implicit pentru utilizatori noi"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public."; +$a->strings["Don't include post content in email notifications"] = "Nu include conţinutul postării în notificările prin email"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor."; +$a->strings["Don't embed private images in posts"] = "Nu încorpora imagini private în postări"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp."; +$a->strings["Allow Users to set remote_self"] = "Permite utilizatorilor să-și stabilească remote_self"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor."; +$a->strings["Block multiple registrations"] = "Blocare înregistrări multiple"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini."; +$a->strings["OpenID support"] = "OpenID support"; +$a->strings["OpenID support for registration and logins."] = "Suport OpenID pentru înregistrare şi autentificări."; +$a->strings["Fullname check"] = "Verificare Nume complet"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam"; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regular expresii"; +$a->strings["Use PHP UTF8 regular expressions"] = "Utilizaţi PHP UTF-8 Regular expresii"; +$a->strings["Show Community Page"] = "Arată Pagina Communitz"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site."; +$a->strings["Enable OStatus support"] = "Activează Suport OStatus"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate."; +$a->strings["OStatus conversation completion interval"] = "Intervalul OStatus de finalizare a conversaţiei"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile."; +$a->strings["Enable Diaspora support"] = "Activează Suport Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Oferă o compatibilitate de reţea Diaspora, întegrată."; +$a->strings["Only allow Friendica contacts"] = "Se permit doar contactele Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate."; +$a->strings["Verify SSL"] = "Verifică 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."] = "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate."; +$a->strings["Proxy user"] = "Proxy user"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Timp de expirare rețea"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)."; +$a->strings["Delivery interval"] = "Interval de livrare"; +$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."] = "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari."; +$a->strings["Poll interval"] = "Interval de Sondare"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare."; +$a->strings["Maximum Load Average"] = "Media Maximă de Încărcare"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50."; +$a->strings["Use MySQL full text engine"] = "Utilizare motor text-complet MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere."; +$a->strings["Suppress Language"] = "Suprimă Limba"; +$a->strings["Suppress language information in meta information about a posting."] = "Suprimă informaţiile despre limba din informaţiile meta ale unei postări."; +$a->strings["Path to item cache"] = "Calea pentru elementul cache"; +$a->strings["Cache duration in seconds"] = "Durata Cache în secunde"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Cât timp trebuie să fie reţinute fişierele cache? Valoarea implicită este de 86400 secunde (O zi)."; +$a->strings["Path for lock file"] = "Cale pentru blocare fișiere"; +$a->strings["Temp path"] = "Calea Temp"; +$a->strings["Base path to installation"] = "Calea de bază pentru instalare"; +$a->strings["New base url"] = "URL de bază nou"; +$a->strings["Update has been marked successful"] = "Actualizarea a fost marcată cu succes"; +$a->strings["Executing %s failed. Check system logs."] = "Executarea %s a eșuat. Verificaţi jurnalele de sistem."; +$a->strings["Update %s was successfully applied."] = "Actualizarea %s a fost aplicată cu succes."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit."; +$a->strings["Update function %s could not be found."] = "Funcția de actualizare %s nu s-a putut găsi."; +$a->strings["No failed updates."] = "Nici-o actualizare eșuată."; +$a->strings["Failed Updates"] = "Actualizări Eșuate"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status."; +$a->strings["Mark success (if update was manually applied)"] = "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)"; +$a->strings["Attempt to execute this update step automatically"] = "Se încearcă executarea automată a acestei etape de actualizare"; +$a->strings["Registration details for %s"] = "Detaliile de înregistrare pentru %s"; +$a->strings["Registration successful. Email send to user"] = "Înregistrarea s-a efectuat cu succes. Un email a fost trimis utilizatorului"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utilizator blocat/deblocat", + 1 => "%s utilizatori blocați/deblocați", + 2 => "%s de utilizatori blocați/deblocați", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utilizator şters", + 1 => "%s utilizatori şterşi", + 2 => "%s utilizatori şterşi", +); +$a->strings["User '%s' deleted"] = "Utilizator %s şters"; +$a->strings["User '%s' unblocked"] = "Utilizator %s deblocat"; +$a->strings["User '%s' blocked"] = "Utilizator %s blocat"; +$a->strings["Add User"] = "Adăugaţi Utilizator"; +$a->strings["select all"] = "selectează tot"; +$a->strings["User registrations waiting for confirm"] = "Înregistrarea utilizatorului, aşteaptă confirmarea"; +$a->strings["User waiting for permanent deletion"] = "Utilizatorul așteaptă să fie șters definitiv"; +$a->strings["Request date"] = "Data cererii"; +$a->strings["Name"] = "Nume"; +$a->strings["Email"] = "Email"; +$a->strings["No registrations."] = "Nici-o înregistrare."; +$a->strings["Deny"] = "Respinge"; +$a->strings["Block"] = "Blochează"; +$a->strings["Unblock"] = "Deblochează"; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Cont expirat"; +$a->strings["New User"] = "Utilizator Nou"; +$a->strings["Register date"] = "Data înregistrare"; +$a->strings["Last login"] = "Ultimul login"; +$a->strings["Last item"] = "Ultimul element"; +$a->strings["Deleted since"] = "Șters din"; +$a->strings["Account"] = "Cont"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?"; +$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?"] = "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?"; +$a->strings["Name of the new user."] = "Numele noului utilizator."; +$a->strings["Nickname"] = "Pseudonim"; +$a->strings["Nickname of the new user."] = "Pseudonimul noului utilizator."; +$a->strings["Email address of the new user."] = "Adresa de e-mail a utilizatorului nou."; +$a->strings["Plugin %s disabled."] = "Modulul %s a fost dezactivat."; +$a->strings["Plugin %s enabled."] = "Modulul %s a fost activat."; +$a->strings["Disable"] = "Dezactivează"; +$a->strings["Enable"] = "Activează"; +$a->strings["Toggle"] = "Comutare"; +$a->strings["Settings"] = "Setări"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Responsabil:"; +$a->strings["No themes found."] = "Nici-o temă găsită."; +$a->strings["Screenshot"] = "Screenshot"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Log settings updated."] = "Jurnalul de configurări fost actualizat."; +$a->strings["Clear"] = "Curăţă"; +$a->strings["Enable Debugging"] = "Activează Depanarea"; +$a->strings["Log file"] = "Fişier Log "; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica."; +$a->strings["Log level"] = "Nivel log"; +$a->strings["Update now"] = "Actualizează acum"; +$a->strings["Close"] = "Închide"; +$a->strings["FTP Host"] = "FTP Host"; +$a->strings["FTP Path"] = "FTP Path"; +$a->strings["FTP User"] = "FTP User"; +$a->strings["FTP Password"] = "FTP Parolă"; +$a->strings["New Message"] = "Mesaj nou"; +$a->strings["No recipient selected."] = "Nici-o adresă selectată."; +$a->strings["Unable to locate contact information."] = "Nu se pot localiza informaţiile de contact."; +$a->strings["Message could not be sent."] = "Mesajul nu a putut fi trimis."; +$a->strings["Message collection failure."] = "Eșec de colectare mesaj."; +$a->strings["Message sent."] = "Mesaj trimis."; +$a->strings["Do you really want to delete this message?"] = "Chiar doriţi să ştergeţi acest mesaj ?"; +$a->strings["Message deleted."] = "Mesaj şters"; +$a->strings["Conversation removed."] = "Conversaşie inlăturată."; +$a->strings["Please enter a link URL:"] = "Introduceţi un link URL:"; +$a->strings["Send Private Message"] = "Trimite mesaj privat"; +$a->strings["To:"] = "Către: "; +$a->strings["Subject:"] = "Subiect:"; +$a->strings["Your message:"] = "Mesajul dvs :"; +$a->strings["Upload photo"] = "Încarcă foto"; +$a->strings["Insert web link"] = "Inserează link web"; +$a->strings["No messages."] = "Nici-un mesaj."; +$a->strings["Unknown sender - %s"] = "Expeditor necunoscut - %s"; +$a->strings["You and %s"] = "Tu şi %s"; +$a->strings["%s and You"] = "%s şi dvs"; +$a->strings["Delete conversation"] = "Ștergeți conversaţia"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mesaj", + 1 => "%d mesaje", + 2 => "%d mesaje", +); +$a->strings["Message not available."] = "Mesaj nedisponibil"; +$a->strings["Delete message"] = "Şterge mesaj"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului."; +$a->strings["Send Reply"] = "Răspunde"; +$a->strings["Item not found"] = "Element negăsit"; +$a->strings["Edit post"] = "Editează post"; +$a->strings["upload photo"] = "încărcare fotografie"; +$a->strings["Attach file"] = "Ataşează fişier"; +$a->strings["attach file"] = "ataşează fişier"; +$a->strings["web link"] = "web link"; +$a->strings["Insert video link"] = "Inserează video link"; +$a->strings["video link"] = "video link"; +$a->strings["Insert audio link"] = "Inserare link audio"; +$a->strings["audio link"] = "audio link"; +$a->strings["Set your location"] = "Setează locaţia dvs"; +$a->strings["set location"] = "set locaţie"; +$a->strings["Clear browser location"] = "Curățare locație browser"; +$a->strings["clear location"] = "şterge locaţia"; +$a->strings["Permission settings"] = "Setări permisiuni"; +$a->strings["CC: email addresses"] = "CC: adresă email"; +$a->strings["Public post"] = "Public post"; +$a->strings["Set title"] = "Setează titlu"; +$a->strings["Categories (comma-separated list)"] = "Categorii (listă cu separator prin virgulă)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemplu: bob@exemplu.com, mary@exemplu.com"; +$a->strings["Profile not found."] = "Profil negăsit."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat."; +$a->strings["Response from remote site was not understood."] = "Răspunsul de la adresa de la distanţă, nu a fost înțeles."; +$a->strings["Unexpected response from remote site: "] = "Răspuns neaşteptat de la site-ul de la distanţă:"; +$a->strings["Confirmation completed successfully."] = "Confirmare încheiată cu succes."; +$a->strings["Remote site reported: "] = "Site-ul de la distanţă a raportat:"; +$a->strings["Temporary failure. Please wait and try again."] = "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou."; +$a->strings["Introduction failed or was revoked."] = "Introducerea a eşuat sau a fost revocată."; +$a->strings["Unable to set contact photo."] = "Imposibil de stabilit fotografia de contact."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s este acum prieten cu %2\$s"; +$a->strings["No user record found for '%s' "] = "Nici-o înregistrare de utilizator găsită pentru '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Se pare că, cheia de criptare a site-ului nostru s-a încurcat."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi."; +$a->strings["Contact record was not found for you on our site."] = "Registrul contactului nu a fost găsit pe site-ul nostru."; +$a->strings["Site public key not available in contact record for URL %s."] = "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou."; +$a->strings["Unable to set your contact credentials on our system."] = "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru."; +$a->strings["Unable to update your contact profile details on our system"] = "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru."; +$a->strings["Connection accepted at %s"] = "Conexiune acceptată la %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s s-a alăturat lui %2\$s"; +$a->strings["Event title and start time are required."] = "Titlul evenimentului şi timpul de pornire sunt necesare."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editează eveniment"; +$a->strings["link to source"] = "link către sursă"; +$a->strings["Events"] = "Evenimente"; +$a->strings["Create New Event"] = "Crează eveniment nou"; +$a->strings["Previous"] = "Precedent"; +$a->strings["Next"] = "Next"; +$a->strings["hour:minute"] = "ore:minute"; +$a->strings["Event details"] = "Detalii eveniment"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatul este %s %s.Data de începere și Titlul sunt necesare."; +$a->strings["Event Starts:"] = "Evenimentul Începe:"; +$a->strings["Required"] = "Cerut"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/ora de finalizare nu este cunoscută sau nu este relevantă"; +$a->strings["Event Finishes:"] = "Evenimentul se Finalizează:"; +$a->strings["Adjust for viewer timezone"] = "Reglați pentru fusul orar al vizitatorului"; +$a->strings["Description:"] = "Descriere:"; +$a->strings["Location:"] = "Locaţie:"; +$a->strings["Title:"] = "Titlu:"; +$a->strings["Share this event"] = "Partajează acest eveniment"; +$a->strings["Photos"] = "Poze"; +$a->strings["Files"] = "Fişiere"; +$a->strings["Welcome to %s"] = "Bine aţi venit la %s"; +$a->strings["Remote privacy information not available."] = "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile."; +$a->strings["Visible to:"] = "Visibil către:"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat."; +$a->strings["Unable to check your home location."] = "Imposibil de verificat locaţia dvs. de reşedinţă."; +$a->strings["No recipient."] = "Nici-un destinatar."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți."; +$a->strings["Visit %s's profile [%s]"] = "Vizitați profilul %s [%s]"; +$a->strings["Edit contact"] = "Editează contact"; +$a->strings["Contacts who are not members of a group"] = "Contactele care nu sunt membre ale unui grup"; +$a->strings["This is Friendica, version"] = "Friendica, versiunea"; +$a->strings["running at web location"] = "rulează la locaţia web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Rapoarte de erori şi probleme: vă rugăm să vizitaţi"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Module/suplimente/aplicații instalate:"; +$a->strings["No installed plugins/addons/apps"] = "Module/suplimente/aplicații neinstalate"; +$a->strings["Remove My Account"] = "Șterge Contul Meu"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă."; +$a->strings["Please enter your password for verification:"] = "Vă rugăm să introduceţi parola dvs. pentru verificare:"; +$a->strings["Image exceeds size limit of %d"] = "Dimensiunea imaginii depăşeşte limita de %d"; +$a->strings["Unable to process image."] = "Nu s-a putut procesa imaginea."; +$a->strings["Wall Photos"] = "Fotografii de Perete"; +$a->strings["Image upload failed."] = "Încărcarea imaginii a eşuat."; +$a->strings["Authorize application connection"] = "Autorizare conectare aplicaţie"; +$a->strings["Return to your app and insert this Securty Code:"] = "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:"; +$a->strings["Please login to continue."] = "Vă rugăm să vă autentificați pentru a continua."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a etichetat %3\$s de la %2\$s cu %4\$s"; +$a->strings["Photo Albums"] = "Albume Photo "; +$a->strings["Contact Photos"] = "Photo Contact"; +$a->strings["Upload New Photos"] = "Încărcaţi Fotografii Noi"; +$a->strings["everybody"] = "oricine"; +$a->strings["Contact information unavailable"] = "Informaţii contact nedisponibile"; +$a->strings["Profile Photos"] = "Poze profil"; +$a->strings["Album not found."] = "Album negăsit"; +$a->strings["Delete Album"] = "Şterge Album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?"; +$a->strings["Delete Photo"] = "Şterge Poza"; +$a->strings["Do you really want to delete this photo?"] = "Sigur doriți să ștergeți această fotografie?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a fost etichetat în %2\$s de către %3\$s"; +$a->strings["a photo"] = "o poză"; +$a->strings["Image exceeds size limit of "] = "Dimensiunea imaginii depăşeşte limita de"; +$a->strings["Image file is empty."] = "Fișierul imagine este gol."; +$a->strings["No photos selected"] = "Nici-o fotografie selectată"; +$a->strings["Access to this item is restricted."] = "Accesul la acest element este restricționat."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto."; +$a->strings["Upload Photos"] = "Încărcare Fotografii"; +$a->strings["New album name: "] = "Nume album nou:"; +$a->strings["or existing album name: "] = "sau numele unui album existent:"; +$a->strings["Do not show a status post for this upload"] = "Nu afișa un status pentru această încărcare"; +$a->strings["Permissions"] = "Permisiuni"; +$a->strings["Show to Groups"] = "Afișare pentru Grupuri"; +$a->strings["Show to Contacts"] = "Afişează la Contacte"; +$a->strings["Private Photo"] = "Poze private"; +$a->strings["Public Photo"] = "Poze Publice"; +$a->strings["Edit Album"] = "Editează Album"; +$a->strings["Show Newest First"] = "Afișează Întâi cele Noi"; +$a->strings["Show Oldest First"] = "Afișează Întâi cele Vechi"; +$a->strings["View Photo"] = "Vizualizare Fotografie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permisiune refuzată. Accesul la acest element poate fi restricționat."; +$a->strings["Photo not available"] = "Fotografia nu este disponibilă"; +$a->strings["View photo"] = "Vezi foto"; +$a->strings["Edit photo"] = "Editează poza"; +$a->strings["Use as profile photo"] = "Utilizați ca și fotografie de profil"; +$a->strings["View Full Size"] = "Vizualizați la Dimensiunea Completă"; +$a->strings["Tags: "] = "Etichete:"; +$a->strings["[Remove any tag]"] = "[Elimină orice etichetă]"; +$a->strings["Rotate CW (right)"] = "Rotire spre dreapta"; +$a->strings["Rotate CCW (left)"] = "Rotire spre stânga"; +$a->strings["New album name"] = "Nume Nou Album"; +$a->strings["Caption"] = "Titlu"; +$a->strings["Add a Tag"] = "Adaugă un Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping"; +$a->strings["Private photo"] = "Poze private"; +$a->strings["Public photo"] = "Poze Publice"; +$a->strings["Share"] = "Partajează"; +$a->strings["View Album"] = "Vezi Album"; +$a->strings["Recent Photos"] = "Poze Recente"; +$a->strings["No profile"] = "Niciun profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat."; +$a->strings["Your registration can not be processed."] = "Înregistrarea dvs. nu poate fi procesată."; +$a->strings["Registration request at %s"] = "Solicitare de înregistrare la %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor."; +$a->strings["Your OpenID (optional): "] = "Contul dvs. OpenID (opţional):"; +$a->strings["Include your profile in member directory?"] = "Includeți profilul dvs în directorul de membru?"; +$a->strings["Membership on this site is by invitation only."] = "Aderare pe acest site, este posibilă doar pe bază de invitație."; +$a->strings["Your invitation ID: "] = "ID invitaţiei dvs:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Numele Complet (de ex. Joe Smith):"; +$a->strings["Your Email Address: "] = "Adresa dvs de mail:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@\$sitename'."; +$a->strings["Choose a nickname: "] = "Alegeţi un pseudonim:"; +$a->strings["Register"] = "Înregistrare"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importați profilul dvs. în această instanță friendica"; +$a->strings["No valid account found."] = "Nici-un cont valid găsit."; +$a->strings["Password reset request issued. Check your email."] = "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul."; +$a->strings["Password reset requested at %s"] = "Solicitarea de resetare a parolei a fost făcută la %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat."; +$a->strings["Password Reset"] = "Resetare Parolă"; +$a->strings["Your password has been reset as requested."] = "Parola a fost resetată conform solicitării."; +$a->strings["Your new password is"] = "Noua dvs. parolă este"; +$a->strings["Save or copy your new password - and then"] = "Salvați sau copiați noua dvs. parolă - şi apoi"; +$a->strings["click here to login"] = "click aici pentru logare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes."; +$a->strings["Your password has been changed at %s"] = "Parola dumneavoastră a fost schimbată la %s"; +$a->strings["Forgot your Password?"] = "Ați uitat Parola?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare."; +$a->strings["Nickname or Email: "] = "Pseudonim sau Email:"; +$a->strings["Reset"] = "Reset"; +$a->strings["System down for maintenance"] = "Sistemul este suspendat pentru întreținere"; +$a->strings["Item not available."] = "Elementul nu este disponibil."; +$a->strings["Item was not found."] = "Element negăsit."; +$a->strings["Applications"] = "Aplicații"; +$a->strings["No installed applications."] = "Nu există aplicații instalate."; +$a->strings["Help:"] = "Ajutor:"; +$a->strings["Help"] = "Ajutor"; +$a->strings["%d contact edited."] = array( + 0 => "%d contact editat.", + 1 => "%d contacte editate.", + 2 => "%d de contacte editate.", +); +$a->strings["Could not access contact record."] = "Nu se poate accesa registrul contactului."; +$a->strings["Could not locate selected profile."] = "Nu se poate localiza profilul selectat."; +$a->strings["Contact updated."] = "Contact actualizat."; +$a->strings["Contact has been blocked"] = "Contactul a fost blocat"; +$a->strings["Contact has been unblocked"] = "Contactul a fost deblocat"; +$a->strings["Contact has been ignored"] = "Contactul a fost ignorat"; +$a->strings["Contact has been unignored"] = "Contactul a fost neignorat"; +$a->strings["Contact has been archived"] = "Contactul a fost arhivat"; +$a->strings["Contact has been unarchived"] = "Contactul a fost dezarhivat"; +$a->strings["Do you really want to delete this contact?"] = "Sigur doriți să ștergeți acest contact?"; +$a->strings["Contact has been removed."] = "Contactul a fost înlăturat."; +$a->strings["You are mutual friends with %s"] = "Sunteţi prieten comun cu %s"; +$a->strings["You are sharing with %s"] = "Împărtășiți cu %s"; +$a->strings["%s is sharing with you"] = "%s împărtăşeşte cu dvs."; +$a->strings["Private communications are not available for this contact."] = "Comunicaţiile private nu sunt disponibile pentru acest contact."; +$a->strings["(Update was successful)"] = "(Actualizare a reuşit)"; +$a->strings["(Update was not successful)"] = "(Actualizare nu a reuşit)"; +$a->strings["Suggest friends"] = "Sugeraţi prieteni"; +$a->strings["Network type: %s"] = "Tipul rețelei: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact în comun", + 1 => "%d contacte în comun", + 2 => "%d de contacte în comun", +); +$a->strings["View all contacts"] = "Vezi toate contactele"; +$a->strings["Toggle Blocked status"] = "Comutare status Blocat"; +$a->strings["Unignore"] = "Anulare ignorare"; +$a->strings["Toggle Ignored status"] = "Comutaţi status Ignorat"; +$a->strings["Unarchive"] = "Dezarhivează"; +$a->strings["Archive"] = "Arhivează"; +$a->strings["Toggle Archive status"] = "Comutaţi status Arhivat"; +$a->strings["Repair"] = "Repară"; +$a->strings["Advanced Contact Settings"] = "Configurări Avansate Contacte"; +$a->strings["Communications lost with this contact!"] = "S-a pierdut conexiunea cu acest contact!"; +$a->strings["Contact Editor"] = "Editor Contact"; +$a->strings["Profile Visibility"] = "Vizibilitate Profil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat."; +$a->strings["Contact Information / Notes"] = "Informaţii de Contact / Note"; +$a->strings["Edit contact notes"] = "Editare note de contact"; +$a->strings["Block/Unblock contact"] = "Blocare/Deblocare contact"; +$a->strings["Ignore contact"] = "Ignorare contact"; +$a->strings["Repair URL settings"] = "Remediere configurări URL"; +$a->strings["View conversations"] = "Vizualizaţi conversaţii"; +$a->strings["Delete contact"] = "Şterge contact"; +$a->strings["Last update:"] = "Ultima actualizare:"; +$a->strings["Update public posts"] = "Actualizare postări publice"; +$a->strings["Currently blocked"] = "Blocat în prezent"; +$a->strings["Currently ignored"] = "Ignorat în prezent"; +$a->strings["Currently archived"] = "Arhivat în prezent"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile"; +$a->strings["Notification for new posts"] = "Notificare de postări noi"; +$a->strings["Send a notification of every new post of this contact"] = "Trimiteți o notificare despre fiecare postare nouă a acestui contact"; +$a->strings["Fetch further information for feeds"] = "Preluare informaţii suplimentare pentru fluxuri"; +$a->strings["Suggestions"] = "Sugestii"; +$a->strings["Suggest potential friends"] = "Sugeraţi prieteni potențiali"; +$a->strings["All Contacts"] = "Toate Contactele"; +$a->strings["Show all contacts"] = "Afişează toate contactele"; +$a->strings["Unblocked"] = "Deblocat"; +$a->strings["Only show unblocked contacts"] = "Se afişează numai contactele deblocate"; +$a->strings["Blocked"] = "Blocat"; +$a->strings["Only show blocked contacts"] = "Se afişează numai contactele blocate"; +$a->strings["Ignored"] = "Ignorat"; +$a->strings["Only show ignored contacts"] = "Se afişează numai contactele ignorate"; +$a->strings["Archived"] = "Arhivat"; +$a->strings["Only show archived contacts"] = "Se afişează numai contactele arhivate"; +$a->strings["Hidden"] = "Ascuns"; +$a->strings["Only show hidden contacts"] = "Se afişează numai contactele ascunse"; +$a->strings["Mutual Friendship"] = "Prietenie Reciprocă"; +$a->strings["is a fan of yours"] = "este fanul dvs."; +$a->strings["you are a fan of"] = "sunteţi un fan al"; +$a->strings["Contacts"] = "Contacte"; +$a->strings["Search your contacts"] = "Căutare contacte"; +$a->strings["Finding: "] = "Găsire:"; +$a->strings["Find"] = "Căutare"; +$a->strings["Update"] = "Actualizare"; +$a->strings["No videos selected"] = "Nici-un clip video selectat"; +$a->strings["Recent Videos"] = "Clipuri video recente"; +$a->strings["Upload New Videos"] = "Încărcaţi Clipuri Video Noi"; +$a->strings["Common Friends"] = "Prieteni Comuni"; +$a->strings["No contacts in common."] = "Nici-un contact în comun"; +$a->strings["Contact added"] = "Contact addăugat"; +$a->strings["Move account"] = "Mutaţi contul"; +$a->strings["You can import an account from another Friendica server."] = "Puteţi importa un cont dintr-un alt server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora"; +$a->strings["Account file"] = "Fişier Cont"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pentru a vă exporta contul, deplasaţi-vă la \"Configurări- >Export date personale \" şi selectaţi \"Exportare cont \""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s urmărește %3\$s postată %2\$s"; +$a->strings["Friends of %s"] = "Prieteni cu %s"; +$a->strings["No friends to display."] = "Nici-un prieten de afișat."; +$a->strings["Tag removed"] = "Etichetă eliminată"; +$a->strings["Remove Item Tag"] = "Eliminați Eticheta Elementului"; +$a->strings["Select a tag to remove: "] = "Selectați o etichetă de eliminat:"; +$a->strings["Remove"] = "Eliminare"; +$a->strings["Welcome to Friendica"] = "Bun Venit la Friendica"; +$a->strings["New Member Checklist"] = "Lista de Verificare Membrii Noi"; +$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."] = "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere."; +$a->strings["Getting Started"] = "Noțiuni de Bază"; +$a->strings["Friendica Walk-Through"] = "Ghidul de Prezentare 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."] = "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați."; +$a->strings["Go to Your Settings"] = "Mergeți la Configurări"; +$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."] = "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită."; +$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."] = "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Încărcare Fotografie 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."] = "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale."; +$a->strings["Edit Your Profile"] = "Editare 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."] = "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți."; +$a->strings["Profile Keywords"] = "Cuvinte-Cheie 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."] = "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor."; +$a->strings["Connecting"] = "Conectare"; +$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ți Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită."; +$a->strings["Importing Emails"] = "Importare Email-uri"; +$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ţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite."; +$a->strings["Go to Your Contacts Page"] = "Dute la pagina ta Contacte "; +$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."] = "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou."; +$a->strings["Go to Your Site's Directory"] = "Mergeţi la Directorul Site-ului"; +$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."] = "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită."; +$a->strings["Finding New People"] = "Găsire Persoane Noi"; +$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."] = "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore."; +$a->strings["Groups"] = "Groupuri"; +$a->strings["Group Your Contacts"] = "Grupați-vă Contactele"; +$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."] = "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea."; +$a->strings["Why Aren't My Posts Public?"] = "De ce nu sunt Postările Mele Publice?"; +$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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus."; +$a->strings["Getting Help"] = "Obţinerea de Ajutor"; +$a->strings["Go to the Help Section"] = "Navigați la Secțiunea Ajutor"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program."; +$a->strings["Remove term"] = "Eliminare termen"; +$a->strings["Saved Searches"] = "Căutări Salvate"; +$a->strings["Search"] = "Căutare"; +$a->strings["No results."] = "Nici-un rezultat."; +$a->strings["Total invitation limit exceeded."] = "Limita totală a invitațiilor a fost depăşită."; +$a->strings["%s : Not a valid email address."] = "%s : Nu este o adresă vaildă de email."; +$a->strings["Please join us on Friendica"] = "Vă rugăm să veniți alături de noi pe Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem."; +$a->strings["%s : Message delivery failed."] = "%s : Livrarea mesajului a eşuat."; +$a->strings["%d message sent."] = array( + 0 => "%d mesaj trimis.", + 1 => "%d mesaje trimise.", + 2 => "%d de mesaje trimise.", +); +$a->strings["You have no more invitations available"] = "Nu mai aveți invitaţii disponibile"; +$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."] = "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public 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."] = "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii."; +$a->strings["Send invitations"] = "Trimiteți invitaţii"; +$a->strings["Enter email addresses, one per line:"] = "Introduceţi adresele de email, una pe linie:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Va fi nevoie să furnizați acest cod de invitaţie: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com"; +$a->strings["Additional features"] = "Caracteristici suplimentare"; +$a->strings["Display"] = "Afișare"; +$a->strings["Social Networks"] = "Rețele Sociale"; +$a->strings["Delegations"] = "Delegații"; +$a->strings["Connected apps"] = "Aplicații Conectate"; +$a->strings["Export personal data"] = "Exportare date personale"; +$a->strings["Remove account"] = "Ștergere cont"; +$a->strings["Missing some important data!"] = "Lipsesc unele date importante!"; +$a->strings["Failed to connect with email account using the settings provided."] = "A eşuat conectarea cu, contul de email, folosind configurările furnizate."; +$a->strings["Email settings updated."] = "Configurările de email au fost actualizate."; +$a->strings["Features updated"] = "Caracteristici actualizate"; +$a->strings["Relocate message has been send to your contacts"] = "Mesajul despre mutare, a fost trimis către contactele dvs."; +$a->strings["Passwords do not match. Password unchanged."] = "Parolele nu coincid. Parolă neschimbată."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Parolele necompletate nu sunt permise. Parolă neschimbată."; +$a->strings["Wrong password."] = "Parolă greșită."; +$a->strings["Password changed."] = "Parola a fost schimbată."; +$a->strings["Password update failed. Please try again."] = "Actualizarea parolei a eșuat. Vă rugăm să reîncercați."; +$a->strings[" Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt."; +$a->strings[" Name too short."] = "Numele este prea scurt."; +$a->strings["Wrong Password"] = "Parolă Greșită"; +$a->strings[" Not valid email."] = "Nu este un email valid."; +$a->strings[" Cannot change to that email."] = "Nu poate schimba cu acest email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup."; +$a->strings["Settings updated."] = "Configurări actualizate."; +$a->strings["Add application"] = "Adăugare aplicaţie"; +$a->strings["Consumer Key"] = "Cheia Utilizatorului"; +$a->strings["Consumer Secret"] = "Cheia Secretă a Utilizatorului"; +$a->strings["Redirect"] = "Redirecţionare"; +$a->strings["Icon url"] = "URL pictogramă"; +$a->strings["You can't edit this application."] = "Nu puteți edita această aplicaţie."; +$a->strings["Connected Apps"] = "Aplicații Conectate"; +$a->strings["Client key starts with"] = "Cheia clientului începe cu"; +$a->strings["No name"] = "Fără nume"; +$a->strings["Remove authorization"] = "Eliminare autorizare"; +$a->strings["No Plugin settings configured"] = "Nici-o configurare stabilită pentru modul"; +$a->strings["Plugin Settings"] = "Configurări Modul"; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Additional Features"] = "Caracteristici Suplimentare"; +$a->strings["Built-in support for %s connectivity is %s"] = "Suportul încorporat pentru conectivitatea %s este %s"; +$a->strings["enabled"] = "activat"; +$a->strings["disabled"] = "dezactivat"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Accesul de email este dezactivat pe acest site."; +$a->strings["Email/Mailbox Setup"] = "Configurare E-Mail/Căsuță poştală"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală."; +$a->strings["Last successful email check:"] = "Ultima verificare, cu succes, a email-ului:"; +$a->strings["IMAP server name:"] = "Nume server IMAP:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Securitate:"; +$a->strings["None"] = "Nimic"; +$a->strings["Email login name:"] = "Nume email autentificare:"; +$a->strings["Email password:"] = "Parolă de e-mail:"; +$a->strings["Reply-to address:"] = "Adresă pentru răspuns:"; +$a->strings["Send public posts to all email contacts:"] = "Trimiteți postările publice la toate contactele de email:"; +$a->strings["Action after import:"] = "Acţiune după importare:"; +$a->strings["Mark as seen"] = "Marcați ca și vizualizat"; +$a->strings["Move to folder"] = "Mutare în dosar"; +$a->strings["Move to folder:"] = "Mutare în dosarul:"; +$a->strings["Display Settings"] = "Preferințe Ecran"; +$a->strings["Display Theme:"] = "Temă Afişaj:"; +$a->strings["Mobile Theme:"] = "Temă pentru Mobile:"; +$a->strings["Update browser every xx seconds"] = "Actualizare browser la fiecare fiecare xx secunde"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minim 10 secunde, fără un maxim"; +$a->strings["Number of items to display per page:"] = "Numărul de elemente de afişat pe pagină:"; +$a->strings["Maximum of 100 items"] = "Maxim 100 de elemente"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:"; +$a->strings["Don't show emoticons"] = "Nu afișa emoticoane"; +$a->strings["Don't show notices"] = "Nu afișa notificări"; +$a->strings["Infinite scroll"] = "Derulare infinită"; +$a->strings["User Types"] = "Tipuri de Utilizator"; +$a->strings["Community Types"] = "Tipuri de Comunitare"; +$a->strings["Normal Account Page"] = "Pagină de Cont Simplu"; +$a->strings["This account is a normal personal profile"] = "Acest cont este un profil personal normal"; +$a->strings["Soapbox Page"] = "Pagină Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; +$a->strings["Community Forum/Celebrity Account"] = "Cont Comunitate Forum/Celebritate"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; +$a->strings["Automatic Friend Page"] = "Pagină Prietenie Automată"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni"; +$a->strings["Private Forum [Experimental]"] = "Forum Privat [Experimental]"; +$a->strings["Private forum - approved members only"] = "Forum Privat - numai membrii aprobați"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opţional) Permite acest OpenID să se conecteze la acest cont."; +$a->strings["Publish your default profile in your local site directory?"] = "Publicați profilul dvs. implicit în directorul site-ului dvs. local?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publicați profilul dvs. implicit în directorul social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?"; +$a->strings["Allow friends to post to your profile page?"] = "Permiteți prietenilor să posteze pe pagina dvs. de profil ?"; +$a->strings["Allow friends to tag your posts?"] = "Permiteți prietenilor să vă eticheteze postările?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permiteți persoanelor necunoscute să vă trimită mesaje private?"; +$a->strings["Profile is not published."] = "Profilul nu este publicat."; +$a->strings["or"] = "sau"; +$a->strings["Your Identity Address is"] = "Adresa Dvs. de Identitate este"; +$a->strings["Automatically expire posts after this many days:"] = "Postările vor expira automat după atâtea zile:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse"; +$a->strings["Advanced expiration settings"] = "Configurări Avansate de Expirare"; +$a->strings["Advanced Expiration"] = "Expirare Avansată"; +$a->strings["Expire posts:"] = "Postările expiră:"; +$a->strings["Expire personal notes:"] = "Notele personale expiră:"; +$a->strings["Expire starred posts:"] = "Postările favorite expiră:"; +$a->strings["Expire photos:"] = "Fotografiile expiră:"; +$a->strings["Only expire posts by others:"] = "Expiră numai postările altora:"; +$a->strings["Account Settings"] = "Configurări Cont"; +$a->strings["Password Settings"] = "Configurări Parolă"; +$a->strings["New Password:"] = "Parola Nouă:"; +$a->strings["Confirm:"] = "Confirm:"; +$a->strings["Leave password fields blank unless changing"] = "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați"; +$a->strings["Current Password:"] = "Parola Curentă:"; +$a->strings["Your current password to confirm the changes"] = "Parola curentă pentru a confirma modificările"; +$a->strings["Password:"] = "Parola:"; +$a->strings["Basic Settings"] = "Configurări de Bază"; +$a->strings["Full Name:"] = "Nume complet:"; +$a->strings["Email Address:"] = "Adresa de email:"; +$a->strings["Your Timezone:"] = "Fusul dvs. orar:"; +$a->strings["Default Post Location:"] = "Locația Implicită pentru Postări"; +$a->strings["Use Browser Location:"] = "Folosește Locația Navigatorului:"; +$a->strings["Security and Privacy Settings"] = "Configurări de Securitate și Confidențialitate"; +$a->strings["Maximum Friend Requests/Day:"] = "Solicitări de Prietenie, Maxime/Zi"; +$a->strings["(to prevent spam abuse)"] = "(Pentru a preveni abuzul de tip spam)"; +$a->strings["Default Post Permissions"] = "Permisiuni Implicite Postări"; +$a->strings["(click to open/close)"] = "(apăsați pentru a deschide/închide)"; +$a->strings["Default Private Post"] = "Postare Privată Implicită"; +$a->strings["Default Public Post"] = "Postare Privată Implicită"; +$a->strings["Default Permissions for New Posts"] = "Permisiuni Implicite pentru Postările Noi"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de mesaje private pe zi, de la persoanele necunoscute:"; +$a->strings["Notification Settings"] = "Configurări de Notificare"; +$a->strings["By default post a status message when:"] = "Implicit, postează un mesaj de stare atunci când:"; +$a->strings["accepting a friend request"] = "se acceptă o solicitare de prietenie"; +$a->strings["joining a forum/community"] = "se aderă la un forum/o comunitate"; +$a->strings["making an interesting profile change"] = "se face o modificări de profilinteresantă"; +$a->strings["Send a notification email when:"] = "Trimiteți o notificare email atunci când:"; +$a->strings["You receive an introduction"] = "Primiți o introducere"; +$a->strings["Your introductions are confirmed"] = "Introducerile dvs. sunt confirmate"; +$a->strings["Someone writes on your profile wall"] = "Cineva scrie pe perete dvs. de profil"; +$a->strings["Someone writes a followup comment"] = "Cineva scrie un comentariu de urmărire"; +$a->strings["You receive a private message"] = "Primiți un mesaj privat"; +$a->strings["You receive a friend suggestion"] = "Primiți o sugestie de prietenie"; +$a->strings["You are tagged in a post"] = "Sunteți etichetat într-o postare"; +$a->strings["You are poked/prodded/etc. in a post"] = "Sunteți abordat/incitat/etc. într-o postare"; +$a->strings["Advanced Account/Page Type Settings"] = "Configurări Avansate Cont/Tip Pagină"; +$a->strings["Change the behaviour of this account for special situations"] = "Modificați comportamentul acestui cont pentru situațiile speciale"; +$a->strings["Relocate"] = "Mutare"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton."; +$a->strings["Resend relocate message to contacts"] = "Retrimiteți contactelor, mesajul despre mutare"; +$a->strings["Item has been removed."] = "Elementul a fost eliminat."; +$a->strings["People Search"] = "Căutare Persoane"; +$a->strings["No matches"] = "Nici-o potrivire"; +$a->strings["Profile deleted."] = "Profilul a fost şters."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Profilul nou a fost creat."; +$a->strings["Profile unavailable to clone."] = "Profil indisponibil pentru clonare."; +$a->strings["Profile Name is required."] = "Numele de Profil este necesar."; +$a->strings["Marital Status"] = "Starea Civilă"; +$a->strings["Romantic Partner"] = "Partener Romantic"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Antipatii"; +$a->strings["Work/Employment"] = "Loc de Muncă/Slujbă"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Viziuni Politice"; +$a->strings["Gender"] = "Sex"; +$a->strings["Sexual Preference"] = "Preferinţe Sexuale"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interese"; +$a->strings["Address"] = "Addresă"; +$a->strings["Location"] = "Locaţie"; +$a->strings["Profile updated."] = "Profil actualizat."; +$a->strings[" and "] = "şi"; +$a->strings["public profile"] = "profil public"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a modificat %2\$s în “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Vizitați %2\$s lui %1\$s'"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s și-a actualizat %2\$s, modificând %3\$s."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?"; +$a->strings["Edit Profile Details"] = "Editare Detalii Profil"; +$a->strings["Change Profile Photo"] = "Modificați Fotografia de Profil"; +$a->strings["View this profile"] = "Vizualizați acest profil"; +$a->strings["Create a new profile using these settings"] = "Creaţi un profil nou folosind aceste configurări"; +$a->strings["Clone this profile"] = "Clonați acest profil"; +$a->strings["Delete this profile"] = "Ştergeţi acest profil"; +$a->strings["Profile Name:"] = "Nume profil:"; +$a->strings["Your Full Name:"] = "Numele Complet:"; +$a->strings["Title/Description:"] = "Titlu/Descriere"; +$a->strings["Your Gender:"] = "Sexul:"; +$a->strings["Birthday (%s):"] = "Zi Naştere (%s):"; +$a->strings["Street Address:"] = "Strada:"; +$a->strings["Locality/City:"] = "Localitate/Oraș:"; +$a->strings["Postal/Zip Code:"] = "Cod poștal:"; +$a->strings["Country:"] = "Ţară:"; +$a->strings["Region/State:"] = "Regiunea/Județul:"; +$a->strings[" Marital Status:"] = " Stare Civilă:"; +$a->strings["Who: (if applicable)"] = "Cine: (dacă este cazul)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemple: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Din [data]:"; +$a->strings["Sexual Preference:"] = "Orientare Sexuală:"; +$a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Hometown:"] = "Domiciliu:"; +$a->strings["Political Views:"] = "Viziuni Politice:"; +$a->strings["Religious Views:"] = "Viziuni Religioase:"; +$a->strings["Public Keywords:"] = "Cuvinte cheie Publice:"; +$a->strings["Private Keywords:"] = "Cuvinte cheie Private:"; +$a->strings["Likes:"] = "Îmi place:"; +$a->strings["Dislikes:"] = "Nu-mi place:"; +$a->strings["Example: fishing photography software"] = "Exemplu: pescuit fotografii software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizat pentru a căuta profile, niciodată afișat altora)"; +$a->strings["Tell us about yourself..."] = "Spune-ne despre tine ..."; +$a->strings["Hobbies/Interests"] = "Hobby/Interese"; +$a->strings["Contact information and Social Networks"] = "Informaţii de Contact şi Reţele Sociale"; +$a->strings["Musical interests"] = "Preferințe muzicale"; +$a->strings["Books, literature"] = "Cărti, literatură"; +$a->strings["Television"] = "Programe TV"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultură/divertisment"; +$a->strings["Love/romance"] = "Dragoste/romantism"; +$a->strings["Work/employment"] = "Loc de Muncă/Slujbă"; +$a->strings["School/education"] = "Școală/educație"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Acesta este profilul dvs. public.
El poate fi vizibil pentru oricine folosește internetul."; +$a->strings["Age: "] = "Vârsta:"; +$a->strings["Edit/Manage Profiles"] = "Editare/Gestionare Profile"; +$a->strings["Change profile photo"] = "Modificați Fotografia de Profil"; +$a->strings["Create New Profile"] = "Creați Profil Nou"; +$a->strings["Profile Image"] = "Imagine profil"; +$a->strings["visible to everybody"] = "vizibil pentru toata lumea"; +$a->strings["Edit visibility"] = "Editare vizibilitate"; +$a->strings["link"] = "link"; +$a->strings["Export account"] = "Exportare cont"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server."; +$a->strings["Export all"] = "Exportare tot"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)"; +$a->strings["{0} wants to be your friend"] = "{0} doreşte să vă fie prieten"; +$a->strings["{0} sent you a message"] = "{0} v-a trimis un mesaj"; +$a->strings["{0} requested registration"] = "{0} a solicitat înregistrarea"; +$a->strings["{0} commented %s's post"] = "{0} a comentat la articolul postat de %s"; +$a->strings["{0} liked %s's post"] = "{0} a apreciat articolul postat de %s"; +$a->strings["{0} disliked %s's post"] = "{0} nu a apreciat articolul postat de %s"; +$a->strings["{0} is now friends with %s"] = "{0} este acum prieten cu %s"; +$a->strings["{0} posted"] = "{0} a postat"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a etichetat articolul postat de %s cu #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} v-a menţionat într-o postare"; +$a->strings["Nothing new here"] = "Nimic nou aici"; +$a->strings["Clear notifications"] = "Ştergeţi notificările"; +$a->strings["Not available."] = "Indisponibil."; +$a->strings["Community"] = "Comunitate"; +$a->strings["Save to Folder:"] = "Salvare în Dosar:"; +$a->strings["- select -"] = "- selectare -"; +$a->strings["Save"] = "Salvare"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Sau - ați încercat să încărcaţi un fişier gol?"; +$a->strings["File exceeds size limit of %d"] = "Fişierul depăşeşte dimensiunea limită de %d"; +$a->strings["File upload failed."] = "Încărcarea fișierului a eşuat."; +$a->strings["Invalid profile identifier."] = "Identificator profil, invalid."; +$a->strings["Profile Visibility Editor"] = "Editor Vizibilitate Profil"; +$a->strings["Click on a contact to add or remove."] = "Apăsați pe un contact pentru a-l adăuga sau elimina."; +$a->strings["Visible To"] = "Vizibil Pentru"; +$a->strings["All Contacts (with secure profile access)"] = "Toate Contactele (cu acces profil securizat)"; +$a->strings["Do you really want to delete this suggestion?"] = "Sigur doriți să ștergeți acesta sugestie?"; +$a->strings["Friend Suggestions"] = "Sugestii de Prietenie"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore."; +$a->strings["Connect"] = "Conectare"; +$a->strings["Ignore/Hide"] = "Ignorare/Ascundere"; +$a->strings["Access denied."] = "Accesul interzis."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s îi urează bun venit lui %2\$s"; +$a->strings["Manage Identities and/or Pages"] = "Administrare Identităţii şi/sau Pagini"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \""; +$a->strings["Select an identity to manage: "] = "Selectaţi o identitate de gestionat:"; +$a->strings["No potential page delegates located."] = "Nici-un delegat potenţial de pagină, nu a putut fi localizat."; +$a->strings["Delegate Page Management"] = "Delegare Gestionare Pagină"; +$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."] = "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină."; +$a->strings["Existing Page Managers"] = "Gestionari Existenți Pagină"; +$a->strings["Existing Page Delegates"] = "Delegați Existenți Pagină"; +$a->strings["Potential Delegates"] = "Potenţiali Delegaţi"; +$a->strings["Add"] = "Adăugare"; +$a->strings["No entries."] = "Nu există intrări."; +$a->strings["No contacts."] = "Nici-un contact."; +$a->strings["View Contacts"] = "Vezi Contacte"; +$a->strings["Personal Notes"] = "Note Personale"; +$a->strings["Poke/Prod"] = "Abordare/Atragerea atenției"; +$a->strings["poke, prod or do other things to somebody"] = "abordați, atrageți atenția sau faceți alte lucruri cuiva"; +$a->strings["Recipient"] = "Destinatar"; +$a->strings["Choose what you wish to do to recipient"] = "Alegeți ce doriți să faceți cu destinatarul"; +$a->strings["Make this post private"] = "Faceți acest articol privat"; +$a->strings["Global Directory"] = "Director Global"; +$a->strings["Find on this site"] = "Căutați pe acest site"; +$a->strings["Site Directory"] = "Director Site"; +$a->strings["Gender: "] = "Sex:"; +$a->strings["Gender:"] = "Sex:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Despre:"; +$a->strings["No entries (some entries may be hidden)."] = "Fără înregistrări (unele înregistrări pot fi ascunse)."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Conversie Oră"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v"; +$a->strings["UTC time: %s"] = "Fus orar UTC: %s"; +$a->strings["Current timezone: %s"] = "Fusul orar curent: %s"; +$a->strings["Converted localtime: %s"] = "Ora locală convertită: %s"; +$a->strings["Please select your timezone:"] = "Vă rugăm să vă selectaţi fusul orar:"; +$a->strings["Post successful."] = "Postat cu succes."; +$a->strings["Image uploaded but image cropping failed."] = "Imaginea a fost încărcată, dar decuparea imaginii a eşuat."; +$a->strings["Image size reduction [%s] failed."] = "Reducerea dimensiunea imaginii [%s] a eşuat."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat."; +$a->strings["Unable to process image"] = "Nu s-a putut procesa imaginea."; +$a->strings["Upload File:"] = "Încărcare Fișier:"; +$a->strings["Select a profile:"] = "Selectați un profil:"; +$a->strings["Upload"] = "Încărcare"; +$a->strings["skip this step"] = "omiteți acest pas"; +$a->strings["select a photo from your photo albums"] = "selectaţi o fotografie din albumele dvs. foto"; +$a->strings["Crop Image"] = "Decupare Imagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă."; +$a->strings["Done Editing"] = "Editare Realizată"; +$a->strings["Image uploaded successfully."] = "Imaginea a fost încărcată cu succes"; +$a->strings["Friendica Communications Server - Setup"] = "Serverul de Comunicații Friendica - Instalare"; +$a->strings["Could not connect to database."] = "Nu se poate face conectarea cu baza de date."; +$a->strings["Could not create table."] = "Nu se poate crea tabelul."; +$a->strings["Your Friendica site database has been installed."] = "Baza dvs. de date Friendica, a fost instalată."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"."; +$a->strings["System check"] = "Verificare sistem"; +$a->strings["Check again"] = "Reverificare"; +$a->strings["Database connection"] = "Conexiunea cu baza de date"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua."; +$a->strings["Database Server Name"] = "Nume Server Bază de date"; +$a->strings["Database Login Name"] = "Nume Autentificare Bază de date"; +$a->strings["Database Login Password"] = "Parola de Autentificare Bază de date"; +$a->strings["Database Name"] = "Nume Bază de date"; +$a->strings["Site administrator email address"] = "Adresa de email a administratorului de site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web."; +$a->strings["Please select a default timezone for your website"] = "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs."; +$a->strings["Site settings"] = "Configurări Site"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului 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'"] = "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' "; +$a->strings["PHP executable path"] = "Calea de executare PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea."; +$a->strings["Command line PHP"] = "linie comandă PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)"; +$a->strings["Found PHP version: "] = "Versiune PHP identificată:"; +$a->strings["PHP cli binary"] = "Versiune binară PHP-cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată."; +$a->strings["This is required for message delivery to work."] = "Aceasta este necesară pentru a funcționa livrarea de mesaje."; +$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"] = "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generare chei de criptare"; +$a->strings["libCurl PHP module"] = "Modulul PHP libCurl"; +$a->strings["GD graphics PHP module"] = "Modulul PHP grafică GD"; +$a->strings["OpenSSL PHP module"] = "Modulul PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "Modulul PHP mysqli"; +$a->strings["mb_string PHP module"] = "Modulul PHP mb_string"; +$a->strings["Apache mod_rewrite module"] = "Modulul Apache mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat."; +$a->strings["Error: openssl PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Eroare: modulul PHP mysqli este necesar dar nu este instalat."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Eroare: modulul PHP mb_string este necesar dar nu este instalat."; +$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."] = "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru."; +$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."] = "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi."; +$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."] = "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php este inscriptibil"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 este inscriptibil"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului."; +$a->strings["Url rewrite is working"] = "Funcția de rescriere Url rewrite, funcţionează."; +$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."] = "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web."; +$a->strings["Errors encountered creating database tables."] = "Erori întâlnite la crearea tabelelor bazei de date."; +$a->strings["

What next

"] = "

Ce urmează

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje."; +$a->strings["Group created."] = "Grupul a fost creat."; +$a->strings["Could not create group."] = "Grupul nu se poate crea."; +$a->strings["Group not found."] = "Grupul nu a fost găsit."; +$a->strings["Group name changed."] = "Numele grupului a fost schimbat."; +$a->strings["Save Group"] = "Salvare Grup"; +$a->strings["Create a group of contacts/friends."] = "Creaţi un grup de contacte/prieteni."; +$a->strings["Group Name: "] = "Nume Grup:"; +$a->strings["Group removed."] = "Grupul a fost eliminat."; +$a->strings["Unable to remove group."] = "Nu se poate elimina grupul."; +$a->strings["Group Editor"] = "Editor Grup"; +$a->strings["Members"] = "Membri"; +$a->strings["No such group"] = "Membrii"; +$a->strings["Group is empty"] = "Grupul este gol"; +$a->strings["Group: "] = "Grup:"; +$a->strings["View in context"] = "Vizualizare în context"; +$a->strings["Account approved."] = "Cont aprobat."; +$a->strings["Registration revoked for %s"] = "Înregistrare revocată pentru %s"; +$a->strings["Please login."] = "Vă rugăm să vă autentificați."; +$a->strings["Profile Match"] = "Potrivire Profil"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit."; +$a->strings["is interested in:"] = "are interese pentru:"; +$a->strings["Unable to locate original post."] = "Nu se poate localiza postarea originală."; +$a->strings["Empty post discarded."] = "Postarea goală a fost eliminată."; +$a->strings["System error. Post not saved."] = "Eroare de sistem. Articolul nu a fost salvat."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica."; +$a->strings["You may visit them online at %s"] = "Îi puteți vizita profilul online la %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje."; +$a->strings["%s posted an update."] = "%s a postat o actualizare."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s este momentan %2\$s"; +$a->strings["Mood"] = "Stare de spirit"; +$a->strings["Set your current mood and tell your friends"] = "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor"; +$a->strings["Search Results For:"] = "Rezultatele Căutării Pentru:"; +$a->strings["add"] = "add"; +$a->strings["Commented Order"] = "Ordonare Comentarii"; +$a->strings["Sort by Comment Date"] = "Sortare după Data Comentariului"; +$a->strings["Posted Order"] = "Ordonare Postări"; +$a->strings["Sort by Post Date"] = "Sortare după Data Postării"; +$a->strings["Posts that mention or involve you"] = "Postări ce vă menționează sau vă implică"; +$a->strings["New"] = "Nou"; +$a->strings["Activity Stream - by date"] = "Flux Activități - după dată"; +$a->strings["Shared Links"] = "Linkuri partajate"; +$a->strings["Interesting Links"] = "Legături Interesante"; +$a->strings["Starred"] = "Cu steluță"; +$a->strings["Favourite Posts"] = "Postări Favorite"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură.", + 1 => "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură.", + 2 => "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Mesajele private către acest grup sunt supuse riscului de divulgare publică."; +$a->strings["Contact: "] = "Contact: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Mesajele private către această persoană sunt supuse riscului de divulgare publică."; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Contact settings applied."] = "Configurările Contactului au fost aplicate."; +$a->strings["Contact update failed."] = "Actualizarea Contactului a eșuat."; +$a->strings["Repair Contact Settings"] = "Remediere Configurări Contact"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină."; +$a->strings["Return to contact editor"] = "Reveniţi la editorul de contact"; +$a->strings["Account Nickname"] = "Pseudonim Cont"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Nume_etichetă - suprascrie Numele/Pseudonimul"; +$a->strings["Account URL"] = "URL Cont"; +$a->strings["Friend Request URL"] = "URL Solicitare Prietenie"; +$a->strings["Friend Confirm URL"] = "URL Confirmare Prietenie"; +$a->strings["Notification Endpoint URL"] = "Punct final URL Notificare"; +$a->strings["Poll/Feed URL"] = "URL Sondaj/Flux"; +$a->strings["New photo from this URL"] = "Fotografie Nouă de la acest URL"; +$a->strings["Remote Self"] = "Auto la Distanţă"; +$a->strings["Mirror postings from this contact"] = "Postări în oglindă de la acest contact"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact."; +$a->strings["Your posts and conversations"] = "Postările şi conversaţiile dvs."; +$a->strings["Your profile page"] = "Pagina dvs. de profil"; +$a->strings["Your contacts"] = "Contactele dvs."; +$a->strings["Your photos"] = "Fotografiile dvs."; +$a->strings["Your events"] = "Evenimentele dvs."; +$a->strings["Personal notes"] = "Note Personale"; +$a->strings["Your personal photos"] = "Fotografii dvs. personale"; +$a->strings["Community Pages"] = "Community Pagini"; +$a->strings["Community Profiles"] = "Profile de Comunitate"; +$a->strings["Last users"] = "Ultimii utilizatori"; +$a->strings["Last likes"] = "Ultimele aprecieri"; +$a->strings["event"] = "eveniment"; +$a->strings["Last photos"] = "Ultimele fotografii"; +$a->strings["Find Friends"] = "Găsire Prieteni"; +$a->strings["Local Directory"] = "Director Local"; +$a->strings["Similar Interests"] = "Interese Similare"; +$a->strings["Invite Friends"] = "Invită Prieteni"; +$a->strings["Earth Layers"] = "Straturi Pământ"; +$a->strings["Set zoomfactor for Earth Layers"] = "Stabilire factor de magnificare pentru Straturi Pământ"; +$a->strings["Set longitude (X) for Earth Layers"] = "Stabilire longitudine (X) pentru Straturi Pământ"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Stabilire latitudine (Y) pentru Straturi Pământ"; +$a->strings["Help or @NewHere ?"] = "Ajutor sau @NouAici ?"; +$a->strings["Connect Services"] = "Conectare Servicii"; +$a->strings["don't show"] = "nu afișa"; +$a->strings["show"] = "afișare"; +$a->strings["Show/hide boxes at right-hand column:"] = "Afişare/ascundere casete din coloana din dreapta:"; +$a->strings["Theme settings"] = "Configurări Temă"; +$a->strings["Set font-size for posts and comments"] = "Stabilire dimensiune font pentru postări şi comentarii"; +$a->strings["Set line-height for posts and comments"] = "Stabilire înălțime linie pentru postări şi comentarii"; +$a->strings["Set resolution for middle column"] = "Stabilire rezoluţie pentru coloana din mijloc"; +$a->strings["Set color scheme"] = "Stabilire schemă de culori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Stabilire factor de magnificare pentru Straturi Pământ"; +$a->strings["Set style"] = "Stabilire stil"; +$a->strings["Set colour scheme"] = "Stabilire schemă de culori"; +$a->strings["Alignment"] = "Aliniere"; +$a->strings["Left"] = "Stânga"; +$a->strings["Center"] = "Centrat"; +$a->strings["Color scheme"] = "Schemă culoare"; +$a->strings["Posts font size"] = "Dimensiune font postări"; +$a->strings["Textareas font size"] = "Dimensiune font zone text"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)"; +$a->strings["Set theme width"] = "Stabilire lăţime temă"; +$a->strings["Delete this item?"] = "Ștergeți acest element?"; +$a->strings["show fewer"] = "afișare mai puține"; +$a->strings["Update %s failed. See error logs."] = "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare."; +$a->strings["Update Error at %s"] = "Eroare de actualizare la %s"; +$a->strings["Create a New Account"] = "Creaţi un Cont Nou"; +$a->strings["Logout"] = "Deconectare"; +$a->strings["Login"] = "Login"; +$a->strings["Nickname or Email address: "] = "Pseudonimul sau Adresa de email:"; +$a->strings["Password: "] = "Parola:"; +$a->strings["Remember me"] = "Reține autentificarea"; +$a->strings["Or login using OpenID: "] = "Sau conectaţi-vă utilizând OpenID:"; +$a->strings["Forgot your password?"] = "Ați uitat parola?"; +$a->strings["Website Terms of Service"] = "Condiții de Utilizare Site Web"; +$a->strings["terms of service"] = "condiții de utilizare"; +$a->strings["Website Privacy Policy"] = "Politica de Confidențialitate Site Web"; +$a->strings["privacy policy"] = "politica de confidențialitate"; +$a->strings["Requested account is not available."] = "Contul solicitat nu este disponibil."; +$a->strings["Edit profile"] = "Editare profil"; +$a->strings["Message"] = "Mesaj"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Gestionare/editare profile"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[azi]"; +$a->strings["Birthday Reminders"] = "Memento Zile naştere "; +$a->strings["Birthdays this week:"] = "Zi;e Naştere această săptămînă:"; +$a->strings["[No description]"] = "[Fără descriere]"; +$a->strings["Event Reminders"] = "Memento Eveniment"; +$a->strings["Events this week:"] = "Evenimente în această săptămână:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status Mesaje şi Postări"; +$a->strings["Profile Details"] = "Detalii Profil"; +$a->strings["Videos"] = "Clipuri video"; +$a->strings["Events and Calendar"] = "Evenimente şi Calendar"; +$a->strings["Only You Can See This"] = "Numai Dvs. Puteţi Vizualiza"; +$a->strings["General Features"] = "Caracteristici Generale"; +$a->strings["Multiple Profiles"] = "Profile Multiple"; +$a->strings["Ability to create multiple profiles"] = "Capacitatea de a crea profile multiple"; +$a->strings["Post Composition Features"] = "Caracteristici Compoziţie Postare"; +$a->strings["Richtext Editor"] = "Editor Text Îmbogățit"; +$a->strings["Enable richtext editor"] = "Activare editor text îmbogățit"; +$a->strings["Post Preview"] = "Previzualizare Postare"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor"; +$a->strings["Auto-mention Forums"] = "Auto-menţionare Forumuri"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL."; +$a->strings["Network Sidebar Widgets"] = "Aplicaţii widget de Rețea în Bara Laterală"; +$a->strings["Search by Date"] = "Căutare după Dată"; +$a->strings["Ability to select posts by date ranges"] = "Abilitatea de a selecta postări după intervalele de timp"; +$a->strings["Group Filter"] = "Filtru Grup"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat"; +$a->strings["Network Filter"] = "Filtru Reţea"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată"; +$a->strings["Save search terms for re-use"] = "Salvați termenii de căutare pentru reutilizare"; +$a->strings["Network Tabs"] = "File Reţea"; +$a->strings["Network Personal Tab"] = "Filă Personală de Reţea"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat"; +$a->strings["Network New Tab"] = "Filă Nouă de Reţea"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)"; +$a->strings["Network Shared Links Tab"] = "Filă Legături Distribuite în Rețea"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Permiteți filei să afişeze numai postările din Reţea ce conțin legături"; +$a->strings["Post/Comment Tools"] = "Instrumente Postare/Comentariu"; +$a->strings["Multiple Deletion"] = "Ştergere Multiplă"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selectaţi şi ştergeţi postări/comentarii multiple simultan"; +$a->strings["Edit Sent Posts"] = "Editare Postări Trimise"; +$a->strings["Edit and correct posts and comments after sending"] = "Editarea şi corectarea postărilor şi comentariilor după postarea lor"; +$a->strings["Tagging"] = "Etichetare"; +$a->strings["Ability to tag existing posts"] = "Capacitatea de a eticheta postările existente"; +$a->strings["Post Categories"] = "Categorii Postări"; +$a->strings["Add categories to your posts"] = "Adăugaţi categorii la postările dvs."; +$a->strings["Saved Folders"] = "Dosare Salvate"; +$a->strings["Ability to file posts under folders"] = "Capacitatea de a atribui postări în dosare"; +$a->strings["Dislike Posts"] = "Respingere Postări"; +$a->strings["Ability to dislike posts/comments"] = "Capacitatea de a marca postări/comentarii ca fiind neplăcute"; +$a->strings["Star Posts"] = "Postări cu Steluță"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacitatea de a marca posturile speciale cu o stea ca şi indicator"; +$a->strings["Logged out."] = "Deconectat."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat."; +$a->strings["The error message was:"] = "Mesajul de eroare a fost:"; +$a->strings["Starts:"] = "Începe:"; +$a->strings["Finishes:"] = "Se finalizează:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Zile Naştere :"; +$a->strings["Age:"] = "Vârsta:"; +$a->strings["for %1\$d %2\$s"] = "pentru %1\$d %2\$s"; +$a->strings["Tags:"] = "Etichete:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interese:"; +$a->strings["Contact information and Social Networks:"] = "Informaţii de Contact şi Reţele Sociale:"; +$a->strings["Musical interests:"] = "Preferințe muzicale:"; +$a->strings["Books, literature:"] = "Cărti, literatură:"; +$a->strings["Television:"] = "Programe TV:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultură/divertisment:"; +$a->strings["Love/Romance:"] = "Dragoste/Romantism:"; +$a->strings["Work/employment:"] = "Loc de Muncă/Slujbă:"; +$a->strings["School/education:"] = "Școală/educatie:"; +$a->strings["[no subject]"] = "[fără subiect]"; +$a->strings[" on Last.fm"] = "pe Last.fm"; +$a->strings["newer"] = "mai noi"; +$a->strings["older"] = "mai vechi"; +$a->strings["prev"] = "preced"; +$a->strings["first"] = "prima"; +$a->strings["last"] = "ultima"; +$a->strings["next"] = "următor"; +$a->strings["No contacts"] = "Nici-un contact"; +$a->strings["%d Contact"] = array( + 0 => "%d Contact", + 1 => "%d Contacte", + 2 => "%d de Contacte", +); +$a->strings["poke"] = "abordare"; +$a->strings["poked"] = "a fost abordat(ă)"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "i s-a trimis ping"; +$a->strings["prod"] = "prod"; +$a->strings["prodded"] = "i s-a atras atenția"; +$a->strings["slap"] = "plesnire"; +$a->strings["slapped"] = "a fost plesnit(ă)"; +$a->strings["finger"] = "indicare"; +$a->strings["fingered"] = "a fost indicat(ă)"; +$a->strings["rebuff"] = "respingere"; +$a->strings["rebuffed"] = "a fost respins(ă)"; +$a->strings["happy"] = "fericit(ă)"; +$a->strings["sad"] = "trist(ă)"; +$a->strings["mellow"] = "trist(ă)"; +$a->strings["tired"] = "obosit(ă)"; +$a->strings["perky"] = "arogant(ă)"; +$a->strings["angry"] = "supărat(ă)"; +$a->strings["stupified"] = "stupefiat(ă)"; +$a->strings["puzzled"] = "nedumerit(ă)"; +$a->strings["interested"] = "interesat(ă)"; +$a->strings["bitter"] = "amarnic"; +$a->strings["cheerful"] = "vesel(ă)"; +$a->strings["alive"] = "plin(ă) de viață"; +$a->strings["annoyed"] = "enervat(ă)"; +$a->strings["anxious"] = "neliniştit(ă)"; +$a->strings["cranky"] = "irascibil(ă)"; +$a->strings["disturbed"] = "perturbat(ă)"; +$a->strings["frustrated"] = "frustrat(ă)"; +$a->strings["motivated"] = "motivat(ă)"; +$a->strings["relaxed"] = "relaxat(ă)"; +$a->strings["surprised"] = "surprins(ă)"; +$a->strings["Monday"] = "Luni"; +$a->strings["Tuesday"] = "Marţi"; +$a->strings["Wednesday"] = "Miercuri"; +$a->strings["Thursday"] = "Joi"; +$a->strings["Friday"] = "Vineri"; +$a->strings["Saturday"] = "Sâmbătă"; +$a->strings["Sunday"] = "Duminică"; +$a->strings["January"] = "Ianuarie"; +$a->strings["February"] = "Februarie"; +$a->strings["March"] = "Martie"; +$a->strings["April"] = "Aprilie"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Iunie"; +$a->strings["July"] = "Iulie"; +$a->strings["August"] = "August"; +$a->strings["September"] = "Septembrie"; +$a->strings["October"] = "Octombrie"; +$a->strings["November"] = "Noiembrie"; +$a->strings["December"] = "Decembrie"; +$a->strings["bytes"] = "octeţi"; +$a->strings["Click to open/close"] = "Apăsați pentru a deschide/închide"; +$a->strings["default"] = "implicit"; +$a->strings["Select an alternate language"] = "Selectați o limbă alternativă"; +$a->strings["activity"] = "activitate"; +$a->strings["post"] = "postare"; +$a->strings["Item filed"] = "Element îndosariat"; +$a->strings["User not found."] = "Utilizatorul nu a fost găsit."; +$a->strings["There is no status with this id."] = "Nu există nici-un status cu acest id."; +$a->strings["There is no conversation with this id."] = "Nu există nici-o conversație cu acest id."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'"; +$a->strings["%s's birthday"] = "%s's zi de naştere"; +$a->strings["Happy Birthday %s"] = "La mulţi ani %s"; +$a->strings["A new person is sharing with you at "] = "O nouă persoană împărtășește cu dvs. la"; +$a->strings["You have a new follower at "] = "Aveţi un nou susținător la"; +$a->strings["Do you really want to delete this item?"] = "Sigur doriți să ștergeți acest element?"; +$a->strings["Archives"] = "Arhive"; +$a->strings["(no subject)"] = "(fără subiect)"; +$a->strings["noreply"] = "nu-răspundeţi"; +$a->strings["Sharing notification from Diaspora network"] = "Partajarea notificării din reţeaua Diaspora"; +$a->strings["Attachments:"] = "Atașări:"; +$a->strings["Connect URL missing."] = "Lipseşte URL-ul de conectare."; +$a->strings["This site is not configured to allow communications with other networks."] = "Acest site nu este configurat pentru a permite comunicarea cu alte reţele."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile."; +$a->strings["The profile address specified does not provide adequate information."] = "Adresa de profil specificată nu furnizează informații adecvate."; +$a->strings["An author or name was not found."] = "Un autor sau nume nu a fost găsit."; +$a->strings["No browser URL could be matched to this address."] = "Nici un URL de browser nu a putut fi corelat cu această adresă."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email."; +$a->strings["Use mailto: in front of address to force email check."] = "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs."; +$a->strings["Unable to retrieve contact information."] = "Nu se pot localiza informaţiile de contact."; +$a->strings["following"] = "urmărire"; +$a->strings["Welcome "] = "Bine ați venit"; +$a->strings["Please upload a profile photo."] = "Vă rugăm să încărcaţi o fotografie de profil."; +$a->strings["Welcome back "] = "Bine ați revenit"; +$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."] = "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite."; +$a->strings["Male"] = "Bărbat"; +$a->strings["Female"] = "Femeie"; +$a->strings["Currently Male"] = "În prezent Bărbat"; +$a->strings["Currently Female"] = "În prezent Femeie"; +$a->strings["Mostly Male"] = "Mai mult Bărbat"; +$a->strings["Mostly Female"] = "Mai mult Femeie"; +$a->strings["Transgender"] = "Transsexual"; +$a->strings["Intersex"] = "Intersexual"; +$a->strings["Transsexual"] = "Transsexual"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutru"; +$a->strings["Non-specific"] = "Non-specific"; +$a->strings["Other"] = "Alta"; +$a->strings["Undecided"] = "Indecisă"; +$a->strings["Males"] = "Bărbați"; +$a->strings["Females"] = "Femei"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbiană"; +$a->strings["No Preference"] = "Fără Preferințe"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent(ă)"; +$a->strings["Virgin"] = "Virgin(ă)"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "La grămadă"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Necăsătorit(ă)"; +$a->strings["Lonely"] = "Singur(ă)"; +$a->strings["Available"] = "Disponibil(ă)"; +$a->strings["Unavailable"] = "Indisponibil(ă)"; +$a->strings["Has crush"] = "Îndrăgostit(ă)"; +$a->strings["Infatuated"] = "Îndrăgostit(ă) nebunește"; +$a->strings["Dating"] = "Am întâlniri"; +$a->strings["Unfaithful"] = "Infidel(ă)"; +$a->strings["Sex Addict"] = "Dependent(ă) de Sex"; +$a->strings["Friends"] = "Prieteni"; +$a->strings["Friends/Benefits"] = "Prietenii/Prestaţii"; +$a->strings["Casual"] = "Ocazional"; +$a->strings["Engaged"] = "Cuplat"; +$a->strings["Married"] = "Căsătorit(ă)"; +$a->strings["Imaginarily married"] = "Căsătorit(ă) imaginar"; +$a->strings["Partners"] = "Parteneri"; +$a->strings["Cohabiting"] = "În conviețuire"; +$a->strings["Common law"] = "Drept Comun"; +$a->strings["Happy"] = "Fericit(ă)"; +$a->strings["Not looking"] = "Nu caut"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Înșelat(ă)"; +$a->strings["Separated"] = "Separat(ă)"; +$a->strings["Unstable"] = "Instabil(ă)"; +$a->strings["Divorced"] = "Divorţat(ă)"; +$a->strings["Imaginarily divorced"] = "Divorţat(ă) imaginar"; +$a->strings["Widowed"] = "Văduv(ă)"; +$a->strings["Uncertain"] = "Incert"; +$a->strings["It's complicated"] = "E complicat"; +$a->strings["Don't care"] = "Nu-mi pasă"; +$a->strings["Ask me"] = "Întreabă-mă"; +$a->strings["Error decoding account file"] = "Eroare la decodarea fişierului de cont"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Eroare! Nu pot verifica pseudonimul"; +$a->strings["User '%s' already exists on this server!"] = "Utilizatorul '%s' există deja pe acest server!"; +$a->strings["User creation error"] = "Eroare la crearea utilizatorului"; +$a->strings["User profile creation error"] = "Eroare la crearea profilului utilizatorului"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact neimportat", + 1 => "%d contacte neimportate", + 2 => "%d de contacte neimportate", +); +$a->strings["Done. You can now login with your username and password"] = "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator"; +$a->strings["Click here to upgrade."] = "Apăsați aici pentru a actualiza."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs."; +$a->strings["This action is not available under your subscription plan."] = "Această acţiune nu este disponibilă în planul abonamentului dvs."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a abordat pe %2\$s"; +$a->strings["post/item"] = "post/element"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marcat %3\$s de la %2\$s ca favorit"; +$a->strings["remove"] = "eliminare"; +$a->strings["Delete Selected Items"] = "Ștergeți Elementele Selectate"; +$a->strings["Follow Thread"] = "Urmăriți Firul Conversației"; +$a->strings["View Status"] = "Vizualizare Status"; +$a->strings["View Profile"] = "Vizualizare Profil"; +$a->strings["View Photos"] = "Vizualizare Fotografii"; +$a->strings["Network Posts"] = "Postări din Rețea"; +$a->strings["Edit Contact"] = "Edit Contact"; +$a->strings["Send PM"] = "Trimiteți mesaj personal"; +$a->strings["Poke"] = "Abordare"; +$a->strings["%s likes this."] = "%s apreciază aceasta."; +$a->strings["%s doesn't like this."] = "%s nu apreciază aceasta."; +$a->strings["%2\$d people like this"] = "%2\$d persoane apreciază aceasta"; +$a->strings["%2\$d people don't like this"] = "%2\$d persoanenu apreciază aceasta"; +$a->strings["and"] = "şi"; +$a->strings[", and %d other people"] = ", şi %d alte persoane"; +$a->strings["%s like this."] = "%s apreciază aceasta."; +$a->strings["%s don't like this."] = "%s nu apreciază aceasta."; +$a->strings["Visible to everybody"] = "Vizibil pentru toți"; +$a->strings["Please enter a video link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip video"; +$a->strings["Please enter an audio link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip audio"; +$a->strings["Tag term:"] = "Termen etichetare:"; +$a->strings["Where are you right now?"] = "Unde vă aflați acum?"; +$a->strings["Delete item(s)?"] = "Ștergeți element(e)?"; +$a->strings["Post to Email"] = "Postați prin Email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectorii au fost dezactivați, din moment ce \"%s\" este activat."; +$a->strings["permissions"] = "permisiuni"; +$a->strings["Post to Groups"] = "Postați în Grupuri"; +$a->strings["Post to Contacts"] = "Post către Contacte"; +$a->strings["Private post"] = "Articol privat"; +$a->strings["Add New Contact"] = "Add Contact Nou"; +$a->strings["Enter address or web location"] = "Introduceţi adresa sau locaţia web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemplu: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitație disponibilă", + 1 => "%d invitații disponibile", + 2 => "%d de invitații disponibile", +); +$a->strings["Find People"] = "Căutați Persoane"; +$a->strings["Enter name or interest"] = "Introduceţi numele sau interesul"; +$a->strings["Connect/Follow"] = "Conectare/Urmărire"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemple: Robert Morgenstein, Pescuit"; +$a->strings["Random Profile"] = "Profil Aleatoriu"; +$a->strings["Networks"] = "Rețele"; +$a->strings["All Networks"] = "Toate Reţelele"; +$a->strings["Everything"] = "Totul"; +$a->strings["Categories"] = "Categorii"; +$a->strings["End this session"] = "Finalizați această sesiune"; +$a->strings["Sign in"] = "Autentificare"; +$a->strings["Home Page"] = "Home Pagina"; +$a->strings["Create an account"] = "Creați un cont"; +$a->strings["Help and documentation"] = "Ajutor şi documentaţie"; +$a->strings["Apps"] = "Aplicații"; +$a->strings["Addon applications, utilities, games"] = "Suplimente la aplicații, utilitare, jocuri"; +$a->strings["Search site content"] = "Căutare în conținut site"; +$a->strings["Conversations on this site"] = "Conversaţii pe acest site"; +$a->strings["Directory"] = "Director"; +$a->strings["People directory"] = "Director persoane"; +$a->strings["Information"] = "Informaţii"; +$a->strings["Information about this friendica instance"] = "Informaţii despre această instanță friendica"; +$a->strings["Conversations from your friends"] = "Conversaţiile prieteniilor dvs."; +$a->strings["Network Reset"] = "Resetare Reţea"; +$a->strings["Load Network page with no filters"] = "Încărcare pagina de Reţea fără filtre"; +$a->strings["Friend Requests"] = "Solicitări Prietenie"; +$a->strings["See all notifications"] = "Consultaţi toate notificările"; +$a->strings["Mark all system notifications seen"] = "Marcaţi toate notificările de sistem, ca și vizualizate"; +$a->strings["Private mail"] = "Mail privat"; +$a->strings["Inbox"] = "Mesaje primite"; +$a->strings["Outbox"] = "Căsuță de Ieșire"; +$a->strings["Manage"] = "Gestionare"; +$a->strings["Manage other pages"] = "Gestionează alte pagini"; +$a->strings["Account settings"] = "Configurări Cont"; +$a->strings["Manage/Edit Profiles"] = "Gestionare/Editare Profile"; +$a->strings["Manage/edit friends and contacts"] = "Gestionare/Editare prieteni şi contacte"; +$a->strings["Site setup and configuration"] = "Instalare şi configurare site"; +$a->strings["Navigation"] = "Navigare"; +$a->strings["Site map"] = "Hartă Site"; +$a->strings["Unknown | Not categorised"] = "Necunoscut | Fără categorie"; +$a->strings["Block immediately"] = "Blocare Imediată"; +$a->strings["Shady, spammer, self-marketer"] = "Dubioșii, spammerii, auto-promoterii"; +$a->strings["Known to me, but no opinion"] = "Cunoscut mie, dar fără o opinie"; +$a->strings["OK, probably harmless"] = "OK, probabil inofensiv"; +$a->strings["Reputable, has my trust"] = "Cu reputație, are încrederea mea"; +$a->strings["Weekly"] = "Săptămânal"; +$a->strings["Monthly"] = "Lunar"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Conector Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["Friendica Notification"] = "Notificare Friendica"; +$a->strings["Thank You,"] = "Vă mulțumim,"; +$a->strings["%s Administrator"] = "%s Administrator"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificare] Mail nou primit la %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s v-a trimis un nou mesaj privat la %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s v-a trimis %2\$s"; +$a->strings["a private message"] = "un mesaj privat"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%4\$s postat de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%3\$s dvs.[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificare] Comentariu la conversaţia #%1\$d postată de %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s a comentat la un element/conversaţie pe care o urmăriți."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificare] %s a postat pe peretele dvs. de profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a postat pe peretele dvs. de profil la %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a postat pe [url=%2\$s]peretele dvs.[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificare] %s v-a etichetat"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s v-a etichetat la %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]v-a etichetat[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notificare] %s a distribuit o nouă postare"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a distribuit o nouă postare la %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s] a distribuit o postare[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notificare] %1\$s v-a abordat"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s v-a abordat la %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]v-a abordat[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificare] %s v-a etichetat postarea"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$sv-a etichetat postarea la %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a etichetat [url=%2\$s]postarea dvs.[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificare] Prezentare primită"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Aţi primit o prezentare de la '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Aţi primit [url=%1\$s]o prezentare[/url] de la %2\$s."; +$a->strings["You may visit their profile at %s"] = "Le puteți vizita profilurile, online pe %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificare] Ați primit o sugestie de prietenie"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ați primit o sugestie de prietenie de la '%1\$s' la %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Aţi primit [url=%1\$s]o sugestie de prietenie[/url] pentru %2\$s de la %3\$s."; +$a->strings["Name:"] = "Nume:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia."; +$a->strings["An invitation is required."] = "O invitaţie este necesară."; +$a->strings["Invitation could not be verified."] = "Invitația nu s-a putut verifica."; +$a->strings["Invalid OpenID url"] = "URL OpenID invalid"; +$a->strings["Please enter the required information."] = "Vă rugăm să introduceți informațiile solicitate."; +$a->strings["Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt."; +$a->strings["Name too short."] = "Numele este prea scurt."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Acesta nu pare a fi Numele (Prenumele) dvs. complet"; +$a->strings["Your email domain is not among those allowed on this site."] = "Domeniul dvs. de email nu este printre cele permise pe acest site."; +$a->strings["Not a valid email address."] = "Nu este o adresă vaildă de email."; +$a->strings["Cannot use that email."] = "Nu se poate utiliza acest email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă."; +$a->strings["Nickname is already registered. Please choose another."] = "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "EROARE GRAVĂ: Generarea de chei de securitate a eşuat."; +$a->strings["An error occurred during registration. Please try again."] = "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați."; +$a->strings["An error occurred creating your default profile. Please try again."] = "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați."; +$a->strings["Visible to everybody"] = "Vizibil pentru toata lumea"; +$a->strings["Image/photo"] = "Imagine/fotografie"; +$a->strings["%s wrote the following post"] = "%s a scris următoarea postare"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 a scris:"; +$a->strings["Encrypted content"] = "Conţinut criptat"; +$a->strings["Embedded content"] = "Conţinut încorporat"; +$a->strings["Embedding disabled"] = "Încorporarea conținuturilor este dezactivată"; +$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 şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit."; +$a->strings["Default privacy group for new contacts"] = "Confidenţialitatea implicită a grupului pentru noi contacte"; +$a->strings["Everybody"] = "Toată lumea"; +$a->strings["edit"] = "editare"; +$a->strings["Edit group"] = "Editare grup"; +$a->strings["Create a new group"] = "Creați un nou grup"; +$a->strings["Contacts not in any group"] = "Contacte ce nu se află în orice grup"; +$a->strings["stopped following"] = "urmărire întreruptă"; +$a->strings["Drop Contact"] = "Eliminare Contact"; +$a->strings["Miscellaneous"] = "Diverse"; +$a->strings["year"] = "an"; +$a->strings["month"] = "lună"; +$a->strings["day"] = "zi"; +$a->strings["never"] = "niciodată"; +$a->strings["less than a second ago"] = "acum mai puțin de o secundă"; +$a->strings["years"] = "ani"; +$a->strings["months"] = "luni"; +$a->strings["week"] = "săptămână"; +$a->strings["weeks"] = "săptămâni"; +$a->strings["days"] = "zile"; +$a->strings["hour"] = "oră"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minute"; +$a->strings["second"] = "secundă"; +$a->strings["seconds"] = "secunde"; +$a->strings["%1\$d %2\$s ago"] = "acum %1\$d %2\$s"; +$a->strings["view full size"] = "vezi intreaga mărime"; From a6f89ef8bb27847ad1931530130e90a018850520 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 29 May 2014 07:12:10 +0200 Subject: [PATCH 28/30] RO: added smarty3 template translations --- view/ro/smarty3/follow_notify_eml.tpl | 14 ++++++++++ view/ro/smarty3/friend_complete_eml.tpl | 22 +++++++++++++++ view/ro/smarty3/intro_complete_eml.tpl | 22 +++++++++++++++ view/ro/smarty3/lostpass_eml.tpl | 32 +++++++++++++++++++++ view/ro/smarty3/passchanged_eml.tpl | 20 +++++++++++++ view/ro/smarty3/register_adminadd_eml.tpl | 32 +++++++++++++++++++++ view/ro/smarty3/register_open_eml.tpl | 34 +++++++++++++++++++++++ view/ro/smarty3/register_verify_eml.tpl | 25 +++++++++++++++++ view/ro/smarty3/request_notify_eml.tpl | 17 ++++++++++++ view/ro/smarty3/update_fail_eml.tpl | 11 ++++++++ 10 files changed, 229 insertions(+) create mode 100644 view/ro/smarty3/follow_notify_eml.tpl create mode 100644 view/ro/smarty3/friend_complete_eml.tpl create mode 100644 view/ro/smarty3/intro_complete_eml.tpl create mode 100644 view/ro/smarty3/lostpass_eml.tpl create mode 100644 view/ro/smarty3/passchanged_eml.tpl create mode 100644 view/ro/smarty3/register_adminadd_eml.tpl create mode 100644 view/ro/smarty3/register_open_eml.tpl create mode 100644 view/ro/smarty3/register_verify_eml.tpl create mode 100644 view/ro/smarty3/request_notify_eml.tpl create mode 100644 view/ro/smarty3/update_fail_eml.tpl diff --git a/view/ro/smarty3/follow_notify_eml.tpl b/view/ro/smarty3/follow_notify_eml.tpl new file mode 100644 index 0000000000..9755732b64 --- /dev/null +++ b/view/ro/smarty3/follow_notify_eml.tpl @@ -0,0 +1,14 @@ + +Dragă $[myname], + +Aveţi un nou urmăritoe la $[sitename] - '$[requestor]'. + +Puteţi vizita profilul lor la $[url]. + +Vă rugăm să vă logaţi pe site-ul dvs. pentru a aproba sau ignora / anula cererea. + +$[siteurl] + +Cu respect, + + $[sitename] administrator \ No newline at end of file diff --git a/view/ro/smarty3/friend_complete_eml.tpl b/view/ro/smarty3/friend_complete_eml.tpl new file mode 100644 index 0000000000..9c68c8d09c --- /dev/null +++ b/view/ro/smarty3/friend_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dragă $[username], + + Veşti bune... '$[fn]' at '$[dfrn_url]' a acceptat +cererea dvs. de conectare la '$[sitename]'. + +Sunteți acum prieteni comuni și puteţi schimba actualizări de status, fotografii, și e-mail +fără restricţii. + +Vizitaţi pagina dvs. 'Contacte' la $[sitename] dacă doriţi să faceţi +orice schimbare către această relaţie. + +$[siteurl] + +[De exemplu, puteți crea un profil separat, cu informații care nu sunt +la dispoziția publicului larg - și atribuiți drepturi de vizualizare la "$ [Fn] ']​​. + +Cu stimă, + + $[sitename] Administrator + + \ No newline at end of file diff --git a/view/ro/smarty3/intro_complete_eml.tpl b/view/ro/smarty3/intro_complete_eml.tpl new file mode 100644 index 0000000000..16569d274c --- /dev/null +++ b/view/ro/smarty3/intro_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dragă $[username], + + '$[fn]' de la '$[dfrn_url]' a acceptat +cererea dvs. de conectare la '$[sitename]'. + + '$[fn]' a decis să accepte un "fan", care restricționează +câteva forme de comunicare - cum ar fi mesageria privată şi unele profile +interacțiuni. În cazul în care aceasta este o pagină celebritate sau comunitate, aceste setări au fost +aplicat automat. + + '$[fn]' poate alege să se extindă aceasta în două sau mai căi permisive +relaţie in viitor. + + Veți începe să primiți actualizări publice de status de la '$[fn]', +care va apare pe pagina dvs. 'Network' la + +$[siteurl] + +Cu stimă, + + $[sitename] Administrator \ No newline at end of file diff --git a/view/ro/smarty3/lostpass_eml.tpl b/view/ro/smarty3/lostpass_eml.tpl new file mode 100644 index 0000000000..a20970cc9a --- /dev/null +++ b/view/ro/smarty3/lostpass_eml.tpl @@ -0,0 +1,32 @@ + +Dragă $[username], + O cerere a fost primită recent de la $ [sitename] pentru a reseta +parola contului dvs. În scopul confitmării aceastei cereri, vă rugăm să selectați link-ul de verificare +de mai jos sau inserați în bara de adrese a web browser-ului . + +Dacă nu ați solicitat această schimbare, vă rugăm să nu urmaţi link-ul +furnizat și ignoră și / sau șterge acest e-mail. + +Parola dvs nu va fi schimbată dacă nu putem verifica dacă dvs +a emis această cerere. + +Urmaţi acest link pentru a verifica identitatea dvs. : + +$[reset_link] + +Veți primi apoi un mesaj de follow-up care conține noua parolă. + +Puteți schimba această parola din pagina de setări a contului dvs. după logare + +Detaliile de login sunt următoarele ; + +Locaţie Site: »$[siteurl] +Login Name: $[email] + + + + +Cu stimă, + $[sitename] Administrator + + \ No newline at end of file diff --git a/view/ro/smarty3/passchanged_eml.tpl b/view/ro/smarty3/passchanged_eml.tpl new file mode 100644 index 0000000000..5b35f3f2c3 --- /dev/null +++ b/view/ro/smarty3/passchanged_eml.tpl @@ -0,0 +1,20 @@ + +Dragă $[username], + Parola dvs. a fost schimbată așa cum a solicitat. Vă rugăm să păstrați aceste +Informații pentru evidența dvs. (sau schimbaţi imediat parola +cu ceva care iti vei reaminti). + + +Detaliile dvs. de login sunt următoarele ; + +Locaţie Site»$[siteurl] +Login Name: $[email] +Parolă:»$[new_password] + +Puteți schimba această parolă de la pagina setări cont după logare. + + +Cu stimă, + $[sitename] Administrator + + \ No newline at end of file diff --git a/view/ro/smarty3/register_adminadd_eml.tpl b/view/ro/smarty3/register_adminadd_eml.tpl new file mode 100644 index 0000000000..b32f223a0a --- /dev/null +++ b/view/ro/smarty3/register_adminadd_eml.tpl @@ -0,0 +1,32 @@ +Dragă {{$username}}, + administratorul {{$sitename}} v-a configurat un cont pentru dvs. + +Detaliile de autentificare sunt următoarele: + + +Locație Site: {{$siteurl}} +Nume Autentificare:⇥{{$email}} +Parolă:⇥{{$password}} + +Vă puteți schimba parola din pagina contului dvs. de "Configurări", după autentificare +în. + +Vă rugăm să acordați câteva momente pentru revizuirea altor configurări de cont de pe această pagină. + +Puteți de asemenea să adăugați câteva informații generale profilului dvs. implicit +(pe "Profile" pagina), astfel încât alte persoane să vă găsească uşor. + +Vă recomandăm să vă specificați numele complet, adăugând o fotografie de profil, +adăugând profilului câteva "cuvinte cheie" (foarte utile pentru a vă face noi prieteni) - și +poate în ce țara locuiți; dacă nu doriți să dați mai multe detalii +decât acestea. + +Respectăm pe deplin dreptul la intimitate, și nici unul dintre aceste elemente nu sunt necesar. +Dacă sunteți nou si nu ştiţi pe nimeni pe aici, ele pot ajuta +să vă faceți niște prieteni noi și interesanţi. + + +Vă multumim și vă urăm bun venit la {{$sitename}}. + +Cu stimă, + Administratorul {{$sitename}} \ No newline at end of file diff --git a/view/ro/smarty3/register_open_eml.tpl b/view/ro/smarty3/register_open_eml.tpl new file mode 100644 index 0000000000..d1c71134d5 --- /dev/null +++ b/view/ro/smarty3/register_open_eml.tpl @@ -0,0 +1,34 @@ + +Dragă $[username], + Vă mulțumim pentru înregistrare de la $ [SITENAME]. Contul dvs. a fost creat. +Detaliile de login sunt următoarele ; + + +Locaţie Site»$[siteurl] +Login Name: $[email] +Parolă: $[password] + +Puteți schimba parola dvs. de la pagina "Setări" cont după logare. +in. + +Vă rugăm ia câteva momente pentru revizuirea altor setări din cont pe această pagină. + +Ați putea dori, de asemenea, să adăugați câteva Informații generale la profilul dvs. implicit +(pe "Profile" pagina), astfel încât alte persoane să vă găsească uşor. + +Vă recomandăm să vă setați numele complet, adăugând o fotografie de profil, +adăugând câteva "cuvinte cheie" de profil (foarte utile în a face noi prieteni) - și +poate în ce țara locuiți; dacă nu doriți să fie mai specifice +decât atât. + +Respectăm pe deplin dreptul la intimitate, și nici unul dintre aceşti itemi nu sunt necesari. +Dacă sunteți nou si nu ştiţi pe nimeni pe aici, ele pot ajuta +să faceți niște prieteni noi și interesanţi. + + +Vă multumim si bine aţi venit la $[sitename]. + +Cu stimă, + $[sitename] Administrator + + \ No newline at end of file diff --git a/view/ro/smarty3/register_verify_eml.tpl b/view/ro/smarty3/register_verify_eml.tpl new file mode 100644 index 0000000000..8d63a4eb5e --- /dev/null +++ b/view/ro/smarty3/register_verify_eml.tpl @@ -0,0 +1,25 @@ + +O nouă cererea de înregistrare utilizator a fost primită la $ [sitename], care impune +aprobarea ta. + + +Detaliile de login sunt următoarele ; + +Nume complet:»[$[username], +Locaţie Site»$[siteurl] +Login Name: $[email] + + +Pentru a aproba această cerere va rugam sa accesati link-ul următor: + + +$[siteurl]/regmod/allow/$[hash] + + +Pentru a refuza cererea și elimina contul, vă rugăm să vizitați: + + +$[siteurl]/regmod/deny/$[hash] + + +Vă mulţumesc. diff --git a/view/ro/smarty3/request_notify_eml.tpl b/view/ro/smarty3/request_notify_eml.tpl new file mode 100644 index 0000000000..d8b2d440cf --- /dev/null +++ b/view/ro/smarty3/request_notify_eml.tpl @@ -0,0 +1,17 @@ + +Dragă $[myname], + +Aţi primit o cerere de conectare la $[sitename] + +de la '$[requestor]'. + +Puteţi vizita profilul lor la $[url]. + +Vă rugăm să vă logaţi pe site-ul dvs. pentru a vedea introducerea completă +şi aprobaţi sau ignoraţi/ştergeţi cererea. + +$[siteurl] + +Cu respect, + + $[sitename] administrator \ No newline at end of file diff --git a/view/ro/smarty3/update_fail_eml.tpl b/view/ro/smarty3/update_fail_eml.tpl new file mode 100644 index 0000000000..93fc63b5bb --- /dev/null +++ b/view/ro/smarty3/update_fail_eml.tpl @@ -0,0 +1,11 @@ +Bună, +Sunt $sitename; +Dezvoltatorii friendica au lansat actualizarea $update recent, +dar când am incercat s-o instalez, ceva a mers teribil de prost. +Aceasta trebuie fixată curând . Nu o pot face singur. Vă rog contactaţi-mă la +friendica dezvoltator dacă nu mă pot ajuta pe cont propriu. Baza mea de date ar putea fi invalidă. + +Mesajul de eraoare este '$error'. + +Îmi pare rău. +serverul dvs. friendica la $siteurl \ No newline at end of file From 248b4fbcce573e17bc8f261940107683df7e938f Mon Sep 17 00:00:00 2001 From: tobiasd Date: Thu, 29 May 2014 14:44:19 +0200 Subject: [PATCH 29/30] rev up --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 009b74ec21..53d1c18ba1 100644 --- a/boot.php +++ b/boot.php @@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.2.1749' ); +define ( 'FRIENDICA_VERSION', '3.2.1750' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1170 ); define ( 'EOL', "
\r\n" ); From 46dd72643f8adc2eae9a5c32a958b87dd1263342 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Thu, 29 May 2014 14:55:15 +0200 Subject: [PATCH 30/30] update IT --- view/it/cmnt_received_eml.tpl | 18 - view/it/cmnt_received_html_body_eml.tpl | 25 - view/it/cmnt_received_text_body_eml.tpl | 18 - view/it/follow_notify_eml.tpl | 14 - view/it/friend_complete_eml.tpl | 22 - view/it/htconfig.tpl | 68 - view/it/intro_complete_eml.tpl | 22 - view/it/lostpass_eml.tpl | 32 - view/it/mail_received_html_body_eml.tpl | 25 - view/it/mail_received_text_body_eml.tpl | 10 - view/it/messages.po | 12336 ++++++++-------- view/it/passchanged_eml.tpl | 20 - view/it/register_verify_eml.tpl | 25 - view/it/request_notify_eml.tpl | 17 - view/it/smarty3/cmnt_received_eml.tpl | 23 - .../smarty3/cmnt_received_html_body_eml.tpl | 30 - .../smarty3/cmnt_received_text_body_eml.tpl | 23 - view/it/smarty3/follow_notify_eml.tpl | 15 +- view/it/smarty3/friend_complete_eml.tpl | 19 +- view/it/smarty3/intro_complete_eml.tpl | 21 +- view/it/smarty3/lostpass_eml.tpl | 17 +- .../smarty3/mail_received_html_body_eml.tpl | 30 - .../smarty3/mail_received_text_body_eml.tpl | 15 - view/it/smarty3/passchanged_eml.tpl | 19 +- .../register_adminadd_eml.tpl} | 16 +- view/it/smarty3/register_open_eml.tpl | 19 +- view/it/smarty3/register_verify_eml.tpl | 21 +- view/it/smarty3/request_notify_eml.tpl | 17 +- view/it/smarty3/update_fail_eml.tpl | 11 + view/it/smarty3/wall_received_eml.tpl | 23 - .../smarty3/wall_received_html_body_eml.tpl | 29 - .../smarty3/wall_received_text_body_eml.tpl | 23 - view/it/strings.php | 2871 ++-- view/it/wall_received_eml.tpl | 18 - view/it/wall_received_html_body_eml.tpl | 24 - view/it/wall_received_text_body_eml.tpl | 18 - 36 files changed, 7847 insertions(+), 8107 deletions(-) delete mode 100644 view/it/cmnt_received_eml.tpl delete mode 100644 view/it/cmnt_received_html_body_eml.tpl delete mode 100644 view/it/cmnt_received_text_body_eml.tpl delete mode 100644 view/it/follow_notify_eml.tpl delete mode 100644 view/it/friend_complete_eml.tpl delete mode 100644 view/it/htconfig.tpl delete mode 100644 view/it/intro_complete_eml.tpl delete mode 100644 view/it/lostpass_eml.tpl delete mode 100644 view/it/mail_received_html_body_eml.tpl delete mode 100644 view/it/mail_received_text_body_eml.tpl delete mode 100644 view/it/passchanged_eml.tpl delete mode 100644 view/it/register_verify_eml.tpl delete mode 100644 view/it/request_notify_eml.tpl delete mode 100644 view/it/smarty3/cmnt_received_eml.tpl delete mode 100644 view/it/smarty3/cmnt_received_html_body_eml.tpl delete mode 100644 view/it/smarty3/cmnt_received_text_body_eml.tpl delete mode 100644 view/it/smarty3/mail_received_html_body_eml.tpl delete mode 100644 view/it/smarty3/mail_received_text_body_eml.tpl rename view/it/{register_open_eml.tpl => smarty3/register_adminadd_eml.tpl} (74%) create mode 100644 view/it/smarty3/update_fail_eml.tpl delete mode 100644 view/it/smarty3/wall_received_eml.tpl delete mode 100644 view/it/smarty3/wall_received_html_body_eml.tpl delete mode 100644 view/it/smarty3/wall_received_text_body_eml.tpl delete mode 100644 view/it/wall_received_eml.tpl delete mode 100644 view/it/wall_received_html_body_eml.tpl delete mode 100644 view/it/wall_received_text_body_eml.tpl diff --git a/view/it/cmnt_received_eml.tpl b/view/it/cmnt_received_eml.tpl deleted file mode 100644 index 1991d29ae6..0000000000 --- a/view/it/cmnt_received_eml.tpl +++ /dev/null @@ -1,18 +0,0 @@ - -Caro/a $username, - - '$from' ha commentato un elemeto/conversazione che stai seguendo. - ------ -$body ------ - -Accedi a $siteurl per verdere la conversazione completa: - -$display - -Grazie, - L'amministratore di $sitename - - - diff --git a/view/it/cmnt_received_html_body_eml.tpl b/view/it/cmnt_received_html_body_eml.tpl deleted file mode 100644 index 02d67bd4a1..0000000000 --- a/view/it/cmnt_received_html_body_eml.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - - - Friendica Messaggio - - - - - - - - - - - - - - - - - - -
Friendica
$from ha commentato un elemeto/conversazione che stai seguendo.
$from
$body
Accedi a $siteurl per verdere la conversazione completa:.
Grazie,
L'amministratore di $sitename
- - \ No newline at end of file diff --git a/view/it/cmnt_received_text_body_eml.tpl b/view/it/cmnt_received_text_body_eml.tpl deleted file mode 100644 index 1991d29ae6..0000000000 --- a/view/it/cmnt_received_text_body_eml.tpl +++ /dev/null @@ -1,18 +0,0 @@ - -Caro/a $username, - - '$from' ha commentato un elemeto/conversazione che stai seguendo. - ------ -$body ------ - -Accedi a $siteurl per verdere la conversazione completa: - -$display - -Grazie, - L'amministratore di $sitename - - - diff --git a/view/it/follow_notify_eml.tpl b/view/it/follow_notify_eml.tpl deleted file mode 100644 index c85a0cdc94..0000000000 --- a/view/it/follow_notify_eml.tpl +++ /dev/null @@ -1,14 +0,0 @@ - -Ciao $[myname], - -Un nuovo utente ha iniziato a seguirti su $[sitename] - '$[requestor]'. - -Puoi vedere il suo profilo su $[url]. - -Accedi sul tuo sito per approvare o ignorare la richiesta. - -$[siteurl] - -Saluti, - - L'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/friend_complete_eml.tpl b/view/it/friend_complete_eml.tpl deleted file mode 100644 index 890b0148c3..0000000000 --- a/view/it/friend_complete_eml.tpl +++ /dev/null @@ -1,22 +0,0 @@ - -Ciao $[username], - - Ottime notizie... '$[fn]' di '$[dfrn_url]' ha accettato -la tua richiesta di connessione su '$[sitename]'. - -Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email -senza restrizioni. - -Vai nella pagina 'Contatti' di $[sitename] se vuoi effettuare -qualche modifica riguardo questa relazione - -$[siteurl] - -[Ad esempio, potresti creare un profilo separato con le informazioni che non -sono disponibili pubblicamente - ed permettere di vederlo a '$[fn]']. - -Saluti, - - l'amministratore di $[sitename] - - \ No newline at end of file diff --git a/view/it/htconfig.tpl b/view/it/htconfig.tpl deleted file mode 100644 index 6158f6a33d..0000000000 --- a/view/it/htconfig.tpl +++ /dev/null @@ -1,68 +0,0 @@ -path to 'directory/subdirectory'. - -$a->path = '$urlpath'; - -// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". -// It can be changed later and only applies to timestamps for anonymous viewers. - -$default_timezone = '$timezone'; - -// What is your site name? - -$a->config['sitename'] = "La Mia Rete di Amici"; - -// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. -// Be certain to create your own personal account before setting -// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on -// the registration page. REGISTER_APPROVE requires you set 'admin_email' -// to the email address of an already registered person who can authorise -// and/or approve/deny the request. - -$a->config['register_policy'] = REGISTER_OPEN; -$a->config['register_text'] = ''; -$a->config['admin_email'] = '$adminmail'; - -// Maximum size of an imported message, 0 is unlimited - -$a->config['max_import_size'] = 200000; - -// maximum size of uploaded photos - -$a->config['system']['maximagesize'] = 800000; - -// Location of PHP command line processor - -$a->config['php_path'] = '$phpath'; - -// Location of global directory submission page. - -$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; -$a->config['system']['directory_search_url'] = 'http://dir.friendica.com/directory?search='; - -// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts - -$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com'; - -// Server-to-server private message encryption (RINO) is allowed by default. -// Encryption will only be provided if this setting is true and the -// PHP mcrypt extension is installed on both systems - -$a->config['system']['rino_encrypt'] = true; - -// default system theme - -$a->config['system']['theme'] = 'duepuntozero'; - diff --git a/view/it/intro_complete_eml.tpl b/view/it/intro_complete_eml.tpl deleted file mode 100644 index 46fe7018b7..0000000000 --- a/view/it/intro_complete_eml.tpl +++ /dev/null @@ -1,22 +0,0 @@ - -Ciao $[username], - - '$[fn]' di '$[dfrn_url]' ha accettato -la tua richiesta di connessione a '$[sitename]'. - - '$[fn]' ha deciso di accettarti come "fan", il che restringe -alcune forme di comunicazione - come i messaggi privati e alcune -interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno -applicate automaticamente. - - '$[fn]' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva -. - - Inizierai a ricevere gli aggiornamenti di stato pubblici da '$[fn]', -che apparirà nella tua pagina 'Rete' - -$[siteurl] - -Saluti, - - l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/lostpass_eml.tpl b/view/it/lostpass_eml.tpl deleted file mode 100644 index 26d3d6817e..0000000000 --- a/view/it/lostpass_eml.tpl +++ /dev/null @@ -1,32 +0,0 @@ - -Ciao $[username], - Su $[sitename] è stata ricevuta una richiesta di azzeramento di password per un account. -Per confermare la richiesta, clicca sul link di verifica -qui in fondo oppure copialo nella barra degli indirizzi del tuo browser. - -Se NON hai richiesto l'azzeramento, NON seguire il link -e ignora e/o cancella questa email. - -La tua password non sarà modificata finché non avremo verificato che -hai fatto questa richiesta. - -Per verificare la tua identità clicca su: - -$[reset_link] - -Dopo la verifica riceverai un messaggio di risposta con la nuova password. - -Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato l'accesso. - -I dati di accesso sono i seguenti: - -Sito:»$[siteurl] -Nome utente:»$[email] - - - - -Saluti, - l'amministratore di $[sitename] - - \ No newline at end of file diff --git a/view/it/mail_received_html_body_eml.tpl b/view/it/mail_received_html_body_eml.tpl deleted file mode 100644 index d8111da038..0000000000 --- a/view/it/mail_received_html_body_eml.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - - - Friendica Messsaggio - - - - - - - - - - - - - - - - - - -
Friendica
Hai ricevuto un nuovo messsaggio privato su $siteName da '$from'.
$from
$title
$htmlversion
Accedi a $siteurl per leggere e rispondere ai tuoi messaggi privati.
Grazie,
L'amministratore di $siteName
- - diff --git a/view/it/mail_received_text_body_eml.tpl b/view/it/mail_received_text_body_eml.tpl deleted file mode 100644 index c7da9533f1..0000000000 --- a/view/it/mail_received_text_body_eml.tpl +++ /dev/null @@ -1,10 +0,0 @@ -Hai ricevuto un nuovo messsaggio privato su $siteName da '$from'. - -$title - -$textversion - -Accedi a $siteurl per leggere e rispondere ai tuoi messaggi privati. - -Grazie, -L'amministratore di $siteName diff --git a/view/it/messages.po b/view/it/messages.po index 6912401dc2..74fe7340ff 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -4,17 +4,17 @@ # # Translators: # fabrixxm , 2011 -# fabrixxm , 2013 +# fabrixxm , 2013-2014 # fabrixxm , 2011-2012 # Francesco Apruzzese , 2012-2013 # ufic , 2012 -# Paolo Pa , 2012 +# tuscanhobbit Pa , 2012 msgid "" msgstr "" "Project-Id-Version: friendica\n" -"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2013-06-26 00:01-0700\n" -"PO-Revision-Date: 2013-07-11 10:17+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-05-16 07:51+0200\n" +"PO-Revision-Date: 2014-05-16 08:57+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,4496 +23,1011 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 -#: ../../boot.php:1951 -msgid "Profile" -msgstr "Profilo" +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../object/Item.php:113 ../../mod/content.php:619 +#: ../../mod/photos.php:1355 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 -#: ../../boot.php:1491 -msgid "Gender:" -msgstr "Genere:" +#: ../../object/Item.php:117 ../../mod/editpost.php:109 +#: ../../mod/content.php:727 ../../mod/settings.php:671 +msgid "Edit" +msgstr "Modifica" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F Y" +#: ../../object/Item.php:126 ../../mod/content.php:437 +#: ../../mod/content.php:739 ../../mod/photos.php:1649 +#: ../../include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:703 +#: ../../mod/settings.php:672 ../../mod/group.php:171 +#: ../../mod/photos.php:1650 ../../include/conversation.php:613 +msgid "Delete" +msgstr "Rimuovi" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../object/Item.php:130 ../../mod/content.php:762 +msgid "save to folder" +msgstr "salva nella cartella" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Età:" +#: ../../object/Item.php:192 ../../mod/content.php:752 +msgid "add star" +msgstr "aggiungi a speciali" -#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 -#: ../../boot.php:1494 -msgid "Status:" -msgstr "Stato:" +#: ../../object/Item.php:193 ../../mod/content.php:753 +msgid "remove star" +msgstr "rimuovi da speciali" -#: ../../include/profile_advanced.php:43 +#: ../../object/Item.php:194 ../../mod/content.php:754 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: ../../object/Item.php:197 ../../mod/content.php:757 +msgid "starred" +msgstr "preferito" + +#: ../../object/Item.php:202 ../../mod/content.php:758 +msgid "add tag" +msgstr "aggiungi tag" + +#: ../../object/Item.php:213 ../../mod/content.php:683 +#: ../../mod/photos.php:1538 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: ../../object/Item.php:213 ../../mod/content.php:683 +msgid "like" +msgstr "mi piace" + +#: ../../object/Item.php:214 ../../mod/content.php:684 +#: ../../mod/photos.php:1539 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: ../../object/Item.php:214 ../../mod/content.php:684 +msgid "dislike" +msgstr "non mi piace" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "Share this" +msgstr "Condividi questo" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "share" +msgstr "condividi" + +#: ../../object/Item.php:298 ../../include/conversation.php:665 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../object/Item.php:299 ../../include/conversation.php:666 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: ../../object/Item.php:307 ../../object/Item.php:308 +#: ../../mod/content.php:471 ../../mod/content.php:851 +#: ../../mod/content.php:852 ../../include/conversation.php:653 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../object/Item.php:309 ../../mod/content.php:853 +msgid "to" +msgstr "a" -#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 -#: ../../boot.php:1496 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../object/Item.php:310 +msgid "via" +msgstr "via" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 -msgid "Hometown:" -msgstr "Paese natale:" +#: ../../object/Item.php:311 ../../mod/content.php:854 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tag:" +#: ../../object/Item.php:312 ../../mod/content.php:855 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 -msgid "About:" -msgstr "Informazioni:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Nessuna preferenza" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "è cotto/a" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "infatuato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:279 -#: ../../include/user.php:283 -msgid "Friends" -msgstr "Amici" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici con benefici" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "immaginariamente sposato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coinquilino" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "diritto comune" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Non guarda" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "immaginariamente divorziato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "E' complicato" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Non interessa" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: ../../include/Contact.php:225 ../../include/conversation.php:878 -msgid "Poke" -msgstr "Stuzzica" - -#: ../../include/Contact.php:226 ../../include/conversation.php:872 -msgid "View Status" -msgstr "Visualizza stato" - -#: ../../include/Contact.php:227 ../../include/conversation.php:873 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: ../../include/Contact.php:228 ../../include/conversation.php:874 -msgid "View Photos" -msgstr "Visualizza foto" - -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:875 -msgid "Network Posts" -msgstr "Post della Rete" - -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:876 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:877 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 -#: ../../include/bbcode.php:551 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: ../../include/bbcode.php:272 +#: ../../object/Item.php:321 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:673 #, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente post" - -#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "show" -msgstr "mostra" - -#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "don't show" -msgstr "non mostrare" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - -#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizia:" - -#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Finisce:" - -#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 -#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1489 -msgid "Location:" -msgstr "Posizione:" - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "segue" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: ../../include/user.php:98 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." - -#: ../../include/user.php:103 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." - -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: ../../include/user.php:122 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." - -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: ../../include/user.php:138 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." - -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: ../../include/user.php:237 ../../include/text.php:1618 -msgid "default" -msgstr "default" - -#: ../../include/user.php:247 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." - -#: ../../include/user.php:325 ../../include/user.php:332 -#: ../../include/user.php:339 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455 -msgid "Daily" -msgstr "Giornalmente" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 -#: ../../mod/admin.php:777 -msgid "Email" -msgstr "Email" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 -#: ../../mod/match.php:58 ../../boot.php:1421 -msgid "Connect" -msgstr "Connetti" - -#: ../../include/contact_widgets.php:23 +msgid "%s from %s" +msgstr "%s da %s" + +#: ../../object/Item.php:341 ../../object/Item.php:657 ../../boot.php:693 +#: ../../mod/content.php:708 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 +msgid "Comment" +msgstr "Commento" + +#: ../../object/Item.php:344 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/content.php:498 +#: ../../mod/content.php:882 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/photos.php:1541 +#: ../../include/conversation.php:690 ../../include/conversation.php:1107 +msgid "Please wait" +msgstr "Attendi" + +#: ../../object/Item.php:367 ../../mod/content.php:602 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Trova persone" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:33 ../../mod/directory.php:61 -#: ../../mod/contacts.php:613 -msgid "Find" -msgstr "Trova" - -#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 -#: ../../view/theme/diabook/theme.php:520 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Profilo causale" - -#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Reti" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Categorie" - -#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 -#: ../../object/Item.php:365 ../../boot.php:675 -msgid "show more" -msgstr "mostra di più" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: ../../include/network.php:877 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:286 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:288 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:472 ../../include/items.php:1813 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: ../../include/datetime.php:473 ../../include/items.php:1814 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: ../../include/plugin.php:439 ../../include/plugin.php:441 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:447 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: ../../include/plugin.php:452 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: ../../include/delivery.php:468 ../../include/enotify.php:28 -#: ../../include/notifier.php:785 -msgid "noreply" -msgstr "nessuna risposta" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: ../../include/diaspora.php:1874 ../../include/text.php:1884 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 -#: ../../view/theme/diabook/theme.php:464 -msgid "photo" -msgstr "foto" - -#: ../../include/diaspora.php:1874 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322 -#: ../../view/theme/diabook/theme.php:459 -#: ../../view/theme/diabook/theme.php:468 -msgid "status" -msgstr "stato" - -#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 -#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../include/diaspora.php:2262 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: ../../include/items.php:3495 -msgid "A new person is sharing with you at " -msgstr "Una nuova persona sta condividendo con te da " - -#: ../../include/items.php:3495 -msgid "You have a new follower at " -msgstr "Una nuova persona ti segue su " - -#: ../../include/items.php:3979 ../../mod/display.php:51 -#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809 -#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4018 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: ../../include/items.php:4020 ../../mod/profiles.php:610 -#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/settings.php:961 -#: ../../mod/settings.php:967 ../../mod/settings.php:975 -#: ../../mod/settings.php:979 ../../mod/settings.php:984 -#: ../../mod/settings.php:990 ../../mod/settings.php:996 -#: ../../mod/settings.php:1002 ../../mod/settings.php:1032 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1034 -#: ../../mod/settings.php:1035 ../../mod/settings.php:1036 -#: ../../mod/dfrn_request.php:836 ../../mod/suggest.php:29 -#: ../../mod/message.php:209 ../../mod/contacts.php:246 -msgid "Yes" -msgstr "Si" - -#: ../../include/items.php:4023 ../../include/conversation.php:1120 -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148 -#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 -#: ../../mod/contacts.php:249 -msgid "Cancel" -msgstr "Annulla" - -#: ../../include/items.php:4143 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 -#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 -#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 -#: ../../mod/uimport.php:23 ../../mod/settings.php:91 -#: ../../mod/settings.php:566 ../../mod/settings.php:571 -#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135 -#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56 -#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/follow.php:9 -#: ../../mod/fsuggest.php:78 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55 -#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96 -#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114 -#: ../../mod/network.php:6 ../../mod/notifications.php:66 -#: ../../mod/photos.php:133 ../../mod/photos.php:1044 -#: ../../mod/install.php:151 ../../mod/contacts.php:147 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../index.php:346 -msgid "Permission denied." -msgstr "Permesso negato." - -#: ../../include/items.php:4213 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Cerca per data" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "Filtro reti" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Abilita il widget per mostare i post solo per la rete selezionata" - -#: ../../include/features.php:41 ../../mod/search.php:30 -#: ../../mod/network.php:233 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Strumenti per mesasggi/commenti" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "Cateorie post" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "Post preferiti" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: ../../include/dba.php:44 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/text.php:293 -msgid "newer" -msgstr "nuovi" - -#: ../../include/text.php:295 -msgid "older" -msgstr "vecchi" - -#: ../../include/text.php:300 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:302 -msgid "first" -msgstr "primo" - -#: ../../include/text.php:334 -msgid "last" -msgstr "ultimo" - -#: ../../include/text.php:337 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:829 -msgid "No contacts" -msgstr "Nessun contatto" - -#: ../../include/text.php:838 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:850 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: ../../include/text.php:927 ../../include/text.php:928 -#: ../../include/nav.php:118 ../../mod/search.php:99 -msgid "Search" -msgstr "Cerca" - -#: ../../include/text.php:930 ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Salva" - -#: ../../include/text.php:979 -msgid "poke" -msgstr "stuzzica" - -#: ../../include/text.php:979 ../../include/conversation.php:211 -msgid "poked" -msgstr "toccato" - -#: ../../include/text.php:980 -msgid "ping" -msgstr "invia un ping" - -#: ../../include/text.php:980 -msgid "pinged" -msgstr "inviato un ping" - -#: ../../include/text.php:981 -msgid "prod" -msgstr "pungola" - -#: ../../include/text.php:981 -msgid "prodded" -msgstr "pungolato" - -#: ../../include/text.php:982 -msgid "slap" -msgstr "schiaffeggia" - -#: ../../include/text.php:982 -msgid "slapped" -msgstr "schiaffeggiato" - -#: ../../include/text.php:983 -msgid "finger" -msgstr "tocca" - -#: ../../include/text.php:983 -msgid "fingered" -msgstr "toccato" - -#: ../../include/text.php:984 -msgid "rebuff" -msgstr "respingi" - -#: ../../include/text.php:984 -msgid "rebuffed" -msgstr "respinto" - -#: ../../include/text.php:998 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:999 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1000 -msgid "mellow" -msgstr "rilassato" - -#: ../../include/text.php:1001 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1002 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1003 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1004 -msgid "stupified" -msgstr "stupefatto" - -#: ../../include/text.php:1005 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1006 -msgid "interested" -msgstr "interessato" - -#: ../../include/text.php:1007 -msgid "bitter" -msgstr "risentito" - -#: ../../include/text.php:1008 -msgid "cheerful" -msgstr "giocoso" - -#: ../../include/text.php:1009 -msgid "alive" -msgstr "vivo" - -#: ../../include/text.php:1010 -msgid "annoyed" -msgstr "annoiato" - -#: ../../include/text.php:1011 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1012 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1013 -msgid "disturbed" -msgstr "disturbato" - -#: ../../include/text.php:1014 -msgid "frustrated" -msgstr "frustato" - -#: ../../include/text.php:1015 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1016 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1017 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1185 -msgid "Monday" -msgstr "Lunedì" - -#: ../../include/text.php:1185 -msgid "Tuesday" -msgstr "Martedì" - -#: ../../include/text.php:1185 -msgid "Wednesday" -msgstr "Mercoledì" - -#: ../../include/text.php:1185 -msgid "Thursday" -msgstr "Giovedì" - -#: ../../include/text.php:1185 -msgid "Friday" -msgstr "Venerdì" - -#: ../../include/text.php:1185 -msgid "Saturday" -msgstr "Sabato" - -#: ../../include/text.php:1185 -msgid "Sunday" -msgstr "Domenica" - -#: ../../include/text.php:1189 -msgid "January" -msgstr "Gennaio" - -#: ../../include/text.php:1189 -msgid "February" -msgstr "Febbraio" - -#: ../../include/text.php:1189 -msgid "March" -msgstr "Marzo" - -#: ../../include/text.php:1189 -msgid "April" -msgstr "Aprile" - -#: ../../include/text.php:1189 -msgid "May" -msgstr "Maggio" - -#: ../../include/text.php:1189 -msgid "June" -msgstr "Giugno" - -#: ../../include/text.php:1189 -msgid "July" -msgstr "Luglio" - -#: ../../include/text.php:1189 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:1189 -msgid "September" -msgstr "Settembre" - -#: ../../include/text.php:1189 -msgid "October" -msgstr "Ottobre" - -#: ../../include/text.php:1189 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1189 -msgid "December" -msgstr "Dicembre" - -#: ../../include/text.php:1345 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Guarda Video" - -#: ../../include/text.php:1377 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1401 ../../include/text.php:1413 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1575 ../../mod/events.php:335 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: ../../include/text.php:1630 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: ../../include/text.php:1882 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 -msgid "event" -msgstr "l'evento" - -#: ../../include/text.php:1886 -msgid "activity" -msgstr "attività" - -#: ../../include/text.php:1888 ../../mod/content.php:628 -#: ../../object/Item.php:364 ../../object/Item.php:377 +#: ../../object/Item.php:369 ../../object/Item.php:382 +#: ../../mod/content.php:604 ../../include/text.php:1959 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commento" -#: ../../include/text.php:1889 -msgid "post" -msgstr "messaggio" +#: ../../object/Item.php:370 ../../boot.php:694 ../../mod/content.php:605 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "mostra di più" -#: ../../include/text.php:2044 -msgid "Item filed" -msgstr "Messaggio salvato" +#: ../../object/Item.php:655 ../../mod/content.php:706 +#: ../../mod/photos.php:1558 ../../mod/photos.php:1602 +#: ../../mod/photos.php:1690 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../include/group.php:25 +#: ../../object/Item.php:658 ../../view/theme/perihel/config.php:95 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/clean/config.php:71 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:47 ../../mod/mood.php:137 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/crepair.php:171 ../../mod/content.php:709 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:634 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 +#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 +#: ../../mod/photos.php:1693 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 +#: ../../mod/manage.php:110 +msgid "Submit" +msgstr "Invia" + +#: ../../object/Item.php:659 ../../mod/content.php:710 +msgid "Bold" +msgstr "Grassetto" + +#: ../../object/Item.php:660 ../../mod/content.php:711 +msgid "Italic" +msgstr "Corsivo" + +#: ../../object/Item.php:661 ../../mod/content.php:712 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../object/Item.php:662 ../../mod/content.php:713 +msgid "Quote" +msgstr "Citazione" + +#: ../../object/Item.php:663 ../../mod/content.php:714 +msgid "Code" +msgstr "Codice" + +#: ../../object/Item.php:664 ../../mod/content.php:715 +msgid "Image" +msgstr "Immagine" + +#: ../../object/Item.php:665 ../../mod/content.php:716 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:666 ../../mod/content.php:717 +msgid "Video" +msgstr "Video" + +#: ../../object/Item.php:667 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../include/conversation.php:1124 +msgid "Preview" +msgstr "Anteprima" + +#: ../../index.php:203 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: ../../index.php:247 ../../mod/help.php:90 +msgid "Not Found" +msgstr "Non trovato" + +#: ../../index.php:250 ../../mod/help.php:93 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:266 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:102 ../../mod/settings.php:591 +#: ../../mod/settings.php:596 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1048 ../../mod/wall_attach.php:55 +#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:145 ../../mod/item.php:161 +#: ../../mod/notifications.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../include/items.php:4390 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../index.php:419 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 +#: ../../include/nav.php:104 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" + +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:145 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 +msgid "Profile" +msgstr "Profilo" + +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1986 +#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 +msgid "Photos" +msgstr "Foto" + +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2003 +#: ../../mod/events.php:370 ../../include/nav.php:79 +msgid "Events" +msgstr "Eventi" + +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "I tuoi eventi" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Note personali" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: ../../view/theme/perihel/theme.php:38 +#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Comunità" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "non mostrare" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "mostra" + +#: ../../view/theme/perihel/config.php:97 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/clean/config.php:73 +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:49 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: ../../view/theme/perihel/config.php:98 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: ../../view/theme/perihel/config.php:99 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: ../../view/theme/perihel/config.php:100 +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:173 +msgid "Contacts" +msgstr "Contatti" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimi utenti" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../include/text.php:1953 +msgid "event" +msgstr "l'evento" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 +#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/subthread.php:87 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +#: ../../include/diaspora.php:1908 +msgid "status" +msgstr "stato" + +#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 +#: ../../mod/like.php:150 ../../mod/subthread.php:87 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1955 ../../include/diaspora.php:1908 +msgid "photo" +msgstr "foto" + +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:167 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1924 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultime foto" + +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1062 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:729 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../include/user.php:334 +#: ../../include/user.php:341 ../../include/user.php:348 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Trova Amici" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 +msgid "Global Directory" +msgstr "Elenco globale" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 +#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85 +#: ../../include/nav.php:169 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schema colori" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 +#: ../../include/text.php:1689 +msgid "default" +msgstr "default" + +#: ../../view/theme/clean/config.php:74 +msgid "Background Image" +msgstr "Immagine di sfondo" + +#: ../../view/theme/clean/config.php:74 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "L'indirizzo di un'immagine (p.e. dal tuo album di foto) che deve essere usata come immagine di sfondo." -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" +#: ../../view/theme/clean/config.php:75 +msgid "Background Color" +msgstr "Colore di sfondo" -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tutti" +#: ../../view/theme/clean/config.php:75 +msgid "HEX value for the background color. Don't include the #" +msgstr "Valore esadecimale del colore di sfondo. Non includere il #" -#: ../../include/group.php:249 -msgid "edit" -msgstr "modifica" +#: ../../view/theme/clean/config.php:77 +msgid "font size" +msgstr "dimensione del font" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Gruppi" +#: ../../view/theme/clean/config.php:77 +msgid "base font size for your interface" +msgstr "dimensione del font di base per la tua interfaccia" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." +#: ../../view/theme/vier/config.php:50 +msgid "Set style" +msgstr "Imposta stile" -#: ../../include/group.php:275 ../../mod/network.php:234 -msgid "add" -msgstr "aggiungi" +#: ../../boot.php:692 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" -#: ../../include/conversation.php:140 ../../mod/like.php:170 +#: ../../boot.php:695 +msgid "show fewer" +msgstr "mostra di meno" + +#: ../../boot.php:1023 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +msgid "Update %s failed. See error logs." +msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: ../../include/conversation.php:207 +#: ../../boot.php:1025 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" +msgid "Update Error at %s" +msgstr "Errore aggiornamento a %s" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#: ../../boot.php:1135 +msgid "Create a New Account" +msgstr "Crea un nuovo account" + +#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrati" + +#: ../../boot.php:1160 ../../include/nav.php:73 +msgid "Logout" +msgstr "Esci" + +#: ../../boot.php:1161 ../../include/nav.php:91 +msgid "Login" +msgstr "Accedi" + +#: ../../boot.php:1163 +msgid "Nickname or Email address: " +msgstr "Nome utente o indirizzo email: " + +#: ../../boot.php:1164 +msgid "Password: " +msgstr "Password: " + +#: ../../boot.php:1165 +msgid "Remember me" +msgstr "Ricordati di me" + +#: ../../boot.php:1168 +msgid "Or login using OpenID: " +msgstr "O entra con OpenID:" + +#: ../../boot.php:1174 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:1175 ../../mod/lostpass.php:84 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: ../../boot.php:1177 +msgid "Website Terms of Service" +msgstr "Condizioni di servizio del sito web " + +#: ../../boot.php:1178 +msgid "terms of service" +msgstr "condizioni del servizio" + +#: ../../boot.php:1180 +msgid "Website Privacy Policy" +msgstr "Politiche di privacy del sito" + +#: ../../boot.php:1181 +msgid "privacy policy" +msgstr "politiche di privacy" + +#: ../../boot.php:1314 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: ../../boot.php:1353 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: ../../boot.php:1393 ../../boot.php:1497 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Connetti" + +#: ../../boot.php:1459 +msgid "Message" +msgstr "Messaggio" + +#: ../../boot.php:1467 ../../include/nav.php:171 +msgid "Profiles" +msgstr "Profili" + +#: ../../boot.php:1467 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../boot.php:1474 ../../mod/profiles.php:731 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../boot.php:1484 ../../mod/profiles.php:742 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: ../../boot.php:1487 ../../mod/profiles.php:744 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../boot.php:1488 ../../mod/profiles.php:745 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:155 +msgid "Location:" +msgstr "Posizione:" + +#: ../../boot.php:1515 ../../mod/directory.php:136 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Genere:" + +#: ../../boot.php:1518 ../../mod/directory.php:138 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Stato:" + +#: ../../boot.php:1520 ../../mod/directory.php:140 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../boot.php:1596 ../../boot.php:1682 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1597 ../../boot.php:1683 +msgid "F d" +msgstr "d F" + +#: ../../boot.php:1642 ../../boot.php:1723 +msgid "[today]" +msgstr "[oggi]" + +#: ../../boot.php:1654 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: ../../boot.php:1655 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../boot.php:1716 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: ../../boot.php:1734 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../boot.php:1735 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: ../../boot.php:1972 ../../include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: ../../boot.php:1975 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: ../../boot.php:1982 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../boot.php:1989 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../boot.php:1993 ../../boot.php:1996 +msgid "Videos" +msgstr "Video" + +#: ../../boot.php:2006 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: ../../boot.php:2010 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Note personali" + +#: ../../boot.php:2013 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s al momento è %2$s" -#: ../../include/conversation.php:266 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/elemento" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: ../../include/conversation.php:612 ../../mod/content.php:461 -#: ../../mod/content.php:763 ../../object/Item.php:126 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/conversation.php:613 ../../mod/admin.php:770 -#: ../../mod/settings.php:647 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../mod/content.php:462 -#: ../../mod/content.php:764 ../../object/Item.php:127 -msgid "Delete" -msgstr "Rimuovi" - -#: ../../include/conversation.php:652 ../../mod/content.php:495 -#: ../../mod/content.php:875 ../../mod/content.php:876 -#: ../../object/Item.php:306 ../../object/Item.php:307 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:664 ../../object/Item.php:297 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:665 ../../object/Item.php:298 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: ../../include/conversation.php:672 ../../mod/content.php:505 -#: ../../mod/content.php:887 ../../object/Item.php:320 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: ../../include/conversation.php:687 ../../mod/content.php:520 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:689 ../../include/conversation.php:1100 -#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/photos.php:1532 ../../mod/content.php:522 -#: ../../mod/content.php:906 ../../object/Item.php:341 -msgid "Please wait" -msgstr "Attendi" - -#: ../../include/conversation.php:768 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:772 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: ../../include/conversation.php:871 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:940 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:940 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:945 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: ../../include/conversation.php:962 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:968 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: ../../include/conversation.php:970 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:970 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1004 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: ../../include/conversation.php:1046 -msgid "Post to Email" -msgstr "Invia a email" - -#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 -msgid "Share" -msgstr "Condividi" - -#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 -#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "allega file" - -#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 -#: ../../mod/wallmessage.php:155 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Inserisci link" - -#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "La tua posizione" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 -msgid "set location" -msgstr "posizione" - -#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "canc. pos." - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1102 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 -#: ../../mod/photos.php:1680 ../../mod/content.php:742 -#: ../../object/Item.php:662 -msgid "Preview" -msgstr "Anteprima" - -#: ../../include/conversation.php:1126 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: ../../include/conversation.php:1127 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: ../../include/conversation.php:1128 -msgid "Private post" -msgstr "Post privato" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Notifica Friendica" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Grazie," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: ../../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:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "un messaggio privato" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." - -#: ../../include/enotify.php:90 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" - -#: ../../include/enotify.php:97 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" - -#: ../../include/enotify.php:105 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" - -#: ../../include/enotify.php:115 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" - -#: ../../include/enotify.php:116 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." - -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" - -#: ../../include/enotify.php:128 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" - -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha taggato il tuo post su %2$s" - -#: ../../include/enotify.php:174 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." - -#: ../../include/enotify.php:190 ../../include/enotify.php:208 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" - -#: ../../include/enotify.php:192 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: ../../include/enotify.php:200 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" - -#: ../../include/enotify.php:201 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" - -#: ../../include/enotify.php:206 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:210 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: ../../include/message.php:144 ../../mod/item.php:446 -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: ../../include/nav.php:73 ../../boot.php:1140 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: ../../include/nav.php:76 ../../boot.php:1944 -msgid "Status" -msgstr "Stato" - -#: ../../include/nav.php:76 ../../include/nav.php:143 -#: ../../view/theme/diabook/theme.php:87 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1958 -msgid "Photos" -msgstr "Foto" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:79 ../../mod/events.php:370 -#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1975 -msgid "Events" -msgstr "Eventi" - -#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Personal notes" -msgstr "Note personali" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: ../../include/nav.php:91 ../../boot.php:1141 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Entra" - -#: ../../include/nav.php:104 ../../include/nav.php:143 -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Home Page" - -#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1116 -msgid "Register" -msgstr "Registrati" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:113 ../../mod/help.php:84 -msgid "Help" -msgstr "Guida" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Applicazioni" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: ../../include/nav.php:128 ../../mod/community.php:32 -#: ../../view/theme/diabook/theme.php:93 -msgid "Community" -msgstr "Comunità" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Elenco" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Elenco delle persone" - -#: ../../include/nav.php:140 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Rete" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: ../../include/nav.php:149 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Presentazioni" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: ../../include/nav.php:150 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: ../../include/nav.php:156 ../../mod/message.php:182 -#: ../../mod/notifications.php:103 -msgid "Messages" -msgstr "Messaggi" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Posta privata" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:159 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Gestisci" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegazioni" - -#: ../../include/nav.php:165 ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069 -#: ../../mod/settings.php:74 ../../mod/uexport.php:48 -#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:658 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 -msgid "Account settings" -msgstr "Parametri account" - -#: ../../include/nav.php:169 ../../boot.php:1443 -msgid "Profiles" -msgstr "Profili" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: ../../include/nav.php:171 ../../mod/contacts.php:607 -#: ../../view/theme/diabook/theme.php:89 -msgid "Contacts" -msgstr "Contatti" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: ../../include/nav.php:178 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "Navigazione" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Mappa del sito" - -#: ../../include/oembed.php:138 -msgid "Embedded content" -msgstr "Contenuto incorporato" - -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "Embed disabilitato" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" - -#: ../../include/uimport.php:116 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" - -#: ../../include/uimport.php:120 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" - -#: ../../include/uimport.php:139 -msgid "User creation error" -msgstr "Errore creando l'utente" - -#: ../../include/uimport.php:157 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: ../../include/uimport.php:206 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" - -#: ../../include/uimport.php:276 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:160 ../../mod/profiles.php:583 -#: ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "Stato civile" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Mi piace" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religione" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/profiles.php:367 -msgid "Location" -msgstr "Posizione" - -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:521 -msgid " and " -msgstr "e " - -#: ../../mod/profiles.php:529 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../mod/profiles.php:533 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: ../../mod/profiles.php:536 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240 -#: ../../mod/settings.php:961 ../../mod/settings.php:967 -#: ../../mod/settings.php:975 ../../mod/settings.php:979 -#: ../../mod/settings.php:984 ../../mod/settings.php:990 -#: ../../mod/settings.php:996 ../../mod/settings.php:1002 -#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 -#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837 -msgid "No" -msgstr "No" - -#: ../../mod/profiles.php:629 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763 -#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189 -#: ../../mod/settings.php:584 ../../mod/settings.php:694 -#: ../../mod/settings.php:763 ../../mod/settings.php:837 -#: ../../mod/settings.php:1064 ../../mod/crepair.php:166 -#: ../../mod/poke.php:199 ../../mod/events.php:478 ../../mod/fsuggest.php:107 -#: ../../mod/group.php:87 ../../mod/invite.php:140 ../../mod/localtime.php:45 -#: ../../mod/manage.php:110 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/contacts.php:386 -#: ../../mod/content.php:733 ../../object/Item.php:653 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/quattro/config.php:64 -msgid "Submit" -msgstr "Invia" - -#: ../../mod/profiles.php:631 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:632 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: ../../mod/profiles.php:633 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:634 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:635 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:636 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:637 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:638 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: ../../mod/profiles.php:639 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: ../../mod/profiles.php:640 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" - -#: ../../mod/profiles.php:641 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: ../../mod/profiles.php:642 -msgid "Locality/City:" -msgstr "Località:" - -#: ../../mod/profiles.php:643 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: ../../mod/profiles.php:644 -msgid "Country:" -msgstr "Nazione:" - -#: ../../mod/profiles.php:645 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: ../../mod/profiles.php:646 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: ../../mod/profiles.php:647 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: ../../mod/profiles.php:648 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:649 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: ../../mod/profiles.php:651 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: ../../mod/profiles.php:654 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: ../../mod/profiles.php:655 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: ../../mod/profiles.php:656 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: ../../mod/profiles.php:659 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: ../../mod/profiles.php:660 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: ../../mod/profiles.php:661 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: ../../mod/profiles.php:662 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: ../../mod/profiles.php:663 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../mod/profiles.php:664 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: ../../mod/profiles.php:665 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:666 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:667 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:668 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:669 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:670 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:671 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:676 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." - -#: ../../mod/profiles.php:686 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Età : " - -#: ../../mod/profiles.php:725 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: ../../mod/profiles.php:726 ../../boot.php:1449 ../../boot.php:1475 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:727 ../../boot.php:1450 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../mod/profiles.php:738 ../../boot.php:1460 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: ../../mod/profiles.php:740 ../../boot.php:1463 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../mod/profiles.php:741 ../../boot.php:1464 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: ../../mod/notes.php:44 ../../boot.php:1982 -msgid "Personal Notes" -msgstr "Note personali" - -#: ../../mod/display.php:19 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 -#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 -#: ../../mod/photos.php:914 ../../mod/community.php:18 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + +#: ../../mod/display.php:19 ../../mod/_search.php:89 +#: ../../mod/directory.php:31 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:918 +#: ../../mod/videos.php:115 msgid "Public access denied." msgstr "Accesso negato." +#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166 +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 +#: ../../include/items.php:4194 +msgid "Item not found." +msgstr "Elemento non trovato." + #: ../../mod/display.php:99 ../../mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "L'accesso a questo profilo è stato limitato." -#: ../../mod/display.php:239 +#: ../../mod/display.php:263 msgid "Item has been removed." msgstr "L'oggetto è stato rimosso." -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 -#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 +#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: ../../mod/friendica.php:58 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: ../../mod/friendica.php:59 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: ../../mod/friendica.php:61 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: ../../mod/friendica.php:63 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: ../../mod/friendica.php:64 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: ../../mod/friendica.php:78 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: ../../mod/friendica.php:91 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" -#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} ti ha citato in un post" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: ../../mod/admin.php:96 ../../mod/admin.php:490 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: ../../mod/admin.php:182 ../../mod/admin.php:733 -msgid "Normal Account" -msgstr "Account normale" - -#: ../../mod/admin.php:183 ../../mod/admin.php:734 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: ../../mod/admin.php:184 ../../mod/admin.php:735 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: ../../mod/admin.php:185 ../../mod/admin.php:736 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: ../../mod/admin.php:186 -msgid "Blog Account" -msgstr "Account Blog" - -#: ../../mod/admin.php:187 -msgid "Private Forum" -msgstr "Forum Privato" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Code messaggi" - -#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761 -#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066 -#: ../../mod/admin.php:1100 ../../mod/admin.php:1187 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Sommario" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:216 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:219 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:405 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:434 ../../mod/settings.php:793 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: ../../mod/admin.php:451 ../../mod/contacts.php:330 -msgid "Never" -msgstr "Mai" - -#: ../../mod/admin.php:460 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: ../../mod/admin.php:476 -msgid "Closed" -msgstr "Chiusa" - -#: ../../mod/admin.php:477 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: ../../mod/admin.php:478 -msgid "Open" -msgstr "Aperta" - -#: ../../mod/admin.php:482 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: ../../mod/admin.php:483 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: ../../mod/admin.php:484 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: ../../mod/admin.php:492 ../../mod/register.php:261 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:493 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:494 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:495 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../mod/admin.php:496 -msgid "Performance" -msgstr "Performance" - -#: ../../mod/admin.php:500 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:502 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:503 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:503 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: ../../mod/admin.php:504 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: ../../mod/admin.php:504 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: ../../mod/admin.php:505 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: ../../mod/admin.php:505 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: ../../mod/admin.php:506 -msgid "'Share' element" -msgstr "Elemento 'Share'" - -#: ../../mod/admin.php:506 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "Attiva l'elemento bbcode 'share' per i post condivisi." - -#: ../../mod/admin.php:507 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: ../../mod/admin.php:507 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: ../../mod/admin.php:508 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: ../../mod/admin.php:508 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: ../../mod/admin.php:509 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: ../../mod/admin.php:509 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: ../../mod/admin.php:510 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: ../../mod/admin.php:510 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: ../../mod/admin.php:511 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: ../../mod/admin.php:511 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: ../../mod/admin.php:513 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: ../../mod/admin.php:514 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: ../../mod/admin.php:514 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: ../../mod/admin.php:515 -msgid "Register text" -msgstr "Testo registrazione" - -#: ../../mod/admin.php:515 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:516 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: ../../mod/admin.php:516 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: ../../mod/admin.php:517 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: ../../mod/admin.php:517 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../mod/admin.php:518 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../mod/admin.php:518 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../mod/admin.php:519 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../mod/admin.php:519 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: ../../mod/admin.php:520 -msgid "Force publish" -msgstr "Forza publicazione" - -#: ../../mod/admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: ../../mod/admin.php:521 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: ../../mod/admin.php:521 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: ../../mod/admin.php:522 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: ../../mod/admin.php:522 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: ../../mod/admin.php:523 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: ../../mod/admin.php:523 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: ../../mod/admin.php:524 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: ../../mod/admin.php:524 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: ../../mod/admin.php:525 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." - -#: ../../mod/admin.php:525 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" - -#: ../../mod/admin.php:526 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: ../../mod/admin.php:526 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." - -#: ../../mod/admin.php:528 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: ../../mod/admin.php:528 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: ../../mod/admin.php:529 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: ../../mod/admin.php:529 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: ../../mod/admin.php:530 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: ../../mod/admin.php:530 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: ../../mod/admin.php:531 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: ../../mod/admin.php:531 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: ../../mod/admin.php:532 -msgid "Show Community Page" -msgstr "Mostra pagina Comunità" - -#: ../../mod/admin.php:532 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito." - -#: ../../mod/admin.php:533 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: ../../mod/admin.php:533 -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 "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." - -#: ../../mod/admin.php:534 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: ../../mod/admin.php:534 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." - -#: ../../mod/admin.php:535 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: ../../mod/admin.php:535 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: ../../mod/admin.php:536 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: ../../mod/admin.php:536 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: ../../mod/admin.php:537 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: ../../mod/admin.php:537 -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 vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: ../../mod/admin.php:538 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: ../../mod/admin.php:539 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: ../../mod/admin.php:540 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:540 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: ../../mod/admin.php:541 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: ../../mod/admin.php:541 -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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:542 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: ../../mod/admin.php:542 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: ../../mod/admin.php:543 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: ../../mod/admin.php:543 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: ../../mod/admin.php:545 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: ../../mod/admin.php:545 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: ../../mod/admin.php:546 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: ../../mod/admin.php:547 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: ../../mod/admin.php:547 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)." - -#: ../../mod/admin.php:548 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: ../../mod/admin.php:549 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: ../../mod/admin.php:550 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: ../../mod/admin.php:567 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: ../../mod/admin.php:577 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema." - -#: ../../mod/admin.php:580 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: ../../mod/admin.php:584 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: ../../mod/admin.php:587 -#, php-format -msgid "Update function %s could not be found." -msgstr "La funzione di aggiornamento %s non puo' essere trovata." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: ../../mod/admin.php:607 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: ../../mod/admin.php:641 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: ../../mod/admin.php:680 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: ../../mod/admin.php:688 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:688 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:764 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:765 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:766 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586 -#: ../../mod/settings.php:612 ../../mod/crepair.php:148 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:767 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:768 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:769 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:771 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:772 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:773 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: ../../mod/admin.php:774 -msgid "Account expired" -msgstr "Account scaduto" - -#: ../../mod/admin.php:777 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:777 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:777 -msgid "Last item" -msgstr "Ultimo elemento" - -#: ../../mod/admin.php:777 -msgid "Account" -msgstr "Account" - -#: ../../mod/admin.php:779 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: ../../mod/admin.php:780 -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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: ../../mod/admin.php:825 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: ../../mod/admin.php:835 ../../mod/admin.php:1038 -msgid "Disable" -msgstr "Disabilita" - -#: ../../mod/admin.php:837 ../../mod/admin.php:1040 -msgid "Enable" -msgstr "Abilita" - -#: ../../mod/admin.php:860 ../../mod/admin.php:1068 -msgid "Toggle" -msgstr "Inverti" - -#: ../../mod/admin.php:868 ../../mod/admin.php:1078 -msgid "Author: " -msgstr "Autore: " - -#: ../../mod/admin.php:869 ../../mod/admin.php:1079 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: ../../mod/admin.php:998 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../mod/admin.php:1060 -msgid "Screenshot" -msgstr "Anteprima" - -#: ../../mod/admin.php:1106 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1107 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1134 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: ../../mod/admin.php:1190 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1196 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: ../../mod/admin.php:1197 -msgid "Log file" -msgstr "File di Log" - -#: ../../mod/admin.php:1197 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: ../../mod/admin.php:1198 -msgid "Log level" -msgstr "Livello di Log" - -#: ../../mod/admin.php:1247 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/admin.php:1248 -msgid "Close" -msgstr "Chiudi" - -#: ../../mod/admin.php:1254 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: ../../mod/admin.php:1255 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: ../../mod/admin.php:1256 -msgid "FTP User" -msgstr "Utente FTP" - -#: ../../mod/admin.php:1257 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: ../../mod/item.php:108 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:310 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: ../../mod/item.php:872 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: ../../mod/item.php:897 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: ../../mod/item.php:899 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: ../../mod/item.php:900 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: ../../mod/item.php:904 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: ../../mod/search.php:21 ../../mod/network.php:224 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../mod/search.php:180 ../../mod/search.php:206 -#: ../../mod/community.php:61 ../../mod/community.php:89 -msgid "No results." -msgstr "Nessun risultato." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#: ../../mod/register.php:92 ../../mod/admin.php:737 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: ../../mod/register.php:99 +#: ../../mod/register.php:100 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: ../../mod/register.php:103 +#: ../../mod/register.php:104 msgid "Failed to send email message. Here is the message that failed." msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato." -#: ../../mod/register.php:108 +#: ../../mod/register.php:109 msgid "Your registration can not be processed." msgstr "La tua registrazione non puo' essere elaborata." -#: ../../mod/register.php:145 +#: ../../mod/register.php:149 #, php-format msgid "Registration request at %s" msgstr "Richiesta di registrazione su %s" -#: ../../mod/register.php:154 +#: ../../mod/register.php:158 msgid "Your registration is pending approval by the site owner." msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." -#: ../../mod/register.php:192 ../../mod/uimport.php:50 +#: ../../mod/register.php:196 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../mod/register.php:220 +#: ../../mod/register.php:224 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." -#: ../../mod/register.php:221 +#: ../../mod/register.php:225 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." -#: ../../mod/register.php:222 +#: ../../mod/register.php:226 msgid "Your OpenID (optional): " msgstr "Il tuo OpenID (opzionale): " -#: ../../mod/register.php:236 +#: ../../mod/register.php:240 msgid "Include your profile in member directory?" msgstr "Includi il tuo profilo nell'elenco pubblico?" -#: ../../mod/register.php:257 +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 ../../mod/profiles.php:614 +#: ../../mod/message.php:209 ../../include/items.php:4235 +msgid "Yes" +msgstr "Si" + +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1001 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1019 ../../mod/settings.php:1024 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 ../../mod/settings.php:1076 +#: ../../mod/profiles.php:615 +msgid "No" +msgstr "No" + +#: ../../mod/register.php:261 msgid "Membership on this site is by invitation only." msgstr "La registrazione su questo sito è solo su invito." -#: ../../mod/register.php:258 +#: ../../mod/register.php:262 msgid "Your invitation ID: " msgstr "L'ID del tuo invito:" -#: ../../mod/register.php:269 +#: ../../mod/register.php:265 ../../mod/admin.php:575 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/register.php:273 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Il tuo nome completo (es. Mario Rossi): " -#: ../../mod/register.php:270 +#: ../../mod/register.php:274 msgid "Your Email Address: " msgstr "Il tuo indirizzo email: " -#: ../../mod/register.php:271 +#: ../../mod/register.php:275 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." -#: ../../mod/register.php:272 +#: ../../mod/register.php:276 msgid "Choose a nickname: " msgstr "Scegli un nome utente: " -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: ../../mod/uimport.php:64 +#: ../../mod/register.php:285 ../../mod/uimport.php:64 msgid "Import" msgstr "Importa" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "File account" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" - -#: ../../mod/settings.php:23 ../../mod/photos.php:79 -msgid "everybody" -msgstr "tutti" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:40 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Impostazioni grafiche" - -#: ../../mod/settings.php:46 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Impostazioni connettori" - -#: ../../mod/settings.php:51 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:56 ../../mod/uexport.php:30 -msgid "Connected apps" -msgstr "Applicazioni collegate" - -#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: ../../mod/settings.php:66 ../../mod/uexport.php:40 -msgid "Remove account" -msgstr "Rimuovi account" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:610 -msgid "Update" -msgstr "Aggiorna" - -#: ../../mod/settings.php:227 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: ../../mod/settings.php:232 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: ../../mod/settings.php:247 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: ../../mod/settings.php:312 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:317 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:325 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: ../../mod/settings.php:336 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:338 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: ../../mod/settings.php:403 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: ../../mod/settings.php:405 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: ../../mod/settings.php:414 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: ../../mod/settings.php:419 -msgid " Not valid email." -msgstr " Email non valida." - -#: ../../mod/settings.php:422 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: ../../mod/settings.php:476 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." - -#: ../../mod/settings.php:480 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." - -#: ../../mod/settings.php:510 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -#: ../../mod/settings.php:645 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:601 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:644 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: ../../mod/settings.php:646 ../../mod/editpost.php:109 -#: ../../mod/content.php:751 ../../object/Item.php:117 -msgid "Edit" -msgstr "Modifica" - -#: ../../mod/settings.php:648 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: ../../mod/settings.php:649 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:650 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: ../../mod/settings.php:662 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: ../../mod/settings.php:670 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:684 -msgid "Off" -msgstr "Spento" - -#: ../../mod/settings.php:684 -msgid "On" -msgstr "Acceso" - -#: ../../mod/settings.php:692 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -msgid "enabled" -msgstr "abilitato" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -msgid "disabled" -msgstr "disabilitato" - -#: ../../mod/settings.php:706 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:738 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: ../../mod/settings.php:745 -msgid "Connector Settings" -msgstr "Impostazioni Connettore" - -#: ../../mod/settings.php:750 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: ../../mod/settings.php:751 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" - -#: ../../mod/settings.php:752 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: ../../mod/settings.php:754 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: ../../mod/settings.php:755 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: ../../mod/settings.php:756 -msgid "Security:" -msgstr "Sicurezza:" - -#: ../../mod/settings.php:756 ../../mod/settings.php:761 -msgid "None" -msgstr "Nessuna" - -#: ../../mod/settings.php:757 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: ../../mod/settings.php:758 -msgid "Email password:" -msgstr "Password email:" - -#: ../../mod/settings.php:759 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: ../../mod/settings.php:760 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: ../../mod/settings.php:761 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: ../../mod/settings.php:761 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: ../../mod/settings.php:761 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: ../../mod/settings.php:762 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: ../../mod/settings.php:835 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: ../../mod/settings.php:841 ../../mod/settings.php:853 -msgid "Display Theme:" -msgstr "Tema:" - -#: ../../mod/settings.php:842 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: ../../mod/settings.php:843 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:843 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:844 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: ../../mod/settings.php:844 ../../mod/settings.php:845 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: ../../mod/settings.php:845 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" - -#: ../../mod/settings.php:846 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: ../../mod/settings.php:922 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: ../../mod/settings.php:923 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: ../../mod/settings.php:926 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: ../../mod/settings.php:927 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" - -#: ../../mod/settings.php:930 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: ../../mod/settings.php:931 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" - -#: ../../mod/settings.php:934 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: ../../mod/settings.php:935 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: ../../mod/settings.php:938 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: ../../mod/settings.php:939 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: ../../mod/settings.php:951 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:951 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: ../../mod/settings.php:961 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: ../../mod/settings.php:967 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: ../../mod/settings.php:975 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" - -#: ../../mod/settings.php:979 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: ../../mod/settings.php:984 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: ../../mod/settings.php:990 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: ../../mod/settings.php:996 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" - -#: ../../mod/settings.php:1002 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: ../../mod/settings.php:1010 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: ../../mod/settings.php:1018 -msgid "Your Identity Address is" -msgstr "L'indirizzo della tua identità è" - -#: ../../mod/settings.php:1029 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: ../../mod/settings.php:1029 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: ../../mod/settings.php:1030 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: ../../mod/settings.php:1031 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: ../../mod/settings.php:1032 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: ../../mod/settings.php:1033 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: ../../mod/settings.php:1034 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: ../../mod/settings.php:1035 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: ../../mod/settings.php:1036 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" - -#: ../../mod/settings.php:1062 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: ../../mod/settings.php:1070 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: ../../mod/settings.php:1071 -msgid "New Password:" -msgstr "Nuova password:" - -#: ../../mod/settings.php:1072 -msgid "Confirm:" -msgstr "Conferma:" - -#: ../../mod/settings.php:1072 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: ../../mod/settings.php:1073 -msgid "Current Password:" -msgstr "Password Attuale:" - -#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" - -#: ../../mod/settings.php:1074 -msgid "Password:" -msgstr "Password:" - -#: ../../mod/settings.php:1078 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: ../../mod/settings.php:1080 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: ../../mod/settings.php:1081 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:1082 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:1083 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:1086 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:1088 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: ../../mod/settings.php:1088 ../../mod/settings.php:1118 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: ../../mod/settings.php:1089 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: ../../mod/settings.php:1090 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1099 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: ../../mod/settings.php:1100 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: ../../mod/settings.php:1101 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: ../../mod/settings.php:1102 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: ../../mod/settings.php:1106 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: ../../mod/settings.php:1118 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: ../../mod/settings.php:1121 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: ../../mod/settings.php:1122 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: ../../mod/settings.php:1123 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: ../../mod/settings.php:1124 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: ../../mod/settings.php:1125 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: ../../mod/settings.php:1126 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: ../../mod/settings.php:1127 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: ../../mod/settings.php:1128 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: ../../mod/settings.php:1129 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: ../../mod/settings.php:1130 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: ../../mod/settings.php:1131 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1132 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: ../../mod/settings.php:1133 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: ../../mod/settings.php:1134 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: ../../mod/settings.php:1137 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: ../../mod/settings.php:1138 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "collegamento" - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "Contatto non trovato." -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: ../../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 "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Nome utente" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL dell'utente" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun articolo." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - #: ../../mod/dfrn_confirm.php:119 msgid "" "This may occasionally happen if contact was requested by both persons and it" @@ -4548,6 +1063,12 @@ msgstr "La presentazione ha generato un errore o è stata revocata." msgid "Unable to set contact photo." msgstr "Impossibile impostare la foto del contatto." +#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + #: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " @@ -4594,707 +1115,23 @@ msgstr "Connession accettata su %s" msgid "%1$s has joined %2$s" msgstr "%1$s si è unito a %2$s" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: ../../mod/dfrn_request.php:659 +#: ../../mod/api.php:104 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Conferma" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Connetti un email come follower (in arrivo)" - -#: ../../mod/dfrn_request.php:829 -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 non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Elenco globale" - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: ../../mod/directory.php:59 ../../mod/contacts.php:612 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Genere:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cerca persone" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nessun video selezionato" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1025 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: ../../mod/videos.php:308 ../../mod/photos.php:1784 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Precendente" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Successivo" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "ora:minuti" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Richiesto" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "File" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Esporta account" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Esporta tutto" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: ../../mod/update_community.php:18 ../../mod/update_display.php:22 -#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:194 ../../mod/contacts.php:476 -msgid "All Contacts" -msgstr "Tutti i contatti" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:90 ../../index.php:231 -msgid "Not Found" -msgstr "Non trovato" - -#: ../../mod/help.php:93 ../../index.php:234 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Nessun contatto." - -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" - -#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "A:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" #: ../../mod/lostpass.php:17 msgid "No valid account found." @@ -5315,10 +1152,6 @@ msgid "" "Password reset failed." msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." -#: ../../mod/lostpass.php:84 ../../boot.php:1155 -msgid "Password Reset" -msgstr "Reimpostazione password" - #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." msgstr "La tua password è stata reimpostata come richiesto." @@ -5364,558 +1197,79 @@ msgstr "Nome utente o email: " msgid "Reset" msgstr "Reimposta" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." -#: ../../mod/manage.php:107 +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/wallmessage.php:143 +#, php-format msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "è interessato a:" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "Cerca risultati per:" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: ../../mod/network.php:444 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Personale" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Nuovo" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "Links condivisi" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "Preferiti" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: ../../mod/network.php:546 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:596 ../../mod/content.php:119 -msgid "No such group" -msgstr "Nessun gruppo" - -#: ../../mod/network.php:607 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: ../../mod/network.php:611 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppo: " - -#: ../../mod/network.php:621 -msgid "Contact: " -msgstr "Contatto:" - -#: ../../mod/network.php:623 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:628 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Scarta" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 -#: ../../mod/contacts.php:413 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:419 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "se applicabile" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "si" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "no" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Approva come: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amico" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Condivisore" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: ../../mod/photos.php:51 ../../boot.php:1961 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 -#: ../../view/theme/diabook/theme.php:492 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: ../../mod/photos.php:656 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "una foto" - -#: ../../mod/photos.php:761 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di" - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:1088 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "A:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 +#: ../../mod/message.php:558 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../include/conversation.php:1089 +msgid "Upload photo" msgstr "Carica foto" -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Permessi" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1286 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Modifica foto" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../mod/photos.php:1351 ../../mod/content.php:643 -#: ../../object/Item.php:113 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Tag: " - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Titolo" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../mod/photos.php:1499 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1529 ../../mod/content.php:707 -#: ../../object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: ../../mod/photos.php:1530 ../../mod/content.php:708 -#: ../../object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 ../../mod/content.php:730 -#: ../../object/Item.php:650 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 -#: ../../mod/photos.php:1678 ../../mod/content.php:732 -#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:674 -msgid "Comment" -msgstr "Commento" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../include/conversation.php:1093 +msgid "Insert web link" +msgstr "Inserisci link" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" @@ -6004,6 +1358,11 @@ msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che msgid "Connecting" msgstr "Collegarsi" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + #: ../../mod/newmember.php:49 msgid "" "Authorise the Facebook Connector if you currently have a Facebook account " @@ -6062,6 +1421,10 @@ msgid "" "hours." msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppi" + #: ../../mod/newmember.php:70 msgid "Group Your Contacts" msgstr "Raggruppa i tuoi contatti" @@ -6098,13 +1461,130 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: ../../mod/profile.php:21 ../../boot.php:1329 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127 +#: ../../include/items.php:4238 +msgid "Cancel" +msgstr "Annulla" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Cerca risultati per:" + +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "aggiungi" + +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: ../../mod/network.php:365 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Personale" + +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nuovo" + +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Links condivisi" + +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Preferiti" + +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: ../../mod/network.php:457 +#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: ../../mod/network.php:514 ../../mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" + +#: ../../mod/network.php:531 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: ../../mod/network.php:538 ../../mod/content.php:134 +msgid "Group: " +msgstr "Gruppo: " + +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Contatto:" + +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Contatto non valido." #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -6137,6 +1617,10 @@ msgstr "Leggi il file \"INSTALL.txt\"." msgid "System check" msgstr "Controllo sistema" +#: ../../mod/install.php:207 ../../mod/events.php:373 +msgid "Next" +msgstr "Successivo" + #: ../../mod/install.php:208 msgid "Check again" msgstr "Controlla ancora" @@ -6401,274 +1885,3166 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: ../../mod/admin.php:102 ../../mod/admin.php:573 +msgid "Site" +msgstr "Sito" + +#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916 +msgid "Users" +msgstr "Utenti" + +#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Plugin" + +#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258 +msgid "Themes" +msgstr "Temi" + +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345 +msgid "Logs" +msgstr "Log" + +#: ../../mod/admin.php:126 ../../include/nav.php:180 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: ../../mod/admin.php:188 ../../mod/admin.php:855 +msgid "Normal Account" +msgstr "Account normale" + +#: ../../mod/admin.php:189 ../../mod/admin.php:856 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: ../../mod/admin.php:190 ../../mod/admin.php:857 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: ../../mod/admin.php:191 ../../mod/admin.php:858 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "Account Blog" + +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "Forum Privato" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "Code messaggi" + +#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223 +#: ../../mod/admin.php:1257 ../../mod/admin.php:1344 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "Sommario" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "Utenti registrati" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: ../../mod/admin.php:485 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: ../../mod/admin.php:514 ../../mod/settings.php:823 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: ../../mod/admin.php:531 ../../mod/contacts.php:408 +msgid "Never" +msgstr "Mai" + +#: ../../mod/admin.php:532 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: ../../mod/admin.php:541 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: ../../mod/admin.php:559 +msgid "Closed" +msgstr "Chiusa" + +#: ../../mod/admin.php:560 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: ../../mod/admin.php:561 +msgid "Open" +msgstr "Aperta" + +#: ../../mod/admin.php:565 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: ../../mod/admin.php:566 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: ../../mod/admin.php:567 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259 +#: ../../mod/admin.php:1346 ../../mod/settings.php:609 +#: ../../mod/settings.php:719 ../../mod/settings.php:793 +#: ../../mod/settings.php:872 ../../mod/settings.php:1104 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: ../../mod/admin.php:576 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../mod/admin.php:577 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:578 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../mod/admin.php:579 +msgid "Performance" +msgstr "Performance" + +#: ../../mod/admin.php:580 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: ../../mod/admin.php:583 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:584 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:585 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: ../../mod/admin.php:585 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo." + +#: ../../mod/admin.php:586 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../mod/admin.php:587 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:587 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: ../../mod/admin.php:588 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: ../../mod/admin.php:588 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: ../../mod/admin.php:589 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: ../../mod/admin.php:589 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: ../../mod/admin.php:590 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: ../../mod/admin.php:590 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: ../../mod/admin.php:591 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: ../../mod/admin.php:591 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: ../../mod/admin.php:592 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: ../../mod/admin.php:592 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: ../../mod/admin.php:593 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: ../../mod/admin.php:593 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: ../../mod/admin.php:594 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: ../../mod/admin.php:594 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: ../../mod/admin.php:595 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: ../../mod/admin.php:595 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: ../../mod/admin.php:597 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: ../../mod/admin.php:598 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: ../../mod/admin.php:598 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: ../../mod/admin.php:599 +msgid "Register text" +msgstr "Testo registrazione" + +#: ../../mod/admin.php:599 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:600 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: ../../mod/admin.php:600 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: ../../mod/admin.php:601 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: ../../mod/admin.php:601 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:602 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../mod/admin.php:602 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:603 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../mod/admin.php:603 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: ../../mod/admin.php:604 +msgid "Force publish" +msgstr "Forza publicazione" + +#: ../../mod/admin.php:604 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: ../../mod/admin.php:605 +msgid "Global directory update URL" +msgstr "URL aggiornamento Elenco Globale" + +#: ../../mod/admin.php:605 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." + +#: ../../mod/admin.php:606 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: ../../mod/admin.php:606 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: ../../mod/admin.php:607 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: ../../mod/admin.php:607 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: ../../mod/admin.php:608 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: ../../mod/admin.php:608 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: ../../mod/admin.php:609 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: ../../mod/admin.php:609 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" + +#: ../../mod/admin.php:610 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: ../../mod/admin.php:610 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." + +#: ../../mod/admin.php:611 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: ../../mod/admin.php:611 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." + +#: ../../mod/admin.php:612 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: ../../mod/admin.php:612 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: ../../mod/admin.php:613 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: ../../mod/admin.php:613 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: ../../mod/admin.php:614 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: ../../mod/admin.php:614 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: ../../mod/admin.php:615 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: ../../mod/admin.php:615 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: ../../mod/admin.php:616 +msgid "Show Community Page" +msgstr "Mostra pagina Comunità" + +#: ../../mod/admin.php:616 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito." + +#: ../../mod/admin.php:617 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: ../../mod/admin.php:617 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." + +#: ../../mod/admin.php:618 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: ../../mod/admin.php:618 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." + +#: ../../mod/admin.php:619 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: ../../mod/admin.php:619 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: ../../mod/admin.php:620 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: ../../mod/admin.php:620 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: ../../mod/admin.php:621 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: ../../mod/admin.php:621 +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 vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: ../../mod/admin.php:622 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: ../../mod/admin.php:623 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: ../../mod/admin.php:624 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../mod/admin.php:624 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: ../../mod/admin.php:625 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: ../../mod/admin.php:625 +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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: ../../mod/admin.php:626 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: ../../mod/admin.php:626 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: ../../mod/admin.php:627 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: ../../mod/admin.php:627 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: ../../mod/admin.php:629 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: ../../mod/admin.php:629 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: ../../mod/admin.php:630 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: ../../mod/admin.php:630 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: ../../mod/admin.php:631 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: ../../mod/admin.php:632 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: ../../mod/admin.php:632 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)." + +#: ../../mod/admin.php:633 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: ../../mod/admin.php:634 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: ../../mod/admin.php:635 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: ../../mod/admin.php:637 +msgid "New base url" +msgstr "Nuovo url base" + +#: ../../mod/admin.php:655 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: ../../mod/admin.php:665 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema." + +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: ../../mod/admin.php:672 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: ../../mod/admin.php:675 +#, php-format +msgid "Update function %s could not be found." +msgstr "La funzione di aggiornamento %s non puo' essere trovata." + +#: ../../mod/admin.php:690 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:694 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: ../../mod/admin.php:695 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: ../../mod/admin.php:696 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: ../../mod/admin.php:697 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: ../../mod/admin.php:743 +msgid "Registration successful. Email send to user" +msgstr "Registrazione completata. Email inviata all'utente" + +#: ../../mod/admin.php:753 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: ../../mod/admin.php:760 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: ../../mod/admin.php:799 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: ../../mod/admin.php:807 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: ../../mod/admin.php:902 +msgid "Add User" +msgstr "Aggiungi utente" + +#: ../../mod/admin.php:903 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../mod/admin.php:904 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: ../../mod/admin.php:905 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: ../../mod/admin.php:906 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:932 ../../mod/crepair.php:150 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 +msgid "Name" +msgstr "Nome" + +#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919 +#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: ../../mod/admin.php:907 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/admin.php:908 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/admin.php:909 +msgid "Deny" +msgstr "Nega" + +#: ../../mod/admin.php:911 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/admin.php:912 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/admin.php:913 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: ../../mod/admin.php:914 +msgid "Account expired" +msgstr "Account scaduto" + +#: ../../mod/admin.php:917 +msgid "New User" +msgstr "Nuovo Utente" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../mod/admin.php:918 ../../mod/admin.php:919 +msgid "Last item" +msgstr "Ultimo elemento" + +#: ../../mod/admin.php:918 +msgid "Deleted since" +msgstr "Rimosso da" + +#: ../../mod/admin.php:919 ../../mod/settings.php:36 +msgid "Account" +msgstr "Account" + +#: ../../mod/admin.php:921 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: ../../mod/admin.php:922 +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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: ../../mod/admin.php:932 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: ../../mod/admin.php:933 +msgid "Nickname" +msgstr "Nome utente" + +#: ../../mod/admin.php:933 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: ../../mod/admin.php:934 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: ../../mod/admin.php:967 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: ../../mod/admin.php:971 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: ../../mod/admin.php:981 ../../mod/admin.php:1195 +msgid "Disable" +msgstr "Disabilita" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1197 +msgid "Enable" +msgstr "Abilita" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1225 +msgid "Toggle" +msgstr "Inverti" + +#: ../../mod/admin.php:1014 ../../mod/admin.php:1235 +msgid "Author: " +msgstr "Autore: " + +#: ../../mod/admin.php:1015 ../../mod/admin.php:1236 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: ../../mod/admin.php:1155 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1217 +msgid "Screenshot" +msgstr "Anteprima" + +#: ../../mod/admin.php:1263 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1264 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1291 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: ../../mod/admin.php:1347 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1353 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: ../../mod/admin.php:1354 +msgid "Log file" +msgstr "File di Log" + +#: ../../mod/admin.php:1354 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: ../../mod/admin.php:1355 +msgid "Log level" +msgstr "Livello di Log" + +#: ../../mod/admin.php:1404 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: ../../mod/admin.php:1405 +msgid "Close" +msgstr "Chiudi" + +#: ../../mod/admin.php:1411 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: ../../mod/admin.php:1412 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: ../../mod/admin.php:1413 +msgid "FTP User" +msgstr "Utente FTP" + +#: ../../mod/admin.php:1414 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:951 +#: ../../include/text.php:952 ../../include/nav.php:118 +msgid "Search" +msgstr "Cerca" + +#: ../../mod/_search.php:180 ../../mod/_search.php:206 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:89 +msgid "No results." +msgstr "Nessun risultato." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "collegamento" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 +msgid "upload photo" +msgstr "carica foto" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 +msgid "Attach file" +msgstr "Allega file" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 +msgid "attach file" +msgstr "allega file" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 +msgid "web link" +msgstr "link web" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 +msgid "video link" +msgstr "link video" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 +msgid "audio link" +msgstr "link audio" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 +msgid "Set your location" +msgstr "La tua posizione" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 +msgid "set location" +msgstr "posizione" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 +msgid "clear location" +msgstr "canc. pos." + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 +msgid "Set title" +msgstr "Scegli un titolo" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Trova" + +#: ../../mod/directory.php:111 ../../mod/profiles.php:690 +msgid "Age: " +msgstr "Età : " + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Genere:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Informazioni:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: ../../mod/crepair.php:139 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" + +#: ../../mod/crepair.php:140 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "Nome utente" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "URL dell'utente" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Io remoto" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "File account" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954 +msgid "Save" +msgstr "Salva" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Guida:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Guida" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Conferma" + +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connetti un email come follower (in arrivo)" + +#: ../../mod/dfrn_request.php:829 +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 non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/content.php:496 ../../include/conversation.php:688 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../mod/contacts.php:104 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contatto modificato" +msgstr[1] "%d contatti modificati" + +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." -#: ../../mod/contacts.php:99 +#: ../../mod/contacts.php:149 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/contacts.php:122 +#: ../../mod/contacts.php:178 msgid "Contact updated." msgstr "Contatto aggiornato." -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:278 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:278 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:288 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:288 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:299 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:299 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: ../../mod/contacts.php:244 +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: ../../mod/contacts.php:263 +#: ../../mod/contacts.php:341 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: ../../mod/contacts.php:301 +#: ../../mod/contacts.php:379 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: ../../mod/contacts.php:305 +#: ../../mod/contacts.php:383 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: ../../mod/contacts.php:310 +#: ../../mod/contacts.php:388 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: ../../mod/contacts.php:327 +#: ../../mod/contacts.php:405 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:412 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:412 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: ../../mod/contacts.php:336 +#: ../../mod/contacts.php:414 msgid "Suggest friends" msgstr "Suggerisci amici" -#: ../../mod/contacts.php:340 +#: ../../mod/contacts.php:418 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: ../../mod/contacts.php:348 +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../mod/contacts.php:426 msgid "View all contacts" msgstr "Vedi tutti i contatti" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:434 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 msgid "Unignore" msgstr "Non ignorare" -#: ../../mod/contacts.php:362 +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/contacts.php:440 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Unarchive" msgstr "Dearchivia" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 msgid "Archive" msgstr "Archivia" -#: ../../mod/contacts.php:369 +#: ../../mod/contacts.php:447 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: ../../mod/contacts.php:372 +#: ../../mod/contacts.php:450 msgid "Repair" msgstr "Ripara" -#: ../../mod/contacts.php:375 +#: ../../mod/contacts.php:453 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: ../../mod/contacts.php:381 +#: ../../mod/contacts.php:459 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: ../../mod/contacts.php:384 +#: ../../mod/contacts.php:462 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: ../../mod/contacts.php:387 +#: ../../mod/contacts.php:465 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: ../../mod/contacts.php:388 +#: ../../mod/contacts.php:466 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: ../../mod/contacts.php:389 +#: ../../mod/contacts.php:467 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: ../../mod/contacts.php:390 +#: ../../mod/contacts.php:468 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: ../../mod/contacts.php:396 +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/contacts.php:474 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: ../../mod/contacts.php:397 +#: ../../mod/contacts.php:475 msgid "Ignore contact" msgstr "Ignora il contatto" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:476 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:477 msgid "View conversations" msgstr "Vedi conversazioni" -#: ../../mod/contacts.php:401 +#: ../../mod/contacts.php:479 msgid "Delete contact" msgstr "Rimuovi contatto" -#: ../../mod/contacts.php:405 +#: ../../mod/contacts.php:483 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: ../../mod/contacts.php:407 +#: ../../mod/contacts.php:485 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: ../../mod/contacts.php:416 +#: ../../mod/contacts.php:494 msgid "Currently blocked" msgstr "Bloccato" -#: ../../mod/contacts.php:417 +#: ../../mod/contacts.php:495 msgid "Currently ignored" msgstr "Ignorato" -#: ../../mod/contacts.php:418 +#: ../../mod/contacts.php:496 msgid "Currently archived" msgstr "Al momento archiviato" -#: ../../mod/contacts.php:419 +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: ../../mod/contacts.php:497 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "Notifica per i nuovi messaggi" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "Recupera maggiori infomazioni per i feed" + +#: ../../mod/contacts.php:550 msgid "Suggestions" msgstr "Suggerimenti" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:553 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tutti i contatti" + +#: ../../mod/contacts.php:559 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: ../../mod/contacts.php:482 +#: ../../mod/contacts.php:562 msgid "Unblocked" msgstr "Sbloccato" -#: ../../mod/contacts.php:485 +#: ../../mod/contacts.php:565 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:569 msgid "Blocked" msgstr "Bloccato" -#: ../../mod/contacts.php:492 +#: ../../mod/contacts.php:572 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:576 msgid "Ignored" msgstr "Ignorato" -#: ../../mod/contacts.php:499 +#: ../../mod/contacts.php:579 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:583 msgid "Archived" msgstr "Achiviato" -#: ../../mod/contacts.php:506 +#: ../../mod/contacts.php:586 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: ../../mod/contacts.php:510 +#: ../../mod/contacts.php:590 msgid "Hidden" msgstr "Nascosto" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:593 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:641 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: ../../mod/contacts.php:565 +#: ../../mod/contacts.php:645 msgid "is a fan of yours" msgstr "è un tuo fan" -#: ../../mod/contacts.php:569 +#: ../../mod/contacts.php:649 msgid "you are a fan of" msgstr "sei un fan di" -#: ../../mod/contacts.php:611 +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: ../../mod/contacts.php:692 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:635 +msgid "Update" +msgstr "Aggiorna" + +#: ../../mod/settings.php:29 ../../mod/photos.php:80 +msgid "everybody" +msgstr "tutti" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "Visualizzazione" + +#: ../../mod/settings.php:52 ../../mod/settings.php:775 +msgid "Social Networks" +msgstr "Social Networks" + +#: ../../mod/settings.php:62 ../../include/nav.php:167 +msgid "Delegations" +msgstr "Delegazioni" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Rimuovi account" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: ../../mod/settings.php:319 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: ../../mod/settings.php:333 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: ../../mod/settings.php:338 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: ../../mod/settings.php:346 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: ../../mod/settings.php:357 +msgid "Password changed." +msgstr "Password cambiata." + +#: ../../mod/settings.php:359 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: ../../mod/settings.php:424 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: ../../mod/settings.php:426 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: ../../mod/settings.php:435 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: ../../mod/settings.php:440 +msgid " Not valid email." +msgstr " Email non valida." + +#: ../../mod/settings.php:446 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: ../../mod/settings.php:501 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." + +#: ../../mod/settings.php:505 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." + +#: ../../mod/settings.php:535 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/settings.php:670 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Redirect" +msgstr "Redirect" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 +msgid "Icon url" +msgstr "Url icona" + +#: ../../mod/settings.php:626 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: ../../mod/settings.php:669 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: ../../mod/settings.php:673 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: ../../mod/settings.php:674 +msgid "No name" +msgstr "Nessun nome" + +#: ../../mod/settings.php:675 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: ../../mod/settings.php:687 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: ../../mod/settings.php:695 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Spento" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "Acceso" + +#: ../../mod/settings.php:717 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "enabled" +msgstr "abilitato" + +#: ../../mod/settings.php:731 ../../mod/settings.php:732 +msgid "disabled" +msgstr "disabilitato" + +#: ../../mod/settings.php:732 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:768 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: ../../mod/settings.php:780 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: ../../mod/settings.php:781 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" + +#: ../../mod/settings.php:782 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: ../../mod/settings.php:784 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: ../../mod/settings.php:785 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: ../../mod/settings.php:786 +msgid "Security:" +msgstr "Sicurezza:" + +#: ../../mod/settings.php:786 ../../mod/settings.php:791 +msgid "None" +msgstr "Nessuna" + +#: ../../mod/settings.php:787 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: ../../mod/settings.php:788 +msgid "Email password:" +msgstr "Password email:" + +#: ../../mod/settings.php:789 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: ../../mod/settings.php:790 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: ../../mod/settings.php:791 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: ../../mod/settings.php:791 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: ../../mod/settings.php:791 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: ../../mod/settings.php:792 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: ../../mod/settings.php:870 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: ../../mod/settings.php:876 ../../mod/settings.php:890 +msgid "Display Theme:" +msgstr "Tema:" + +#: ../../mod/settings.php:877 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: ../../mod/settings.php:878 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../mod/settings.php:878 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../mod/settings.php:879 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: ../../mod/settings.php:879 ../../mod/settings.php:880 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: ../../mod/settings.php:880 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" + +#: ../../mod/settings.php:881 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: ../../mod/settings.php:882 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: ../../mod/settings.php:883 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: ../../mod/settings.php:960 +msgid "User Types" +msgstr "Tipi di Utenti" + +#: ../../mod/settings.php:961 +msgid "Community Types" +msgstr "Tipi di Comunità" + +#: ../../mod/settings.php:962 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: ../../mod/settings.php:963 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: ../../mod/settings.php:966 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: ../../mod/settings.php:967 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" + +#: ../../mod/settings.php:970 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: ../../mod/settings.php:971 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" + +#: ../../mod/settings.php:974 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: ../../mod/settings.php:975 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: ../../mod/settings.php:978 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: ../../mod/settings.php:979 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: ../../mod/settings.php:991 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:991 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: ../../mod/settings.php:1001 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: ../../mod/settings.php:1007 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: ../../mod/settings.php:1015 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" + +#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: ../../mod/settings.php:1024 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: ../../mod/settings.php:1030 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: ../../mod/settings.php:1036 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" + +#: ../../mod/settings.php:1042 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: ../../mod/settings.php:1050 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: ../../mod/settings.php:1058 +msgid "Your Identity Address is" +msgstr "L'indirizzo della tua identità è" + +#: ../../mod/settings.php:1069 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: ../../mod/settings.php:1069 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: ../../mod/settings.php:1070 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: ../../mod/settings.php:1071 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: ../../mod/settings.php:1072 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: ../../mod/settings.php:1073 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: ../../mod/settings.php:1074 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: ../../mod/settings.php:1075 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: ../../mod/settings.php:1076 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: ../../mod/settings.php:1102 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: ../../mod/settings.php:1110 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: ../../mod/settings.php:1111 +msgid "New Password:" +msgstr "Nuova password:" + +#: ../../mod/settings.php:1112 +msgid "Confirm:" +msgstr "Conferma:" + +#: ../../mod/settings.php:1112 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: ../../mod/settings.php:1113 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: ../../mod/settings.php:1114 +msgid "Password:" +msgstr "Password:" + +#: ../../mod/settings.php:1118 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../mod/settings.php:1120 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: ../../mod/settings.php:1121 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../mod/settings.php:1122 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../mod/settings.php:1123 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../mod/settings.php:1126 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../mod/settings.php:1128 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: ../../mod/settings.php:1129 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: ../../mod/settings.php:1130 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 +#: ../../mod/photos.php:1515 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 +#: ../../mod/photos.php:1516 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: ../../mod/settings.php:1141 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: ../../mod/settings.php:1142 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: ../../mod/settings.php:1146 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: ../../mod/settings.php:1158 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: ../../mod/settings.php:1161 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: ../../mod/settings.php:1162 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: ../../mod/settings.php:1163 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: ../../mod/settings.php:1164 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: ../../mod/settings.php:1165 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: ../../mod/settings.php:1166 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: ../../mod/settings.php:1167 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: ../../mod/settings.php:1168 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: ../../mod/settings.php:1169 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: ../../mod/settings.php:1170 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: ../../mod/settings.php:1171 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../mod/settings.php:1172 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: ../../mod/settings.php:1173 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: ../../mod/settings.php:1174 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: ../../mod/settings.php:1177 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: ../../mod/settings.php:1178 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: ../../mod/settings.php:1181 +msgid "Relocate" +msgstr "Trasloca" + +#: ../../mod/settings.php:1182 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." + +#: ../../mod/settings.php:1183 +msgid "Resend relocate message to contacts" +msgstr "Reinvia il messaggio di trasloco" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: ../../mod/profiles.php:321 +msgid "Marital Status" +msgstr "Stato civile" + +#: ../../mod/profiles.php:325 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: ../../mod/profiles.php:329 +msgid "Likes" +msgstr "Mi piace" + +#: ../../mod/profiles.php:333 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../mod/profiles.php:337 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: ../../mod/profiles.php:340 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:344 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: ../../mod/profiles.php:348 +msgid "Gender" +msgstr "Sesso" + +#: ../../mod/profiles.php:352 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: ../../mod/profiles.php:356 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:360 +msgid "Interests" +msgstr "Interessi" + +#: ../../mod/profiles.php:364 +msgid "Address" +msgstr "Indirizzo" + +#: ../../mod/profiles.php:371 +msgid "Location" +msgstr "Posizione" + +#: ../../mod/profiles.php:454 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:525 +msgid " and " +msgstr "e " + +#: ../../mod/profiles.php:533 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../mod/profiles.php:537 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: ../../mod/profiles.php:540 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" + +#: ../../mod/profiles.php:613 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: ../../mod/profiles.php:633 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../mod/profiles.php:635 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:636 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../mod/profiles.php:640 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: ../../mod/profiles.php:641 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: ../../mod/profiles.php:642 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: ../../mod/profiles.php:643 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: ../../mod/profiles.php:644 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" + +#: ../../mod/profiles.php:645 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: ../../mod/profiles.php:646 +msgid "Locality/City:" +msgstr "Località:" + +#: ../../mod/profiles.php:647 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: ../../mod/profiles.php:648 +msgid "Country:" +msgstr "Nazione:" + +#: ../../mod/profiles.php:649 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: ../../mod/profiles.php:650 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: ../../mod/profiles.php:651 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:652 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:653 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../mod/profiles.php:655 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Paese natale:" + +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../mod/profiles.php:658 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: ../../mod/profiles.php:659 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: ../../mod/profiles.php:660 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../mod/profiles.php:663 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: ../../mod/profiles.php:664 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: ../../mod/profiles.php:665 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: ../../mod/profiles.php:666 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:667 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:668 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: ../../mod/profiles.php:669 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:670 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:671 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:672 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:673 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:674 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:675 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:680 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." + +#: ../../mod/profiles.php:729 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membri" + +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: ../../mod/notify.php:61 ../../mod/notifications.php:332 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: ../../mod/notify.php:65 ../../mod/notifications.php:336 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../mod/message.php:9 ../../include/nav.php:161 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: ../../mod/message.php:182 ../../mod/notifications.php:103 +#: ../../include/nav.php:158 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/like.php:169 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + #: ../../mod/oexchange.php:25 msgid "Post successful." msgstr "Inviato!" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:133 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../mod/openid.php:53 +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" + +#: ../../mod/localtime.php:26 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1004 +#: ../../include/conversation.php:1022 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Nessun contatto." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Cerca persone" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: ../../mod/photos.php:660 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" + +#: ../../mod/photos.php:660 +msgid "a photo" +msgstr "una foto" + +#: ../../mod/photos.php:765 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di" + +#: ../../mod/photos.php:773 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../mod/photos.php:805 ../../mod/wall_upload.php:112 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: ../../mod/photos.php:928 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:1029 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: ../../mod/photos.php:1092 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." + +#: ../../mod/photos.php:1127 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: ../../mod/photos.php:1132 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: ../../mod/photos.php:1133 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 +msgid "Permissions" +msgstr "Permessi" + +#: ../../mod/photos.php:1146 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1147 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1214 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:1220 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: ../../mod/photos.php:1222 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 +msgid "View Photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1290 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: ../../mod/photos.php:1292 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:1348 +msgid "View photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1348 +msgid "Edit photo" +msgstr "Modifica foto" + +#: ../../mod/photos.php:1349 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:1374 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: ../../mod/photos.php:1453 +msgid "Tags: " +msgstr "Tag: " + +#: ../../mod/photos.php:1456 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: ../../mod/photos.php:1496 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: ../../mod/photos.php:1497 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: ../../mod/photos.php:1499 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: ../../mod/photos.php:1502 +msgid "Caption" +msgstr "Titolo" + +#: ../../mod/photos.php:1504 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../mod/photos.php:1508 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1517 +msgid "Private photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1518 +msgid "Public photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 +msgid "Share" +msgstr "Condividi" + +#: ../../mod/photos.php:1804 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: ../../mod/photos.php:1813 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: ../../mod/videos.php:301 ../../include/text.php:1400 +msgid "View Video" +msgstr "Guarda Video" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" + +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" + +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amici in comune" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:455 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Foto della bacheca" #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -6726,396 +5102,2302 @@ msgstr "Finito" msgid "Image uploaded successfully." msgstr "Immagine caricata con successo." -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" -#: ../../mod/content.php:626 ../../object/Item.php:362 +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "è interessato a:" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: ../../mod/events.php:335 ../../include/text.php:1633 +#: ../../include/text.php:1644 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "ora:minuti" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: ../../mod/events.php:457 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." -#: ../../mod/content.php:707 ../../object/Item.php:232 -msgid "like" -msgstr "mi piace" +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "L'evento inizia:" -#: ../../mod/content.php:708 ../../object/Item.php:233 -msgid "dislike" -msgstr "non mi piace" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Richiesto" -#: ../../mod/content.php:710 ../../object/Item.php:235 -msgid "Share this" -msgstr "Condividi questo" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" -#: ../../mod/content.php:710 ../../object/Item.php:235 -msgid "share" -msgstr "condividi" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "L'evento finisce:" -#: ../../mod/content.php:734 ../../object/Item.php:654 -msgid "Bold" -msgstr "Grassetto" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" -#: ../../mod/content.php:735 ../../object/Item.php:655 -msgid "Italic" -msgstr "Corsivo" +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descrizione:" -#: ../../mod/content.php:736 ../../object/Item.php:656 -msgid "Underline" -msgstr "Sottolineato" +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titolo:" -#: ../../mod/content.php:737 ../../object/Item.php:657 -msgid "Quote" -msgstr "Citazione" +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../mod/content.php:738 ../../object/Item.php:658 -msgid "Code" -msgstr "Codice" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." -#: ../../mod/content.php:739 ../../object/Item.php:659 -msgid "Image" -msgstr "Immagine" +#: ../../mod/delegate.php:124 ../../include/nav.php:167 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" -#: ../../mod/content.php:740 ../../object/Item.php:660 -msgid "Link" -msgstr "Link" +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: ../../mod/content.php:741 ../../object/Item.php:661 -msgid "Video" -msgstr "Video" +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" -#: ../../mod/content.php:776 ../../object/Item.php:211 -msgid "add star" -msgstr "aggiungi a speciali" +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" -#: ../../mod/content.php:777 ../../object/Item.php:212 -msgid "remove star" -msgstr "rimuovi da speciali" +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" -#: ../../mod/content.php:778 ../../object/Item.php:213 -msgid "toggle star status" -msgstr "Inverti stato preferito" +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "Aggiungi" -#: ../../mod/content.php:781 ../../object/Item.php:216 -msgid "starred" -msgstr "preferito" +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "Nessun articolo." -#: ../../mod/content.php:782 ../../object/Item.php:221 -msgid "add tag" -msgstr "aggiungi tag" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" -#: ../../mod/content.php:786 ../../object/Item.php:130 -msgid "save to folder" -msgstr "salva nella cartella" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "File" -#: ../../mod/content.php:877 ../../object/Item.php:308 -msgid "to" -msgstr "a" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" -#: ../../mod/content.php:878 ../../object/Item.php:310 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" -#: ../../mod/content.php:879 ../../object/Item.php:311 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: ../../object/Item.php:92 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../object/Item.php:309 -msgid "via" -msgstr "via" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:154 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -msgid "Theme settings" -msgstr "Impostazioni tema" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:155 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:609 -msgid "Set twitter search term" -msgstr "Imposta il termine di ricerca per twitter" - -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:578 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:579 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:94 -#: ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:632 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: ../../view/theme/diabook/config.php:167 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: ../../view/theme/diabook/config.php:168 -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -msgid "Find Friends" -msgstr "Trova Amici" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "Ultimi tweets" - -#: ../../view/theme/diabook/config.php:170 -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -msgid "Last users" -msgstr "Ultimi utenti" - -#: ../../view/theme/diabook/config.php:171 -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -msgid "Last photos" -msgstr "Ultime foto" - -#: ../../view/theme/diabook/config.php:172 -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "Ultimi Tweets" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: ../../index.php:405 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: ../../boot.php:673 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" - -#: ../../boot.php:676 -msgid "show fewer" -msgstr "mostra di meno" - -#: ../../boot.php:1003 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Update %s failed. See error logs." -msgstr "aggiornamento %s fallito. Guarda i log di errore." +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../boot.php:1005 +#: ../../mod/item.php:110 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../mod/item.php:319 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: ../../mod/item.php:891 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: ../../mod/item.php:917 #, php-format -msgid "Update Error at %s" -msgstr "Errore aggiornamento a %s" +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: ../../boot.php:1115 -msgid "Create a New Account" -msgstr "Crea un nuovo account" +#: ../../mod/item.php:919 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" -#: ../../boot.php:1143 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " +#: ../../mod/item.php:920 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." -#: ../../boot.php:1144 -msgid "Password: " -msgstr "Password: " +#: ../../mod/item.php:924 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: ../../boot.php:1145 -msgid "Remember me" -msgstr "Ricordati di me" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: ../../boot.php:1148 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: ../../boot.php:1154 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: ../../boot.php:1157 -msgid "Website Terms of Service" -msgstr "Condizioni di servizio del sito web " +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" -#: ../../boot.php:1158 -msgid "terms of service" -msgstr "condizioni del servizio" +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" -#: ../../boot.php:1160 -msgid "Website Privacy Policy" -msgstr "Politiche di privacy del sito" +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" -#: ../../boot.php:1161 -msgid "privacy policy" -msgstr "politiche di privacy" +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" -#: ../../boot.php:1290 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" -#: ../../boot.php:1369 ../../boot.php:1473 -msgid "Edit profile" -msgstr "Modifica il profilo" +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" -#: ../../boot.php:1435 -msgid "Message" -msgstr "Messaggio" +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} ti ha citato in un post" -#: ../../boot.php:1443 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." -#: ../../boot.php:1572 ../../boot.php:1658 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." -#: ../../boot.php:1573 ../../boot.php:1659 -msgid "F d" -msgstr "d F" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../boot.php:1618 ../../boot.php:1699 -msgid "[today]" -msgstr "[oggi]" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../boot.php:1630 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Scarta" -#: ../../boot.php:1631 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Sistema" -#: ../../boot.php:1692 -msgid "[No description]" -msgstr "[Nessuna descrizione]" +#: ../../mod/notifications.php:83 ../../include/nav.php:142 +msgid "Network" +msgstr "Rete" -#: ../../boot.php:1710 -msgid "Event Reminders" -msgstr "Promemoria" +#: ../../mod/notifications.php:98 ../../include/nav.php:151 +msgid "Introductions" +msgstr "Presentazioni" -#: ../../boot.php:1711 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" -#: ../../boot.php:1947 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" -#: ../../boot.php:1954 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tipo di notifica: " -#: ../../boot.php:1965 ../../boot.php:1968 -msgid "Videos" -msgstr "Video" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Amico suggerito" -#: ../../boot.php:1978 -msgid "Events and Calendar" -msgstr "Eventi e calendario" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" -#: ../../boot.php:1985 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "se applicabile" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "si" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "no" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Approva come: " + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Amico" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Condivisore" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: ../../mod/notifications.php:220 ../../include/nav.php:152 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Trova persone" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profilo causale" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Reti" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: ../../include/contact_widgets.php:103 ../../include/features.php:60 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "Utente non trovato." + +#: ../../include/api.php:1123 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." + +#: ../../include/api.php:1193 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" + +#: ../../include/network.php:886 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Inizia:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Finisce:" + +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/notifier.php:774 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: ../../include/notifier.php:784 ../../include/enotify.php:28 +#: ../../include/delivery.php:467 +msgid "noreply" +msgstr "nessuna risposta" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: ../../include/user.php:288 ../../include/user.php:292 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amici" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: ../../include/conversation.php:211 ../../include/text.php:1003 +msgid "poked" +msgstr "toccato" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "post/elemento" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: ../../include/conversation.php:770 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:774 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: ../../include/conversation.php:873 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:874 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Visualizza stato" + +#: ../../include/conversation.php:875 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: ../../include/conversation.php:876 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Visualizza foto" + +#: ../../include/conversation.php:877 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Post della Rete" + +#: ../../include/conversation.php:878 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: ../../include/conversation.php:879 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../include/conversation.php:880 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Stuzzica" + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:942 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: ../../include/conversation.php:950 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: ../../include/conversation.php:964 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:970 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:972 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1006 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: ../../include/conversation.php:1049 +msgid "Post to Email" +msgstr "Invia a email" + +#: ../../include/conversation.php:1054 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: ../../include/conversation.php:1109 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1133 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: ../../include/conversation.php:1134 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: ../../include/conversation.php:1135 +msgid "Private post" +msgstr "Post privato" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "nuovi" + +#: ../../include/text.php:298 +msgid "older" +msgstr "vecchi" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:305 +msgid "first" +msgstr "primo" + +#: ../../include/text.php:337 +msgid "last" +msgstr "ultimo" + +#: ../../include/text.php:340 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:853 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../include/text.php:862 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:1003 +msgid "poke" +msgstr "stuzzica" + +#: ../../include/text.php:1004 +msgid "ping" +msgstr "invia un ping" + +#: ../../include/text.php:1004 +msgid "pinged" +msgstr "inviato un ping" + +#: ../../include/text.php:1005 +msgid "prod" +msgstr "pungola" + +#: ../../include/text.php:1005 +msgid "prodded" +msgstr "pungolato" + +#: ../../include/text.php:1006 +msgid "slap" +msgstr "schiaffeggia" + +#: ../../include/text.php:1006 +msgid "slapped" +msgstr "schiaffeggiato" + +#: ../../include/text.php:1007 +msgid "finger" +msgstr "tocca" + +#: ../../include/text.php:1007 +msgid "fingered" +msgstr "toccato" + +#: ../../include/text.php:1008 +msgid "rebuff" +msgstr "respingi" + +#: ../../include/text.php:1008 +msgid "rebuffed" +msgstr "respinto" + +#: ../../include/text.php:1022 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1023 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1024 +msgid "mellow" +msgstr "rilassato" + +#: ../../include/text.php:1025 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1026 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1027 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1028 +msgid "stupified" +msgstr "stupefatto" + +#: ../../include/text.php:1029 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:1030 +msgid "interested" +msgstr "interessato" + +#: ../../include/text.php:1031 +msgid "bitter" +msgstr "risentito" + +#: ../../include/text.php:1032 +msgid "cheerful" +msgstr "giocoso" + +#: ../../include/text.php:1033 +msgid "alive" +msgstr "vivo" + +#: ../../include/text.php:1034 +msgid "annoyed" +msgstr "annoiato" + +#: ../../include/text.php:1035 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:1036 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:1037 +msgid "disturbed" +msgstr "disturbato" + +#: ../../include/text.php:1038 +msgid "frustrated" +msgstr "frustato" + +#: ../../include/text.php:1039 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:1040 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:1041 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1209 +msgid "Monday" +msgstr "Lunedì" + +#: ../../include/text.php:1209 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../include/text.php:1209 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../include/text.php:1209 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../include/text.php:1209 +msgid "Friday" +msgstr "Venerdì" + +#: ../../include/text.php:1209 +msgid "Saturday" +msgstr "Sabato" + +#: ../../include/text.php:1209 +msgid "Sunday" +msgstr "Domenica" + +#: ../../include/text.php:1213 +msgid "January" +msgstr "Gennaio" + +#: ../../include/text.php:1213 +msgid "February" +msgstr "Febbraio" + +#: ../../include/text.php:1213 +msgid "March" +msgstr "Marzo" + +#: ../../include/text.php:1213 +msgid "April" +msgstr "Aprile" + +#: ../../include/text.php:1213 +msgid "May" +msgstr "Maggio" + +#: ../../include/text.php:1213 +msgid "June" +msgstr "Giugno" + +#: ../../include/text.php:1213 +msgid "July" +msgstr "Luglio" + +#: ../../include/text.php:1213 +msgid "August" +msgstr "Agosto" + +#: ../../include/text.php:1213 +msgid "September" +msgstr "Settembre" + +#: ../../include/text.php:1213 +msgid "October" +msgstr "Ottobre" + +#: ../../include/text.php:1213 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1213 +msgid "December" +msgstr "Dicembre" + +#: ../../include/text.php:1432 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1456 ../../include/text.php:1468 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1701 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" + +#: ../../include/text.php:1957 +msgid "activity" +msgstr "attività" + +#: ../../include/text.php:1960 +msgid "post" +msgstr "messaggio" + +#: ../../include/text.php:2128 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notifica Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Grazie," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: ../../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:Notifica] Nuovo messaggio privato ricevuto su %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un messaggio privato" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." + +#: ../../include/enotify.php:91 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" + +#: ../../include/enotify.php:98 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" + +#: ../../include/enotify.php:106 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" + +#: ../../include/enotify.php:116 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" + +#: ../../include/enotify.php:117 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha commentato un elemento che stavi seguendo." + +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per vedere e/o commentare la conversazione" + +#: ../../include/enotify.php:127 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha scritto sulla tua bacheca su %2$s" + +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" + +#: ../../include/enotify.php:142 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]ti ha taggato[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." + +#: ../../include/enotify.php:169 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" + +#: ../../include/enotify.php:170 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" + +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha taggato il tuo post su %2$s" + +#: ../../include/enotify.php:188 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" + +#: ../../include/enotify.php:201 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." + +#: ../../include/enotify.php:204 ../../include/enotify.php:222 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo presso %s" + +#: ../../include/enotify.php:206 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s per approvare o rifiutare la presentazione." + +#: ../../include/enotify.php:213 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" + +#: ../../include/enotify.php:214 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" + +#: ../../include/enotify.php:215 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" + +#: ../../include/enotify.php:220 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:221 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:224 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." + +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: ../../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 gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "segue" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Entra" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Home Page" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Applicazioni" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Elenco" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Elenco delle persone" + +#: ../../include/nav.php:132 +msgid "Information" +msgstr "Informazioni" + +#: ../../include/nav.php:132 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: ../../include/nav.php:142 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: ../../include/nav.php:143 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: ../../include/nav.php:143 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: ../../include/nav.php:151 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: ../../include/nav.php:153 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:154 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: ../../include/nav.php:158 +msgid "Private mail" +msgstr "Posta privata" + +#: ../../include/nav.php:159 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/nav.php:160 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/nav.php:164 +msgid "Manage" +msgstr "Gestisci" + +#: ../../include/nav.php:164 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: ../../include/nav.php:169 +msgid "Account settings" +msgstr "Parametri account" + +#: ../../include/nav.php:171 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: ../../include/nav.php:173 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: ../../include/nav.php:180 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: ../../include/nav.php:184 +msgid "Navigation" +msgstr "Navigazione" + +#: ../../include/nav.php:184 +msgid "Site map" +msgstr "Mappa del sito" + +#: ../../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 "Compleanno:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Età:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/bbcode.php:287 ../../include/bbcode.php:921 +#: ../../include/bbcode.php:922 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: ../../include/bbcode.php:357 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: ../../include/bbcode.php:457 +msgid "" +msgstr "" + +#: ../../include/bbcode.php:885 ../../include/bbcode.php:905 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/bbcode.php:936 ../../include/bbcode.php:937 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "giorno" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: ../../include/datetime.php:472 ../../include/items.php:1981 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: ../../include/datetime.php:473 ../../include/items.php:1982 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor visuale" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Anteprima dei post" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Cerca per data" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtra gruppi" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtro reti" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostare i post solo per la rete selezionata" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Schede pagina Rete" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Scheda Personali" + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Scheda Nuovi" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Abilita la scheda per mostrare solo i post che contengono link" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Strumenti per mesasggi/commenti" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Aggiunta tag" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Cateorie post" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Post preferiti" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" + +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: ../../include/diaspora.php:2299 +msgid "Attachments:" +msgstr "Allegati:" + +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/items.php:3710 +msgid "A new person is sharing with you at " +msgstr "Una nuova persona sta condividendo con te da " + +#: ../../include/items.php:3710 +msgid "You have a new follower at " +msgstr "Una nuova persona ti segue su " + +#: ../../include/items.php:4233 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: ../../include/items.php:4460 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/oembed.php:174 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: ../../include/oembed.php:183 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Ciao" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Ciao " + +#: ../../include/security.php:366 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Nessuna preferenza" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitario" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "è cotto/a" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "infatuato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Disponibile a un incontro" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici con benefici" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "immaginariamente sposato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coinquilino" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "diritto comune" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non guarda" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "immaginariamente divorziato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E' complicato" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Non interessa" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Rimuovi contatto" diff --git a/view/it/passchanged_eml.tpl b/view/it/passchanged_eml.tpl deleted file mode 100644 index ab3f1aede0..0000000000 --- a/view/it/passchanged_eml.tpl +++ /dev/null @@ -1,20 +0,0 @@ - -Ciao $[username], - La tua password è cambiata come hai richiesto. Conserva queste -informazioni (oppure cambia immediatamente la password con -qualcosa che ti è più facile ricordare). - - -I tuoi dati di access sono i seguenti: - -Sito:»$[siteurl] -Nome utente:»$[email] -Password:»$[new_password] - -Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso. - - -Saluti, - l'amministratore di $[sitename] - - \ No newline at end of file diff --git a/view/it/register_verify_eml.tpl b/view/it/register_verify_eml.tpl deleted file mode 100644 index baac57976e..0000000000 --- a/view/it/register_verify_eml.tpl +++ /dev/null @@ -1,25 +0,0 @@ - -Su $[sitename] è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede -la tua approvazione. - - -I tuoi dati di accesso sono i seguenti: - -Nome completo:»$[username] -Sito:»$[siteurl] -Nome utente:»$[email] - - -Per approvare questa richiesta clicca su: - - -$[siteurl]/regmod/allow/$[hash] - - -Per negare la richiesta e rimuove il profilo, clicca su: - - -$[siteurl]/regmod/deny/$[hash] - - -Grazie. diff --git a/view/it/request_notify_eml.tpl b/view/it/request_notify_eml.tpl deleted file mode 100644 index 1360be90c7..0000000000 --- a/view/it/request_notify_eml.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -Ciao $[myname], - -Hai appena ricevuto una richiesta di connessione da $[sitename] - -da '$[requestor]'. - -Puoi visitare il suo profilo su $[url]. - -Accedi al tuo sito per vedere la richiesta completa -e approva o ignora/annulla la richiesta. - -$[siteurl] - -Saluti, - - l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/cmnt_received_eml.tpl b/view/it/smarty3/cmnt_received_eml.tpl deleted file mode 100644 index 479c566ded..0000000000 --- a/view/it/smarty3/cmnt_received_eml.tpl +++ /dev/null @@ -1,23 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -Caro/a {{$username}}, - - '{{$from}}' ha commentato un elemeto/conversazione che stai seguendo. - ------ -{{$body}} ------ - -Accedi a {{$siteurl}} per verdere la conversazione completa: - -{{$display}} - -Grazie, - L'amministratore di {{$sitename}} - - - diff --git a/view/it/smarty3/cmnt_received_html_body_eml.tpl b/view/it/smarty3/cmnt_received_html_body_eml.tpl deleted file mode 100644 index 356e3bc480..0000000000 --- a/view/it/smarty3/cmnt_received_html_body_eml.tpl +++ /dev/null @@ -1,30 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - Friendica Messaggio - - - - - - - - - - - - - - - - - - -
Friendica
{{$from}} ha commentato un elemeto/conversazione che stai seguendo.
{{$from}}
{{$body}}
Accedi a {{$siteurl}} per verdere la conversazione completa:.
Grazie,
L'amministratore di {{$sitename}}
- - \ No newline at end of file diff --git a/view/it/smarty3/cmnt_received_text_body_eml.tpl b/view/it/smarty3/cmnt_received_text_body_eml.tpl deleted file mode 100644 index 479c566ded..0000000000 --- a/view/it/smarty3/cmnt_received_text_body_eml.tpl +++ /dev/null @@ -1,23 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -Caro/a {{$username}}, - - '{{$from}}' ha commentato un elemeto/conversazione che stai seguendo. - ------ -{{$body}} ------ - -Accedi a {{$siteurl}} per verdere la conversazione completa: - -{{$display}} - -Grazie, - L'amministratore di {{$sitename}} - - - diff --git a/view/it/smarty3/follow_notify_eml.tpl b/view/it/smarty3/follow_notify_eml.tpl index 925d5b2d08..c85a0cdc94 100644 --- a/view/it/smarty3/follow_notify_eml.tpl +++ b/view/it/smarty3/follow_notify_eml.tpl @@ -1,19 +1,14 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$myname}}, +Ciao $[myname], -Un nuovo utente ha iniziato a seguirti su {{$sitename}} - '{{$requestor}}'. +Un nuovo utente ha iniziato a seguirti su $[sitename] - '$[requestor]'. -Puoi vedere il suo profilo su {{$url}}. +Puoi vedere il suo profilo su $[url]. Accedi sul tuo sito per approvare o ignorare la richiesta. -{{$siteurl}} +$[siteurl] Saluti, - L'amministratore di {{$sitename}} \ No newline at end of file + L'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/friend_complete_eml.tpl b/view/it/smarty3/friend_complete_eml.tpl index 667a1f445e..890b0148c3 100644 --- a/view/it/smarty3/friend_complete_eml.tpl +++ b/view/it/smarty3/friend_complete_eml.tpl @@ -1,27 +1,22 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$username}}, +Ciao $[username], - Ottime notizie... '{{$fn}}' di '{{$dfrn_url}}' ha accettato -la tua richiesta di connessione su '{{$sitename}}'. + Ottime notizie... '$[fn]' di '$[dfrn_url]' ha accettato +la tua richiesta di connessione su '$[sitename]'. Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email senza restrizioni. -Vai nella pagina 'Contatti' di {{$sitename}} se vuoi effettuare +Vai nella pagina 'Contatti' di $[sitename] se vuoi effettuare qualche modifica riguardo questa relazione -{{$siteurl}} +$[siteurl] [Ad esempio, potresti creare un profilo separato con le informazioni che non -sono disponibili pubblicamente - ed permettere di vederlo a '{{$fn}}']. +sono disponibili pubblicamente - ed permettere di vederlo a '$[fn]']. Saluti, - l'amministratore di {{$sitename}} + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/intro_complete_eml.tpl b/view/it/smarty3/intro_complete_eml.tpl index 5c831f0d3f..46fe7018b7 100644 --- a/view/it/smarty3/intro_complete_eml.tpl +++ b/view/it/smarty3/intro_complete_eml.tpl @@ -1,27 +1,22 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$username}}, +Ciao $[username], - '{{$fn}}' di '{{$dfrn_url}}' ha accettato -la tua richiesta di connessione a '{{$sitename}}'. + '$[fn]' di '$[dfrn_url]' ha accettato +la tua richiesta di connessione a '$[sitename]'. - '{{$fn}}' ha deciso di accettarti come "fan", il che restringe + '$[fn]' ha deciso di accettarti come "fan", il che restringe alcune forme di comunicazione - come i messaggi privati e alcune interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno applicate automaticamente. - '{{$fn}}' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva + '$[fn]' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva . - Inizierai a ricevere gli aggiornamenti di stato pubblici da '{{$fn}}', + Inizierai a ricevere gli aggiornamenti di stato pubblici da '$[fn]', che apparirà nella tua pagina 'Rete' -{{$siteurl}} +$[siteurl] Saluti, - l'amministratore di {{$sitename}} \ No newline at end of file + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/lostpass_eml.tpl b/view/it/smarty3/lostpass_eml.tpl index 04a6a0716e..b1fe75f941 100644 --- a/view/it/smarty3/lostpass_eml.tpl +++ b/view/it/smarty3/lostpass_eml.tpl @@ -1,11 +1,6 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$username}}, - Su {{$sitename}} è stata ricevuta una richiesta di azzeramento di password per un account. +Ciao $[username], + Su $[sitename] è stata ricevuta una richiesta di azzeramento della password del tuo account. Per confermare la richiesta, clicca sul link di verifica qui in fondo oppure copialo nella barra degli indirizzi del tuo browser. @@ -17,7 +12,7 @@ hai fatto questa richiesta. Per verificare la tua identità clicca su: -{{$reset_link}} +$[reset_link] Dopo la verifica riceverai un messaggio di risposta con la nuova password. @@ -25,13 +20,13 @@ Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato I dati di accesso sono i seguenti: -Sito:»{{$siteurl}} -Nome utente:»{{$email}} +Sito:»$[siteurl] +Nome utente:»$[email] Saluti, - l'amministratore di {{$sitename}} + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/mail_received_html_body_eml.tpl b/view/it/smarty3/mail_received_html_body_eml.tpl deleted file mode 100644 index 4dc87f8064..0000000000 --- a/view/it/smarty3/mail_received_html_body_eml.tpl +++ /dev/null @@ -1,30 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - Friendica Messsaggio - - - - - - - - - - - - - - - - - - -
Friendica
Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'.
{{$from}}
{{$title}}
{{$htmlversion}}
Accedi a {{$siteurl}} per leggere e rispondere ai tuoi messaggi privati.
Grazie,
L'amministratore di {{$siteName}}
- - diff --git a/view/it/smarty3/mail_received_text_body_eml.tpl b/view/it/smarty3/mail_received_text_body_eml.tpl deleted file mode 100644 index 3cb7b82d48..0000000000 --- a/view/it/smarty3/mail_received_text_body_eml.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'. - -{{$title}} - -{{$textversion}} - -Accedi a {{$siteurl}} per leggere e rispondere ai tuoi messaggi privati. - -Grazie, -L'amministratore di {{$siteName}} diff --git a/view/it/smarty3/passchanged_eml.tpl b/view/it/smarty3/passchanged_eml.tpl index 32970c9cb5..15e05df1cb 100644 --- a/view/it/smarty3/passchanged_eml.tpl +++ b/view/it/smarty3/passchanged_eml.tpl @@ -1,25 +1,20 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$username}}, - La tua password è cambiata come hai richiesto. Conserva queste +Ciao $[username], + La tua password è stata cambiata, come hai richiesto. Conserva queste informazioni (oppure cambia immediatamente la password con qualcosa che ti è più facile ricordare). -I tuoi dati di access sono i seguenti: +I tuoi dati di accesso sono i seguenti: -Sito:»{{$siteurl}} -Nome utente:»{{$email}} -Password:»{{$new_password}} +Sito:»$[siteurl] +Soprannome:»$[email] +Password:»$[new_password] Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso. Saluti, - l'amministratore di {{$sitename}} + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/register_open_eml.tpl b/view/it/smarty3/register_adminadd_eml.tpl similarity index 74% rename from view/it/register_open_eml.tpl rename to view/it/smarty3/register_adminadd_eml.tpl index 11a7752bc3..4cb17d294e 100644 --- a/view/it/register_open_eml.tpl +++ b/view/it/smarty3/register_adminadd_eml.tpl @@ -1,20 +1,20 @@ - Ciao $[username], - Grazie per aver effettuato la registrazione a $[sitename]. Il tuo account è stato creato. + l'amministratore di {{$sitename}} ha creato un account per te. + I dettagli di accesso sono i seguenti Sito:»$[siteurl] -Nome utente:»$[email] +Soprannome:»$[email] Password:»$[password] Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso -. + Prenditi un momento per dare un'occhiata alle altre impostazioni del tuo profilo nella stessa pagina. Potrest voler aggiungere alcune informazioni di base a quelle predefinite del profilo -(nella pagina "Profilo") per rendere agli altri più facile trovarti. +(nella pagina "Profilo") per rendere più facile trovarti alle altre persone. Noi raccomandiamo di impostare il tuo nome completo, di aggiungere una foto, di aggiungere alcune "parole chiavi" (molto utili per farsi nuovi amici) - e @@ -22,13 +22,11 @@ magari il paese dove vivi; se non vuoi essere più dettagliato di così. Noi rispettiamo il tuo diritto alla privacy e nessuna di queste informazioni è indispensabile. -Se ancora non conosci nessuno qui, potrebbe esserti di aiuto +Se non ancora non conosci nessuno qui, posso essere d'aiuto per farti nuovi e interessanti amici. Grazie. Siamo contenti di darti il benvenuto su $[sitename] Saluti, - l'amministratore di $[sitename] - - \ No newline at end of file + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/register_open_eml.tpl b/view/it/smarty3/register_open_eml.tpl index e5f909af57..11a7752bc3 100644 --- a/view/it/smarty3/register_open_eml.tpl +++ b/view/it/smarty3/register_open_eml.tpl @@ -1,17 +1,12 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$username}}, - Grazie per aver effettuato la registrazione a {{$sitename}}. Il tuo account è stato creato. +Ciao $[username], + Grazie per aver effettuato la registrazione a $[sitename]. Il tuo account è stato creato. I dettagli di accesso sono i seguenti -Sito:»{{$siteurl}} -Nome utente:»{{$email}} -Password:»{{$password}} +Sito:»$[siteurl] +Nome utente:»$[email] +Password:»$[password] Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso . @@ -31,9 +26,9 @@ Se ancora non conosci nessuno qui, potrebbe esserti di aiuto per farti nuovi e interessanti amici. -Grazie. Siamo contenti di darti il benvenuto su {{$sitename}} +Grazie. Siamo contenti di darti il benvenuto su $[sitename] Saluti, - l'amministratore di {{$sitename}} + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/register_verify_eml.tpl b/view/it/smarty3/register_verify_eml.tpl index 9ce1f8f005..fa039baddc 100644 --- a/view/it/smarty3/register_verify_eml.tpl +++ b/view/it/smarty3/register_verify_eml.tpl @@ -1,30 +1,25 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Su {{$sitename}} è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede +Su $[sitename] è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede la tua approvazione. -I tuoi dati di accesso sono i seguenti: +I dati di accesso sono i seguenti: -Nome completo:»{{$username}} -Sito:»{{$siteurl}} -Nome utente:»{{$email}} +Nome completo:»$[username] +Sito:»$[siteurl] +Nome utente:»$[email] Per approvare questa richiesta clicca su: -{{$siteurl}}/regmod/allow/{{$hash}} +$[siteurl]/regmod/allow/$[hash] -Per negare la richiesta e rimuove il profilo, clicca su: +Per negare la richiesta e rimuovere il profilo, clicca su: -{{$siteurl}}/regmod/deny/{{$hash}} +$[siteurl]/regmod/deny/$[hash] Grazie. diff --git a/view/it/smarty3/request_notify_eml.tpl b/view/it/smarty3/request_notify_eml.tpl index 47240c5a36..2700e49fdd 100644 --- a/view/it/smarty3/request_notify_eml.tpl +++ b/view/it/smarty3/request_notify_eml.tpl @@ -1,22 +1,17 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -Ciao {{$myname}}, +Ciao $[myname], -Hai appena ricevuto una richiesta di connessione da {{$sitename}} +Hai appena ricevuto una richiesta di connessione su $[sitename] -da '{{$requestor}}'. +da '$[requestor]'. -Puoi visitare il suo profilo su {{$url}}. +Puoi visitare il suo profilo su $[url]. Accedi al tuo sito per vedere la richiesta completa e approva o ignora/annulla la richiesta. -{{$siteurl}} +$[siteurl] Saluti, - l'amministratore di {{$sitename}} \ No newline at end of file + l'amministratore di $[sitename] \ No newline at end of file diff --git a/view/it/smarty3/update_fail_eml.tpl b/view/it/smarty3/update_fail_eml.tpl new file mode 100644 index 0000000000..96813a7bc2 --- /dev/null +++ b/view/it/smarty3/update_fail_eml.tpl @@ -0,0 +1,11 @@ +Ehi, +Sono $sitename; +Gli sviluppatori di Friendica hanno appena rilasciato la nuova versione $update, +ma appena ho provato ad installarla qualcosa è andato tremendamente storto. +Le cose vanno messe a posto al più presto e non riesco a farlo da solo. Contatta uno +sviluppatore di friendica se non riesci ad aiutarmi da solo. Il mio database potrebbe non essere più a posto. + +Il messaggio di errore è: '$error'. + +Mi dispiace, +il tuo server friendica su $siteurl \ No newline at end of file diff --git a/view/it/smarty3/wall_received_eml.tpl b/view/it/smarty3/wall_received_eml.tpl deleted file mode 100644 index 30b53d11ef..0000000000 --- a/view/it/smarty3/wall_received_eml.tpl +++ /dev/null @@ -1,23 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -Caro/a {{$username}}, - - '{{$from}}' ha scritto qualcosa sulla bachecha del tuo profilo. - ------ -{{$body}} ------ - -Accedi a {{$siteurl}} per vedere o cancellare l'elemento: - -{{$display}} - -Grazie, - L'amministratore di {{$sitename}} - - - diff --git a/view/it/smarty3/wall_received_html_body_eml.tpl b/view/it/smarty3/wall_received_html_body_eml.tpl deleted file mode 100644 index 8096fed226..0000000000 --- a/view/it/smarty3/wall_received_html_body_eml.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - Messaggio da Friendica - - - - - - - - - - - - - - - - - -
Friendica
{{$from}} ha scritto sulla tua bacheca.
{{$from}}
{{$body}}
Vai su {{$siteurl}} per vedere o cancellare il post.
Grazie,
L'amministratore di {{$sitename}}
- - \ No newline at end of file diff --git a/view/it/smarty3/wall_received_text_body_eml.tpl b/view/it/smarty3/wall_received_text_body_eml.tpl deleted file mode 100644 index 2031744a64..0000000000 --- a/view/it/smarty3/wall_received_text_body_eml.tpl +++ /dev/null @@ -1,23 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -Caro {{$username}}, - - '{{$from}}' ha scritto sulla tua bacheca. - ------ -{{$body}} ------ - -Vai su {{$siteurl}} per vedere o cancellare il post: - -{{$display}} - -Grazie, - L'amministratore di {{$sitename}} - - - diff --git a/view/it/strings.php b/view/it/strings.php index 62eb02d33e..3c7de5a8b4 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,469 +5,62 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Profile"] = "Profilo"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Gender:"] = "Genere:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Hometown:"] = "Paese natale:"; -$a->strings["Tags:"] = "Tag:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Likes:"] = "Mi piace:"; -$a->strings["Dislikes:"] = "Non mi piace:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "è cotto/a"; -$a->strings["Infatuated"] = "infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends"] = "Amici"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = "diritto comune"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non guarda"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = "E' complicato"; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente post"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["default"] = "default"; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Ogni ora"; -$a->strings["Twice daily"] = "Due volte al dì"; -$a->strings["Daily"] = "Giornalmente"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Email"] = "Email"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["Connect"] = "Connetti"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Select"] = "Seleziona"; +$a->strings["Delete"] = "Rimuovi"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["Comment"] = "Commento"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", ); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Find"] = "Trova"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["show more"] = "mostra di più"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["year"] = "anno"; -$a->strings["month"] = "mese"; -$a->strings["day"] = "giorno"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["years"] = "anni"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da "; -$a->strings["You have a new follower at "] = "Una nuova persona ti segue su "; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Yes"] = "Si"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Archives"] = "Archivi"; -$a->strings["General Features"] = "Funzionalità generali"; -$a->strings["Multiple Profiles"] = "Profili multipli"; -$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; -$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; -$a->strings["Richtext Editor"] = "Editor visuale"; -$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; -$a->strings["Post Preview"] = "Anteprima dei post"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; -$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; -$a->strings["Search by Date"] = "Cerca per data"; -$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; -$a->strings["Group Filter"] = "Filtra gruppi"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; -$a->strings["Network Filter"] = "Filtro reti"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; -$a->strings["Network Tabs"] = "Schede pagina Rete"; -$a->strings["Network Personal Tab"] = "Scheda Personali"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; -$a->strings["Network New Tab"] = "Scheda Nuovi"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; -$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; -$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti"; -$a->strings["Multiple Deletion"] = "Eliminazione multipla"; -$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; -$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; -$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; -$a->strings["Tagging"] = "Aggiunta tag"; -$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; -$a->strings["Post Categories"] = "Cateorie post"; -$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; -$a->strings["Dislike Posts"] = "Non mi piace"; -$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; -$a->strings["Star Posts"] = "Post preferiti"; -$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["newer"] = "nuovi"; -$a->strings["older"] = "vecchi"; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; -$a->strings["next"] = "succ"; -$a->strings["No contacts"] = "Nessun contatto"; -$a->strings["%d Contact"] = array( - 0 => "%d contatto", - 1 => "%d contatti", -); -$a->strings["View Contacts"] = "Visualizza i contatti"; -$a->strings["Search"] = "Cerca"; -$a->strings["Save"] = "Salva"; -$a->strings["poke"] = "stuzzica"; -$a->strings["poked"] = "toccato"; -$a->strings["ping"] = "invia un ping"; -$a->strings["pinged"] = "inviato un ping"; -$a->strings["prod"] = "pungola"; -$a->strings["prodded"] = "pungolato"; -$a->strings["slap"] = "schiaffeggia"; -$a->strings["slapped"] = "schiaffeggiato"; -$a->strings["finger"] = "tocca"; -$a->strings["fingered"] = "toccato"; -$a->strings["rebuff"] = "respingi"; -$a->strings["rebuffed"] = "respinto"; -$a->strings["happy"] = "felice"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "rilassato"; -$a->strings["tired"] = "stanco"; -$a->strings["perky"] = "vivace"; -$a->strings["angry"] = "arrabbiato"; -$a->strings["stupified"] = "stupefatto"; -$a->strings["puzzled"] = "confuso"; -$a->strings["interested"] = "interessato"; -$a->strings["bitter"] = "risentito"; -$a->strings["cheerful"] = "giocoso"; -$a->strings["alive"] = "vivo"; -$a->strings["annoyed"] = "annoiato"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritabile"; -$a->strings["disturbed"] = "disturbato"; -$a->strings["frustrated"] = "frustato"; -$a->strings["motivated"] = "motivato"; -$a->strings["relaxed"] = "rilassato"; -$a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; -$a->strings["View Video"] = "Guarda Video"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["event"] = "l'evento"; -$a->strings["activity"] = "attività"; $a->strings["comment"] = array( 0 => "", 1 => "commento", ); -$a->strings["post"] = "messaggio"; -$a->strings["Item filed"] = "Messaggio salvato"; -$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 gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["add"] = "aggiungi"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Share"] = "Condividi"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["permissions"] = "permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["show more"] = "mostra di più"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Submit"] = "Invia"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; $a->strings["Preview"] = "Anteprima"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["Friendica Notification"] = "Notifica Friendica"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Status"] = "Stato"; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Home"] = "Home"; $a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Profile"] = "Profilo"; $a->strings["Your profile page"] = "Pagina del tuo profilo"; $a->strings["Photos"] = "Foto"; $a->strings["Your photos"] = "Le tue foto"; @@ -475,361 +68,125 @@ $a->strings["Events"] = "Eventi"; $a->strings["Your events"] = "I tuoi eventi"; $a->strings["Personal notes"] = "Note personali"; $a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Login"] = "Accedi"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home"] = "Home"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Register"] = "Registrati"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help"] = "Guida"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; $a->strings["Community"] = "Comunità"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Network"] = "Rete"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Introductions"] = "Presentazioni"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Delegations"] = "Delegazioni"; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["show"] = "mostra"; +$a->strings["Theme settings"] = "Impostazioni tema"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; $a->strings["Contacts"] = "Contatti"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; -$a->strings["Embedded content"] = "Contenuto incorporato"; -$a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile deleted."] = "Profilo elminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato civile"; -$a->strings["Romantic Partner"] = "Partner romantico"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; -$a->strings["Work/Employment"] = "Lavoro/Impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento Politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenza sessuale"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Location"] = "Posizione"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings[" and "] = "e "; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["No"] = "No"; -$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["Submit"] = "Invia"; -$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; -$a->strings["View this profile"] = "Visualizza questo profilo"; -$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -$a->strings["Clone this profile"] = "Clona questo profilo"; -$a->strings["Delete this profile"] = "Elimina questo profilo"; -$a->strings["Profile Name:"] = "Nome del profilo:"; -$a->strings["Your Full Name:"] = "Il tuo nome completo:"; -$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; -$a->strings["Your Gender:"] = "Il tuo sesso:"; -$a->strings["Birthday (%s):"] = "Compleanno (%s)"; -$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; -$a->strings["Locality/City:"] = "Località:"; -$a->strings["Postal/Zip Code:"] = "CAP:"; -$a->strings["Country:"] = "Nazione:"; -$a->strings["Region/State:"] = "Regione/Stato:"; -$a->strings[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Dal [data]:"; -$a->strings["Homepage URL:"] = "Homepage:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; -$a->strings["Private Keywords:"] = "Parole chiave private:"; -$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; -$a->strings["Musical interests"] = "Interessi musicali"; -$a->strings["Books, literature"] = "Libri, letteratura"; -$a->strings["Television"] = "Televisione"; -$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; -$a->strings["Love/romance"] = "Amore"; -$a->strings["Work/employment"] = "Lavoro/impiego"; -$a->strings["School/education"] = "Scuola/educazione"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; -$a->strings["Age: "] = "Età : "; -$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["event"] = "l'evento"; +$a->strings["status"] = "stato"; +$a->strings["photo"] = "foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["default"] = "default"; +$a->strings["Background Image"] = "Immagine di sfondo"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "L'indirizzo di un'immagine (p.e. dal tuo album di foto) che deve essere usata come immagine di sfondo."; +$a->strings["Background Color"] = "Colore di sfondo"; +$a->strings["HEX value for the background color. Don't include the #"] = "Valore esadecimale del colore di sfondo. Non includere il #"; +$a->strings["font size"] = "dimensione del font"; +$a->strings["base font size for your interface"] = "dimensione del font di base per la tua interfaccia"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["Delete this item?"] = "Cancellare questo elemento?"; +$a->strings["show fewer"] = "mostra di meno"; +$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; +$a->strings["Update Error at %s"] = "Errore aggiornamento a %s"; +$a->strings["Create a New Account"] = "Crea un nuovo account"; +$a->strings["Register"] = "Registrati"; +$a->strings["Logout"] = "Esci"; +$a->strings["Login"] = "Accedi"; +$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Ricordati di me"; +$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; +$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; +$a->strings["terms of service"] = "condizioni del servizio"; +$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; +$a->strings["privacy policy"] = "politiche di privacy"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Connect"] = "Connetti"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; $a->strings["Change profile photo"] = "Cambia la foto del profilo"; $a->strings["Create New Profile"] = "Crea un nuovo profilo"; $a->strings["Profile Image"] = "Immagine del Profilo"; $a->strings["visible to everybody"] = "visibile a tutti"; $a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["Gender:"] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; $a->strings["Personal Notes"] = "Note personali"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; $a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; $a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; -$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; -$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; -$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; -$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; -$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; -$a->strings["Site"] = "Sito"; -$a->strings["Users"] = "Utenti"; -$a->strings["Plugins"] = "Plugin"; -$a->strings["Themes"] = "Temi"; -$a->strings["DB updates"] = "Aggiornamenti Database"; -$a->strings["Logs"] = "Log"; -$a->strings["Plugin Features"] = "Impostazioni Plugins"; -$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Normal Account"] = "Account normale"; -$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; -$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; -$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; -$a->strings["Blog Account"] = "Account Blog"; -$a->strings["Private Forum"] = "Forum Privato"; -$a->strings["Message queues"] = "Code messaggi"; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Sommario"; -$a->strings["Registered users"] = "Utenti registrati"; -$a->strings["Pending registrations"] = "Registrazioni in attesa"; -$a->strings["Version"] = "Versione"; -$a->strings["Active plugins"] = "Plugin attivi"; -$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; -$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; -$a->strings["Never"] = "Mai"; -$a->strings["Multi user instance"] = "Istanza multi utente"; -$a->strings["Closed"] = "Chiusa"; -$a->strings["Requires approval"] = "Richiede l'approvazione"; -$a->strings["Open"] = "Aperta"; -$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"; -$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["File upload"] = "Caricamento file"; -$a->strings["Policies"] = "Politiche"; -$a->strings["Advanced"] = "Avanzate"; -$a->strings["Performance"] = "Performance"; -$a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["System language"] = "Lingua di sistema"; -$a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; -$a->strings["Mobile system theme"] = "Tema mobile di sistema"; -$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili"; -$a->strings["SSL link policy"] = "Gestione link SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; -$a->strings["'Share' element"] = "Elemento 'Share'"; -$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi."; -$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; -$a->strings["Single user instance"] = "Instanza a singolo utente"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; -$a->strings["Maximum image size"] = "Massima dimensione immagini"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -$a->strings["Maximum image length"] = "Massima lunghezza immagine"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; -$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; -$a->strings["Register policy"] = "Politica di registrazione"; -$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."; -$a->strings["Register text"] = "Testo registrazione"; -$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini amici consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -$a->strings["Allowed email domains"] = "Domini email consentiti"; -$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"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -$a->strings["Block public"] = "Blocca pagine pubbliche"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; -$a->strings["Force publish"] = "Forza publicazione"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; -$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; -$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; -$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; -$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni"; -$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post"; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo."; -$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; -$a->strings["OpenID support"] = "Supporto OpenID"; -$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; -$a->strings["Fullname check"] = "Controllo nome completo"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; -$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; -$a->strings["Show Community Page"] = "Mostra pagina Comunità"; -$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."; -$a->strings["Enable OStatus support"] = "Abilita supporto 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."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."; -$a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."; -$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; -$a->strings["Verify SSL"] = "Verifica SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; -$a->strings["Proxy user"] = "Utente Proxy"; -$a->strings["Proxy URL"] = "URL Proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; -$a->strings["Delivery interval"] = "Intervallo di invio"; -$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."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di poll"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; -$a->strings["Maximum Load Average"] = "Massimo carico medio"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; -$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; -$a->strings["Path to item cache"] = "Percorso cache elementi"; -$a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."; -$a->strings["Path for lock file"] = "Percorso al file di lock"; -$a->strings["Temp path"] = "Percorso file temporanei"; -$a->strings["Base path to installation"] = "Percorso base all'installazione"; -$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; -$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema."; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; -$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata."; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Failed Updates"] = "Aggiornamenti falliti"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; -$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utente bloccato/sbloccato", - 1 => "%s utenti bloccati/sbloccati", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["select all"] = "seleziona tutti"; -$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -$a->strings["Request date"] = "Data richiesta"; -$a->strings["Name"] = "Nome"; -$a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Approve"] = "Approva"; -$a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Site admin"] = "Amministrazione sito"; -$a->strings["Account expired"] = "Account scaduto"; -$a->strings["Register date"] = "Data registrazione"; -$a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Last item"] = "Ultimo elemento"; -$a->strings["Account"] = "Account"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; -$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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"; -$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; -$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; -$a->strings["Disable"] = "Disabilita"; -$a->strings["Enable"] = "Abilita"; -$a->strings["Toggle"] = "Inverti"; -$a->strings["Author: "] = "Autore: "; -$a->strings["Maintainer: "] = "Manutentore: "; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Anteprima"; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; -$a->strings["Clear"] = "Pulisci"; -$a->strings["Enable Debugging"] = "Abilita Debugging"; -$a->strings["Log file"] = "File di Log"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; -$a->strings["Log level"] = "Livello di Log"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Close"] = "Chiudi"; -$a->strings["FTP Host"] = "Indirizzo FTP"; -$a->strings["FTP Path"] = "Percorso FTP"; -$a->strings["FTP User"] = "Utente FTP"; -$a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; $a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; $a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; $a->strings["Failed to send email message. Here is the message that failed."] = "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."; @@ -841,217 +198,19 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; $a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; $a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Yes"] = "Si"; +$a->strings["No"] = "No"; $a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; $a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Registration"] = "Registrazione"; $a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; $a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; $a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; -$a->strings["Source input: "] = "Sorgente:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; -$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): "] = "Sorgente (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; $a->strings["Import"] = "Importa"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["everybody"] = "tutti"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Display settings"] = "Impostazioni grafiche"; -$a->strings["Connector settings"] = "Impostazioni connettori"; -$a->strings["Plugin settings"] = "Impostazioni plugin"; -$a->strings["Connected apps"] = "Applicazioni collegate"; -$a->strings["Export personal data"] = "Esporta dati personali"; -$a->strings["Remove account"] = "Rimuovi account"; -$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; -$a->strings["Update"] = "Aggiorna"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; -$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; -$a->strings["Features updated"] = "Funzionalità aggiornate"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -$a->strings["Wrong password."] = "Password sbagliata."; -$a->strings["Password changed."] = "Password cambiata."; -$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; -$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; -$a->strings[" Name too short."] = " Nome troppo corto."; -$a->strings["Wrong Password"] = "Password Sbagliata"; -$a->strings[" Not valid email."] = " Email non valida."; -$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; -$a->strings["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["Add application"] = "Aggiungi applicazione"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Redirect"; -$a->strings["Icon url"] = "Url icona"; -$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -$a->strings["Connected Apps"] = "Applicazioni Collegate"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Client key starts with"] = "Chiave del client inizia con"; -$a->strings["No name"] = "Nessun nome"; -$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; -$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; -$a->strings["Plugin Settings"] = "Impostazioni plugin"; -$a->strings["Off"] = "Spento"; -$a->strings["On"] = "Acceso"; -$a->strings["Additional Features"] = "Funzionalità aggiuntive"; -$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["enabled"] = "abilitato"; -$a->strings["disabled"] = "disabilitato"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; -$a->strings["Connector Settings"] = "Impostazioni Connettore"; -$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; -$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; -$a->strings["IMAP server name:"] = "Nome server IMAP:"; -$a->strings["IMAP port:"] = "Porta IMAP:"; -$a->strings["Security:"] = "Sicurezza:"; -$a->strings["None"] = "Nessuna"; -$a->strings["Email login name:"] = "Nome utente email:"; -$a->strings["Email password:"] = "Password email:"; -$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; -$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; -$a->strings["Action after import:"] = "Azione post importazione:"; -$a->strings["Mark as seen"] = "Segna come letto"; -$a->strings["Move to folder"] = "Sposta nella cartella"; -$a->strings["Move to folder:"] = "Sposta nella cartella:"; -$a->strings["Display Settings"] = "Impostazioni Grafiche"; -$a->strings["Display Theme:"] = "Tema:"; -$a->strings["Mobile Theme:"] = "Tema mobile:"; -$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; -$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; -$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; -$a->strings["Normal Account Page"] = "Pagina Account Normale"; -$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; -$a->strings["Soapbox Page"] = "Pagina Sandbox"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; -$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; -$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; -$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; -$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; -$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; -$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; -$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; -$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; -$a->strings["or"] = "o"; -$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; -$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; -$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; -$a->strings["Advanced Expiration"] = "Scadenza avanzata"; -$a->strings["Expire posts:"] = "Fai scadere i post:"; -$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; -$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; -$a->strings["Expire photos:"] = "Fai scadere le foto:"; -$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; -$a->strings["Account Settings"] = "Impostazioni account"; -$a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; -$a->strings["Current Password:"] = "Password Attuale:"; -$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; -$a->strings["Password:"] = "Password:"; -$a->strings["Basic Settings"] = "Impostazioni base"; -$a->strings["Email Address:"] = "Indirizzo Email:"; -$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; -$a->strings["Default Post Location:"] = "Località predefinita:"; -$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; -$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; -$a->strings["Default Private Post"] = "Default Post Privato"; -$a->strings["Default Public Post"] = "Default Post Pubblico"; -$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; -$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; -$a->strings["Notification Settings"] = "Impostazioni notifiche"; -$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; -$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; -$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; -$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; -$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; -$a->strings["You receive an introduction"] = "Ricevi una presentazione"; -$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; -$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; -$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; -$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; -$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; -$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; -$a->strings["link"] = "collegamento"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["Profile not found."] = "Profilo non trovato."; $a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun articolo."; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; $a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; $a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; @@ -1060,6 +219,7 @@ $a->strings["Remote site reported: "] = "Il sito remoto riporta: "; $a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; $a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; $a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; $a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; $a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; @@ -1070,173 +230,14 @@ $a->strings["Unable to set your contact credentials on our system."] = "Impossib $a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; $a->strings["Connection accepted at %s"] = "Connession accettata su %s"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Gender: "] = "Genere:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["People Search"] = "Cerca persone"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["No videos selected"] = "Nessun video selezionato"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["Recent Videos"] = "Video Recenti"; -$a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifca l'evento"; -$a->strings["Create New Event"] = "Crea un nuovo evento"; -$a->strings["Previous"] = "Precendente"; -$a->strings["Next"] = "Successivo"; -$a->strings["hour:minute"] = "ora:minuti"; -$a->strings["Event details"] = "Dettagli dell'evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti."; -$a->strings["Event Starts:"] = "L'evento inizia:"; -$a->strings["Required"] = "Richiesto"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; -$a->strings["Event Finishes:"] = "L'evento finisce:"; -$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; -$a->strings["Description:"] = "Descrizione:"; -$a->strings["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Files"] = "File"; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Help:"] = "Guida:"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$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 una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["No recipient."] = "Nessun destinatario."; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Time Conversion"] = "Conversione Ora"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; -$a->strings["UTC time: %s"] = "Ora UTC: %s"; -$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; -$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; -$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; $a->strings["No valid account found."] = "Nessun account valido trovato."; $a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; $a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; $a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; $a->strings["Your new password is"] = "La tua nuova password è"; $a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; @@ -1247,34 +248,64 @@ $a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; $a->strings["Nickname or Email: "] = "Nome utente o email: "; $a->strings["Reset"] = "Reimposta"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["No recipient."] = "Nessun destinatario."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$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."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$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."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$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."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$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."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$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 tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; $a->strings["Search Results For:"] = "Cerca risultati per:"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; $a->strings["Commented Order"] = "Ordina per commento"; $a->strings["Sort by Comment Date"] = "Ordina per data commento"; $a->strings["Posted Order"] = "Ordina per invio"; @@ -1298,124 +329,6 @@ $a->strings["Group: "] = "Gruppo: "; $a->strings["Contact: "] = "Contatto:"; $a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; $a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["System"] = "Sistema"; -$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; -$a->strings["Notification type: "] = "Tipo di notifica: "; -$a->strings["Friend Suggestion"] = "Amico suggerito"; -$a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; -$a->strings["if applicable"] = "se applicabile"; -$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; -$a->strings["yes"] = "si"; -$a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Approva come: "; -$a->strings["Friend"] = "Amico"; -$a->strings["Sharer"] = "Condivisore"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; -$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["No introductions."] = "Nessuna presentazione."; -$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; -$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; -$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; -$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; -$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; -$a->strings["No more network notifications."] = "Nessuna nuova."; -$a->strings["Network Notifications"] = "Notifiche dalla rete"; -$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["No more personal notifications."] = "Nessuna nuova."; -$a->strings["Personal Notifications"] = "Notifiche personali"; -$a->strings["No more home notifications."] = "Nessuna nuova."; -$a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$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."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$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."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$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."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$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 tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; $a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; $a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; $a->strings["Could not create table."] = "Impossibile creare le tabelle."; @@ -1423,6 +336,7 @@ $a->strings["Your Friendica site database has been installed."] = "Il tuo Friend $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; $a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; $a->strings["System check"] = "Controllo sistema"; +$a->strings["Next"] = "Successivo"; $a->strings["Check again"] = "Controlla ancora"; $a->strings["Database connection"] = "Connessione al database"; $a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; @@ -1478,6 +392,333 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; $a->strings["

What next

"] = "

Cosa fare ora

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; +$a->strings["Site"] = "Sito"; +$a->strings["Users"] = "Utenti"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Themes"] = "Temi"; +$a->strings["DB updates"] = "Aggiornamenti Database"; +$a->strings["Logs"] = "Log"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Plugin Features"] = "Impostazioni Plugins"; +$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["Normal Account"] = "Account normale"; +$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; +$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; +$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; +$a->strings["Blog Account"] = "Account Blog"; +$a->strings["Private Forum"] = "Forum Privato"; +$a->strings["Message queues"] = "Code messaggi"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Summary"] = "Sommario"; +$a->strings["Registered users"] = "Utenti registrati"; +$a->strings["Pending registrations"] = "Registrazioni in attesa"; +$a->strings["Version"] = "Versione"; +$a->strings["Active plugins"] = "Plugin attivi"; +$a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; +$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; +$a->strings["Never"] = "Mai"; +$a->strings["At post arrival"] = "All'arrivo di un messaggio"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al dì"; +$a->strings["Daily"] = "Giornalmente"; +$a->strings["Multi user instance"] = "Istanza multi utente"; +$a->strings["Closed"] = "Chiusa"; +$a->strings["Requires approval"] = "Richiede l'approvazione"; +$a->strings["Open"] = "Aperta"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"; +$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"; +$a->strings["Save Settings"] = "Salva Impostazioni"; +$a->strings["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Advanced"] = "Avanzate"; +$a->strings["Performance"] = "Performance"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Additional Info"] = "Informazioni aggiuntive"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo."; +$a->strings["System language"] = "Lingua di sistema"; +$a->strings["System theme"] = "Tema di sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; +$a->strings["Mobile system theme"] = "Tema mobile di sistema"; +$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili"; +$a->strings["SSL link policy"] = "Gestione link SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; +$a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile"; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti"; +$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; +$a->strings["Single user instance"] = "Instanza a singolo utente"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; +$a->strings["Maximum image size"] = "Massima dimensione immagini"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +$a->strings["Maximum image length"] = "Massima lunghezza immagine"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; +$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; +$a->strings["Register policy"] = "Politica di registrazione"; +$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."; +$a->strings["Register text"] = "Testo registrazione"; +$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini amici consentiti"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$a->strings["Allowed email domains"] = "Domini email consentiti"; +$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"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$a->strings["Block public"] = "Blocca pagine pubbliche"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; +$a->strings["Force publish"] = "Forza publicazione"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; +$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; +$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; +$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; +$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; +$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni"; +$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo."; +$a->strings["Allow Users to set remote_self"] = "Permetti agli utenti di impostare 'io remoto'"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente."; +$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; +$a->strings["OpenID support"] = "Supporto OpenID"; +$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; +$a->strings["Fullname check"] = "Controllo nome completo"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; +$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; +$a->strings["Show Community Page"] = "Mostra pagina Comunità"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."; +$a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."; +$a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."; +$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; +$a->strings["Verify SSL"] = "Verifica SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; +$a->strings["Proxy user"] = "Utente Proxy"; +$a->strings["Proxy URL"] = "URL Proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; +$a->strings["Delivery interval"] = "Intervallo di invio"; +$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."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."; +$a->strings["Poll interval"] = "Intervallo di poll"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; +$a->strings["Maximum Load Average"] = "Massimo carico medio"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; +$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; +$a->strings["Suppress Language"] = "Disattiva lingua"; +$a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post."; +$a->strings["Path to item cache"] = "Percorso cache elementi"; +$a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."; +$a->strings["Path for lock file"] = "Percorso al file di lock"; +$a->strings["Temp path"] = "Percorso file temporanei"; +$a->strings["Base path to installation"] = "Percorso base all'installazione"; +$a->strings["New base url"] = "Nuovo url base"; +$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; +$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema."; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; +$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata."; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Failed Updates"] = "Aggiornamenti falliti"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; +$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; +$a->strings["Registration successful. Email send to user"] = "Registrazione completata. Email inviata all'utente"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utente bloccato/sbloccato", + 1 => "%s utenti bloccati/sbloccati", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utente cancellato", + 1 => "%s utenti cancellati", +); +$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; +$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; +$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; +$a->strings["Add User"] = "Aggiungi utente"; +$a->strings["select all"] = "seleziona tutti"; +$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; +$a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; +$a->strings["Request date"] = "Data richiesta"; +$a->strings["Name"] = "Nome"; +$a->strings["Email"] = "Email"; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Approve"] = "Approva"; +$a->strings["Deny"] = "Nega"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Site admin"] = "Amministrazione sito"; +$a->strings["Account expired"] = "Account scaduto"; +$a->strings["New User"] = "Nuovo Utente"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Last item"] = "Ultimo elemento"; +$a->strings["Deleted since"] = "Rimosso da"; +$a->strings["Account"] = "Account"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; +$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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"; +$a->strings["Name of the new user."] = "Nome del nuovo utente."; +$a->strings["Nickname"] = "Nome utente"; +$a->strings["Nickname of the new user."] = "Nome utente del nuovo utente."; +$a->strings["Email address of the new user."] = "Indirizzo Email del nuovo utente."; +$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; +$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; +$a->strings["Disable"] = "Disabilita"; +$a->strings["Enable"] = "Abilita"; +$a->strings["Toggle"] = "Inverti"; +$a->strings["Author: "] = "Autore: "; +$a->strings["Maintainer: "] = "Manutentore: "; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Anteprima"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; +$a->strings["Clear"] = "Pulisci"; +$a->strings["Enable Debugging"] = "Abilita Debugging"; +$a->strings["Log file"] = "File di Log"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; +$a->strings["Log level"] = "Livello di Log"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Close"] = "Chiudi"; +$a->strings["FTP Host"] = "Indirizzo FTP"; +$a->strings["FTP Path"] = "Percorso FTP"; +$a->strings["FTP User"] = "Utente FTP"; +$a->strings["FTP Password"] = "Pasword FTP"; +$a->strings["Search"] = "Cerca"; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["link"] = "collegamento"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Find"] = "Trova"; +$a->strings["Age: "] = "Età : "; +$a->strings["Gender: "] = "Genere:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Save"] = "Salva"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Help"] = "Guida"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", +); $a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; $a->strings["Contact updated."] = "Contatto aggiornato."; @@ -1497,9 +738,14 @@ $a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)" $a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; $a->strings["Suggest friends"] = "Suggerisci amici"; $a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); $a->strings["View all contacts"] = "Vedi tutti i contatti"; $a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; $a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore"] = "Ignora"; $a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; $a->strings["Unarchive"] = "Dearchivia"; $a->strings["Archive"] = "Archivia"; @@ -1512,6 +758,7 @@ $a->strings["Profile Visibility"] = "Visibilità del profilo"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; $a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; $a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; $a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; $a->strings["Ignore contact"] = "Ignora il contatto"; $a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; @@ -1522,9 +769,14 @@ $a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; $a->strings["Currently blocked"] = "Bloccato"; $a->strings["Currently ignored"] = "Ignorato"; $a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; +$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; $a->strings["Suggestions"] = "Suggerimenti"; $a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; $a->strings["Show all contacts"] = "Mostra tutti i contatti"; $a->strings["Unblocked"] = "Sbloccato"; $a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; @@ -1539,10 +791,363 @@ $a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; $a->strings["Mutual Friendship"] = "Amicizia reciproca"; $a->strings["is a fan of yours"] = "è un tuo fan"; $a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Edit contact"] = "Modifca contatto"; $a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["everybody"] = "tutti"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Display"] = "Visualizzazione"; +$a->strings["Social Networks"] = "Social Networks"; +$a->strings["Delegations"] = "Delegazioni"; +$a->strings["Connected apps"] = "Applicazioni collegate"; +$a->strings["Export personal data"] = "Esporta dati personali"; +$a->strings["Remove account"] = "Rimuovi account"; +$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; +$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; +$a->strings["Features updated"] = "Funzionalità aggiornate"; +$a->strings["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +$a->strings["Wrong password."] = "Password sbagliata."; +$a->strings["Password changed."] = "Password cambiata."; +$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; +$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; +$a->strings[" Name too short."] = " Nome troppo corto."; +$a->strings["Wrong Password"] = "Password Sbagliata"; +$a->strings[" Not valid email."] = " Email non valida."; +$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; +$a->strings["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Add application"] = "Aggiungi applicazione"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Redirect"; +$a->strings["Icon url"] = "Url icona"; +$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; +$a->strings["Connected Apps"] = "Applicazioni Collegate"; +$a->strings["Client key starts with"] = "Chiave del client inizia con"; +$a->strings["No name"] = "Nessun nome"; +$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; +$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; +$a->strings["Plugin Settings"] = "Impostazioni plugin"; +$a->strings["Off"] = "Spento"; +$a->strings["On"] = "Acceso"; +$a->strings["Additional Features"] = "Funzionalità aggiuntive"; +$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; +$a->strings["enabled"] = "abilitato"; +$a->strings["disabled"] = "disabilitato"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; +$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; +$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; +$a->strings["IMAP server name:"] = "Nome server IMAP:"; +$a->strings["IMAP port:"] = "Porta IMAP:"; +$a->strings["Security:"] = "Sicurezza:"; +$a->strings["None"] = "Nessuna"; +$a->strings["Email login name:"] = "Nome utente email:"; +$a->strings["Email password:"] = "Password email:"; +$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; +$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; +$a->strings["Action after import:"] = "Azione post importazione:"; +$a->strings["Mark as seen"] = "Segna come letto"; +$a->strings["Move to folder"] = "Sposta nella cartella"; +$a->strings["Move to folder:"] = "Sposta nella cartella:"; +$a->strings["Display Settings"] = "Impostazioni Grafiche"; +$a->strings["Display Theme:"] = "Tema:"; +$a->strings["Mobile Theme:"] = "Tema mobile:"; +$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; +$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; +$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; +$a->strings["Don't show notices"] = "Non mostrare gli avvisi"; +$a->strings["Infinite scroll"] = "Scroll infinito"; +$a->strings["User Types"] = "Tipi di Utenti"; +$a->strings["Community Types"] = "Tipi di Comunità"; +$a->strings["Normal Account Page"] = "Pagina Account Normale"; +$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; +$a->strings["Soapbox Page"] = "Pagina Sandbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; +$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; +$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; +$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; +$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; +$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; +$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; +$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; +$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; +$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["or"] = "o"; +$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; +$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; +$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; +$a->strings["Advanced Expiration"] = "Scadenza avanzata"; +$a->strings["Expire posts:"] = "Fai scadere i post:"; +$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; +$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; +$a->strings["Expire photos:"] = "Fai scadere le foto:"; +$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; +$a->strings["Account Settings"] = "Impostazioni account"; +$a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; +$a->strings["Current Password:"] = "Password Attuale:"; +$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; +$a->strings["Password:"] = "Password:"; +$a->strings["Basic Settings"] = "Impostazioni base"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["Email Address:"] = "Indirizzo Email:"; +$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; +$a->strings["Default Post Location:"] = "Località predefinita:"; +$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; +$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$a->strings["Default Private Post"] = "Default Post Privato"; +$a->strings["Default Public Post"] = "Default Post Pubblico"; +$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; +$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; +$a->strings["Notification Settings"] = "Impostazioni notifiche"; +$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; +$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; +$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; +$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; +$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; +$a->strings["You receive an introduction"] = "Ricevi una presentazione"; +$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; +$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; +$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; +$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; +$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; +$a->strings["Relocate"] = "Trasloca"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; +$a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; +$a->strings["Profile deleted."] = "Profilo elminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato civile"; +$a->strings["Romantic Partner"] = "Partner romantico"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Work/Employment"] = "Lavoro/Impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento Politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenza sessuale"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Location"] = "Posizione"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings[" and "] = "e "; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; +$a->strings["View this profile"] = "Visualizza questo profilo"; +$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +$a->strings["Clone this profile"] = "Clona questo profilo"; +$a->strings["Delete this profile"] = "Elimina questo profilo"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; +$a->strings["Your Gender:"] = "Il tuo sesso:"; +$a->strings["Birthday (%s):"] = "Compleanno (%s)"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$a->strings["Region/State:"] = "Regione/Stato:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Dal [data]:"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Homepage URL:"] = "Homepage:"; +$a->strings["Hometown:"] = "Paese natale:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; +$a->strings["Private Keywords:"] = "Parole chiave private:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; +$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["Musical interests"] = "Interessi musicali"; +$a->strings["Books, literature"] = "Libri, letteratura"; +$a->strings["Television"] = "Televisione"; +$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; +$a->strings["Source input: "] = "Sorgente:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; +$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): "] = "Sorgente (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", +); +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; $a->strings["Post successful."] = "Inviato!"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Time Conversion"] = "Conversione Ora"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; +$a->strings["UTC time: %s"] = "Ora UTC: %s"; +$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; +$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; +$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["No contacts."] = "Nessun contatto."; +$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["People Search"] = "Cerca persone"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Share"] = "Condividi"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Wall Photos"] = "Foto della bacheca"; $a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; $a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; @@ -1556,96 +1161,552 @@ $a->strings["Crop Image"] = "Ritaglia immagine"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; $a->strings["Done Editing"] = "Finito"; $a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifca l'evento"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Create New Event"] = "Crea un nuovo evento"; +$a->strings["Previous"] = "Precendente"; +$a->strings["hour:minute"] = "ora:minuti"; +$a->strings["Event details"] = "Dettagli dell'evento"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti."; +$a->strings["Event Starts:"] = "L'evento inizia:"; +$a->strings["Required"] = "Richiesto"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; +$a->strings["Event Finishes:"] = "L'evento finisce:"; +$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; +$a->strings["Description:"] = "Descrizione:"; +$a->strings["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Condividi questo evento"; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun articolo."; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["Files"] = "File"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; +$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; +$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; +$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; +$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Rete"; +$a->strings["Introductions"] = "Presentazioni"; +$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["Friend Suggestion"] = "Amico suggerito"; +$a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; +$a->strings["if applicable"] = "se applicabile"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; +$a->strings["yes"] = "si"; +$a->strings["no"] = "no"; +$a->strings["Approve as: "] = "Approva come: "; +$a->strings["Friend"] = "Amico"; +$a->strings["Sharer"] = "Condivisore"; +$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; +$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; +$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$a->strings["No introductions."] = "Nessuna presentazione."; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; +$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; +$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; +$a->strings["No more network notifications."] = "Nessuna nuova."; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["No more personal notifications."] = "Nessuna nuova."; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["No more home notifications."] = "Nessuna nuova."; +$a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", ); -$a->strings["like"] = "mi piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["via"] = "via"; -$a->strings["Theme settings"] = "Impostazioni tema"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set twitter search term"] = "Imposta il termine di ricerca per twitter"; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = ""; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last tweets"] = "Ultimi tweets"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Last Tweets"] = "Ultimi Tweets"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["show fewer"] = "mostra di meno"; -$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; -$a->strings["Update Error at %s"] = "Errore aggiornamento a %s"; -$a->strings["Create a New Account"] = "Crea un nuovo account"; -$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Remember me"] = "Ricordati di me"; -$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; -$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; -$a->strings["terms of service"] = "condizioni del servizio"; -$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; -$a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$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 una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["User not found."] = "Utente non trovato."; +$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; +$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["Friends"] = "Amici"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["poked"] = "toccato"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatti"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["permissions"] = "permessi"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["newer"] = "nuovi"; +$a->strings["older"] = "vecchi"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "primo"; +$a->strings["last"] = "ultimo"; +$a->strings["next"] = "succ"; +$a->strings["No contacts"] = "Nessun contatto"; +$a->strings["%d Contact"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["poke"] = "stuzzica"; +$a->strings["ping"] = "invia un ping"; +$a->strings["pinged"] = "inviato un ping"; +$a->strings["prod"] = "pungola"; +$a->strings["prodded"] = "pungolato"; +$a->strings["slap"] = "schiaffeggia"; +$a->strings["slapped"] = "schiaffeggiato"; +$a->strings["finger"] = "tocca"; +$a->strings["fingered"] = "toccato"; +$a->strings["rebuff"] = "respingi"; +$a->strings["rebuffed"] = "respinto"; +$a->strings["happy"] = "felice"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "rilassato"; +$a->strings["tired"] = "stanco"; +$a->strings["perky"] = "vivace"; +$a->strings["angry"] = "arrabbiato"; +$a->strings["stupified"] = "stupefatto"; +$a->strings["puzzled"] = "confuso"; +$a->strings["interested"] = "interessato"; +$a->strings["bitter"] = "risentito"; +$a->strings["cheerful"] = "giocoso"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "annoiato"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritabile"; +$a->strings["disturbed"] = "disturbato"; +$a->strings["frustrated"] = "frustato"; +$a->strings["motivated"] = "motivato"; +$a->strings["relaxed"] = "rilassato"; +$a->strings["surprised"] = "sorpreso"; +$a->strings["Monday"] = "Lunedì"; +$a->strings["Tuesday"] = "Martedì"; +$a->strings["Wednesday"] = "Mercoledì"; +$a->strings["Thursday"] = "Giovedì"; +$a->strings["Friday"] = "Venerdì"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Sunday"] = "Domenica"; +$a->strings["January"] = "Gennaio"; +$a->strings["February"] = "Febbraio"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Aprile"; +$a->strings["May"] = "Maggio"; +$a->strings["June"] = "Giugno"; +$a->strings["July"] = "Luglio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Settembre"; +$a->strings["October"] = "Ottobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Dicembre"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; +$a->strings["activity"] = "attività"; +$a->strings["post"] = "messaggio"; +$a->strings["Item filed"] = "Messaggio salvato"; +$a->strings["Friendica Notification"] = "Notifica Friendica"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +$a->strings[" on Last.fm"] = "su Last.fm"; +$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 gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; +$a->strings["Network Reset"] = "Reset pagina Rete"; +$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings[""] = ""; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["year"] = "anno"; +$a->strings["month"] = "mese"; +$a->strings["day"] = "giorno"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["years"] = "anni"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["General Features"] = "Funzionalità generali"; +$a->strings["Multiple Profiles"] = "Profili multipli"; +$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; +$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; +$a->strings["Richtext Editor"] = "Editor visuale"; +$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; +$a->strings["Post Preview"] = "Anteprima dei post"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; +$a->strings["Auto-mention Forums"] = "Auto-cita i Forum"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."; +$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; +$a->strings["Search by Date"] = "Cerca per data"; +$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; +$a->strings["Group Filter"] = "Filtra gruppi"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; +$a->strings["Network Filter"] = "Filtro reti"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; +$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; +$a->strings["Network Tabs"] = "Schede pagina Rete"; +$a->strings["Network Personal Tab"] = "Scheda Personali"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; +$a->strings["Network New Tab"] = "Scheda Nuovi"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; +$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; +$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti"; +$a->strings["Multiple Deletion"] = "Eliminazione multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; +$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; +$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; +$a->strings["Tagging"] = "Aggiunta tag"; +$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; +$a->strings["Post Categories"] = "Cateorie post"; +$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; +$a->strings["Dislike Posts"] = "Non mi piace"; +$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; +$a->strings["Star Posts"] = "Post preferiti"; +$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da "; +$a->strings["You have a new follower at "] = "Una nuova persona ti segue su "; +$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Embedded content"] = "Contenuto incorporato"; +$a->strings["Embedding disabled"] = "Embed disabilitato"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Nessuna preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Solitario"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "è cotto/a"; +$a->strings["Infatuated"] = "infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici con benefici"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato"; +$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Common law"] = "diritto comune"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non guarda"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["It's complicated"] = "E' complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; diff --git a/view/it/wall_received_eml.tpl b/view/it/wall_received_eml.tpl deleted file mode 100644 index ba9e25901e..0000000000 --- a/view/it/wall_received_eml.tpl +++ /dev/null @@ -1,18 +0,0 @@ - -Caro/a $username, - - '$from' ha scritto qualcosa sulla bachecha del tuo profilo. - ------ -$body ------ - -Accedi a $siteurl per vedere o cancellare l'elemento: - -$display - -Grazie, - L'amministratore di $sitename - - - diff --git a/view/it/wall_received_html_body_eml.tpl b/view/it/wall_received_html_body_eml.tpl deleted file mode 100644 index 62a7f5a62d..0000000000 --- a/view/it/wall_received_html_body_eml.tpl +++ /dev/null @@ -1,24 +0,0 @@ - - - - Messaggio da Friendica - - - - - - - - - - - - - - - - - -
Friendica
$from ha scritto sulla tua bacheca.
$from
$body
Vai su $siteurl per vedere o cancellare il post.
Grazie,
L'amministratore di $sitename
- - \ No newline at end of file diff --git a/view/it/wall_received_text_body_eml.tpl b/view/it/wall_received_text_body_eml.tpl deleted file mode 100644 index 327557ea1e..0000000000 --- a/view/it/wall_received_text_body_eml.tpl +++ /dev/null @@ -1,18 +0,0 @@ - -Caro $username, - - '$from' ha scritto sulla tua bacheca. - ------ -$body ------ - -Vai su $siteurl per vedere o cancellare il post: - -$display - -Grazie, - L'amministratore di $sitename - - -